Skip to content

Commit

Permalink
Merge pull request #162 from KleeGroup/npm-scripts
Browse files Browse the repository at this point in the history
[npm-scripts] Update build, watch, and serve to use node instead of sh.
  • Loading branch information
Bernardstanislas committed Jul 31, 2015
2 parents 514d65c + c943fe6 commit f3ef5e6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
"scripts": {
"prepublish": "gulp build",
"test": "jest",
"build": "sh ./build.sh",
"serve": "sh ./build.sh && node static-server.js",
"build": "node ./node_modules/gulp/bin/gulp.js build",
"watch": "node ./node_modules/gulp/bin/gulp.js watch",
"prepublish": "node ./node_modules/gulp/bin/gulp.js build",
"serve": "node ./node_modules/gulp/bin/gulp.js build && node static-server.js",
"ci-lint": "node ./node_modules/eslint/bin/eslint.js index.js application component definition dispatcher exception helper network router reference search site-description store util user message -f checkstyle > checkstyle-result.xml"
},
"repository": {
Expand Down

0 comments on commit f3ef5e6

Please sign in to comment.