summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--package.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json
index cb57499..6d13b34 100644
--- a/package.json
+++ b/package.json
@@ -2,11 +2,12 @@
"name": "simplewebauthn-monorepo",
"private": true,
"scripts": {
- "bootstrap": "npm run build:types && npm run build:browser && npm run build:server",
+ "bootstrap": "npm run build:types && npm run build:testing && npm run build:browser && npm run build:server",
"lint": "prettier --write packages/ example/ && eslint --fix packages/ example/",
"docs": "npm run bootstrap && typedoc --tsconfig tsconfigdoc.json",
"test": "lerna run test",
"build:types": "lerna bootstrap --scope=@simplewebauthn/typescript-types",
+ "build:testing": "lerna bootstrap --scope=@simplewebauthn/testing",
"build:browser": "lerna bootstrap --scope=@simplewebauthn/browser",
"build:server": "lerna bootstrap --scope=@simplewebauthn/server",
"dev:server": "lerna exec npm run test:watch --scope=@simplewebauthn/server",