Skip to content

Commit

Permalink
fix(package): fix doc build
Browse files Browse the repository at this point in the history
  • Loading branch information
jdanyow committed Dec 21, 2016
1 parent d749cf5 commit 9e79087
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -23,7 +23,7 @@
"lint": "cross-env tslint --project tsconfig.json",

"pretest": "cross-env npm run lint",
"test": "cross-env tsc && karma start --single-run",
"test": "cross-env rimraf dist && tsc && karma start --single-run",
"test-watch": "concurrently \"./node_modules/.bin/tsc --watch\" \"./node_modules/.bin/karma start\"",

"prebuild:amd": "cross-env rimraf dist/amd",
Expand All @@ -50,8 +50,8 @@
"build": "concurrently \"npm run build:amd\" \"npm run build:commonjs\" \"npm run build:es2015\" \"npm run build:native-modules\" \"npm run build:system\"",
"postbuild": "npm run build:doc",

"prebuild:doc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.build.json --outFile dist/doc-temp/index.js && node doc/shape-defs",
"build:doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-ux-docs --ignoreCompilerErrors --tsconfig doc/tsconfig.json dist/doc-temp/",
"prebuild:doc": "cross-env rimraf doc/api.json && rimraf dist/doc-temp && tsc --project tsconfig.build.json --outFile dist/doc-temp/aurelia-validation.js && node doc/shape-defs",
"build:doc": "cross-env typedoc --json doc/api.json --excludeExternals --includeDeclarations --mode modules --target ES6 --name aurelia-validation-docs --ignoreCompilerErrors --tsconfig doc/tsconfig.json dist/doc-temp/",
"postbuild:doc": "cross-env node doc/shape-doc && rimraf dist/doc-temp"
},
"jspm": {
Expand Down

0 comments on commit 9e79087

Please sign in to comment.