summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-12-10 07:50:05 -0800
committerMatthew Miller <matthew@millerti.me>2020-12-10 07:50:05 -0800
commit4e438d3437ce2d15c903d6ea1a404f1fd652fc8e (patch)
treed991b4d59e65a6eee15837ffef93662e55c7901a
parent48c31f68da7dcc89d7ca6c339392f70607dacbd1 (diff)
Update build process to include testing
-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",