summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-07-10 11:06:24 -0700
committerMatthew Miller <matthew@millerti.me>2020-07-10 11:06:24 -0700
commitdb23e6fa0e5c55ebce1c6ca131fb44bedb2c0936 (patch)
tree631444d2e096293d26b7d7d5509a8b19c96fdf6c
parented4dbe5cc3734cd391db0bd3702ff4245defce8b (diff)
Tweak package.json scripts for easier debugging
-rw-r--r--package.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/package.json b/package.json
index 720661e..699491c 100644
--- a/package.json
+++ b/package.json
@@ -2,10 +2,13 @@
"name": "simplewebauthn-monorepo",
"private": true,
"scripts": {
- "bootstrap": "lerna bootstrap --scope=@simplewebauthn/typescript-types && lerna bootstrap --scope=@simplewebauthn/browser --scope=@simplewebauthn/server",
+ "bootstrap": "npm run build:types && npm run build:browser && npm run build:server",
"lint": "prettier --write packages/ example/ && eslint --fix packages/ example/",
"docs": "npm run bootstrap && typedoc --tsconfig tsconfig.json",
- "test": "lerna run test"
+ "test": "lerna run test",
+ "build:types": "lerna bootstrap --scope=@simplewebauthn/typescript-types",
+ "build:browser": "lerna bootstrap --scope=@simplewebauthn/browser",
+ "build:server": "lerna bootstrap --scope=@simplewebauthn/server"
},
"devDependencies": {
"@types/cbor": "^5.0.0",