generate docs after changing version with npm

This commit is contained in:
Juanra Dikal 2021-03-24 17:51:39 +01:00
parent 49ea69a615
commit 806cc27a6f
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@
"docs": "node build/build.docs.js",
"lint": "ts-standard --fix",
"mocha": "node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js ",
"preversion": "npm run build",
"preversion": "run-s lint build:js test:browser coverage",
"postversion": "npm run docs",
"test": "run-s test:browser test:node",
"test:browser": "node build/testing/browser/index.js",
"test:node": "npm run mocha -- '{src/**/*.spec.ts,test/**/*.ts}'",