Skip to content
This repository has been archived by the owner on Feb 2, 2019. It is now read-only.

Commit

Permalink
feat(develop): make npm scripts Windows friendly
Browse files Browse the repository at this point in the history
Change npm path to hard-coded relative path, since Windows does not understand the `$()` syntax.
  • Loading branch information
ollwenjones authored and justindujardin committed Jun 11, 2016
1 parent 772fab4 commit c5d63cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"license": "MIT",
"readmeFilename": "README.md",
"scripts": {
"start": "$(npm bin)/grunt serve",
"test": "$(npm bin)/grunt karma",
"postinstall": "$(npm bin)/typings install"
"start": "./node_modules/.bin/grunt serve",
"test": "./node_modules/.bin/grunt karma",
"postinstall": "./node_modules/.bin/typings install"
},
"dependencies": {
"@angular/common": "2.0.0-rc.1",
Expand Down

0 comments on commit c5d63cd

Please sign in to comment.