Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Remove npm run from scripts
Browse files Browse the repository at this point in the history
The `npm run` prefix isn't needed, at least based on my local testing.
  • Loading branch information
trotzig committed Jan 9, 2017
1 parent 96a0245 commit 019abe8
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
Expand Up @@ -7,13 +7,13 @@
},
"scripts": {
"babel": "babel src/server/ -d lib/server/ --ignore __tests__",
"build": "npm run clean && npm run babel && npm run webpack",
"build": "clean && babel && webpack",
"clean": "rimraf lib public/*.worker.js public/*.bundle.js*",
"jest": "jest",
"lint": "eslint --ext .js,.jsx .",
"prepublish": "npm run lint && npm run build",
"pretest": "npm run lint",
"test": "npm run jest",
"prepublish": "lint && build",
"pretest": "lint",
"test": "jest",
"webpack": "webpack --optimize-minimize",
"webpack-dev": "webpack --devtool eval-source-map --progress --watch"
},
Expand Down

0 comments on commit 019abe8

Please sign in to comment.