API holds current version
This commit is contained in:
parent
17b399f19c
commit
9c4cd84063
|
@ -25,7 +25,7 @@ async function typedoc () {
|
||||||
// typedoc options here
|
// typedoc options here
|
||||||
entryPoints: ['src/ts/index.ts'],
|
entryPoints: ['src/ts/index.ts'],
|
||||||
plugin: ['typedoc-plugin-markdown'],
|
plugin: ['typedoc-plugin-markdown'],
|
||||||
includeVersion: false,
|
includeVersion: true,
|
||||||
entryDocument: 'API.md',
|
entryDocument: 'API.md',
|
||||||
readme: 'none',
|
readme: 'none',
|
||||||
hideBreadcrumbs: true
|
hideBreadcrumbs: true
|
||||||
|
|
|
@ -54,9 +54,11 @@
|
||||||
"clean": "rimraf .nyc_output .mocha-ts coverage dist docs",
|
"clean": "rimraf .nyc_output .mocha-ts coverage dist docs",
|
||||||
"coverage": "nyc --check-coverage --exclude build --exclude '{src/ts/**/*.spec.ts,test/**/*.ts}' --reporter=text --reporter=lcov node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
"coverage": "nyc --check-coverage --exclude build --exclude '{src/ts/**/*.spec.ts,test/**/*.ts}' --reporter=text --reporter=lcov node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
||||||
"docs": "node build/build.docs.js",
|
"docs": "node build/build.docs.js",
|
||||||
|
"git:add": "git add -A",
|
||||||
"lint": "ts-standard --fix",
|
"lint": "ts-standard --fix",
|
||||||
"mocha": "node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js ",
|
"mocha": "node ./build/bin/mocha-ts.js --require build/testing/mocha/mocha-init.js ",
|
||||||
"preversion": "npm run build",
|
"version": "run-s build git:add",
|
||||||
|
"postversion": "git push --follow-tags",
|
||||||
"test": "run-s test:browser test:node",
|
"test": "run-s test:browser test:node",
|
||||||
"test:browser": "node build/testing/browser/index.js",
|
"test:browser": "node build/testing/browser/index.js",
|
||||||
"test:node": "npm run mocha -- '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
"test:node": "npm run mocha -- '{src/ts/**/*.spec.ts,test/**/*.ts}'",
|
||||||
|
|
Loading…
Reference in New Issue