Skip to content

Commit

Permalink
Fix folder name (#444)
Browse files Browse the repository at this point in the history
* fix: fixed case sensitive bug

* fix: Fixed production build task
  • Loading branch information
kyasbal authored Feb 12, 2017
1 parent 4d15836 commit 0e02e42
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@
"scripts": {
"test": "tsc --outDir ./lib && babel ./lib --presets es2015,stage-2 --plugins transform-runtime --out-dir ./lib-es5 && babel ./test --presets es2015,stage-2 --plugins transform-runtime --out-dir ./test-es5 && ava ./test-es5/**/*Test.js --verbose --serial",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"prepublish": "npm run build -- --env.prod&& npm test",
"prepublish": "npm run build-production && npm test",
"start": "webpack --progress --watch",
"build": "npm run generate-expose && webpack --progress && npm run generate-reference",
"build-production":"npm run generate-expose && webpack --progress --env.prod && npm run generate-reference",
"generate-expose": "cauldron generate-exposure --src ./src --dest ./src/index.ts --ts --main ./src/main.ts",
"generate-reference": "cauldron generate-reference --src ./src --dest ./src/index.ts --ts --main ./src/main.ts --dts ./ref",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
Expand Down

0 comments on commit 0e02e42

Please sign in to comment.