Skip to content

Commit

Permalink
updated scripts
Browse files Browse the repository at this point in the history
fixing last release
  • Loading branch information
piotrwitek committed Mar 20, 2017
1 parent 9f19b00 commit 4583426
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jspm-hmr",
"version": "1.0.0-rc6",
"version": "1.0.0-rc7",
"description": "Dev-Server with Hot-Reload for JSPM & SystemJS",
"author": "Piotr Witek <[email protected]> (http://piotrwitek.github.io)",
"repository": "https://github.com/piotrwitek/jspm-hmr",
Expand All @@ -20,11 +20,11 @@
"precommit": "yarn run lint",
"prepush": "yarn run check & yarn test",
"prepublishOnly": "yarn run reinstall && yarn run check && yarn run test && yarn run build",
"clean": "shx rm -rf node_modules/",
"clean": "rm -rf node_modules/ es5/ es6/",
"reinstall": "yarn run clean && yarn install",
"build:es5": "shx rm -rf es5 && tsc -p src --outDir es5",
"build:es6": "shx rm -rf es6 && tsc -p src --outDir es6 -t 'ES2015'",
"build": "yarn run build:es5 & yarn run build:es6",
"build:es5": "rm -rf es5 && tsc -p src --outDir es5",
"build:es6": "rm -rf es6 && tsc -p src --outDir es6 -t 'ES2015'",
"check": "yarn run lint & yarn run tsc",
"lint": "tslint --project src/tsconfig.json",
"tsc": "tsc -p src --noEmit",
Expand Down

0 comments on commit 4583426

Please sign in to comment.