Skip to content

Commit

Permalink
Simplified package scripts (./node_modules/.bin is on the execution p…
Browse files Browse the repository at this point in the history
…ath anyway)
  • Loading branch information
spoenemann committed Jul 6, 2017
1 parent a162bfd commit 3ea5f9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"webpack": "^2.6.1"
},
"scripts": {
"compile": "./node_modules/.bin/tsc",
"clean": "./node_modules/.bin/rimraf lib app/bootstrap app/sprotty app/vs app/bundle.*",
"build": "npm run compile && ./node_modules/.bin/webpack",
"watch": "./node_modules/.bin/tsc-watch --onSuccess ./node_modules/.bin/webpack"
"compile": "tsc",
"clean": "rimraf lib app/bootstrap app/sprotty app/vs app/bundle.*",
"build": "npm run compile && webpack",
"watch": "tsc-watch --onSuccess webpack"
}
}

0 comments on commit 3ea5f9a

Please # to comment.