Skip to content

Commit

Permalink
Remove bower from the npm install command
Browse files Browse the repository at this point in the history
  • Loading branch information
parasyte committed Oct 9, 2014
1 parent 4cb9a84 commit 032cc00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"gl-buffer": "~2.0.9"
},
"scripts": {
"install": "(bower install || true) && grunt",
"install": "grunt",
"release": "grunt release",
"test": "grunt test"
}
Expand Down

3 comments on commit 032cc00

@obiot
Copy link
Member

@obiot obiot commented on 032cc00 Oct 9, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why ? (personally I have no opinion about it)

@parasyte
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bower will be taken care of by #508. Also, it seems like a really bad idea to call bower install (a package manager) from npm install (a different package manager).

@ellisonleao
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i agree with that.

Please sign in to comment.