Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use "&&" instead of ";" between commands to run one after another in … #70

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tlinqu
Copy link

@tlinqu tlinqu commented Oct 12, 2015

…scripts section of package.json

@johnpapa
I am following your Pluralsight course - AngularJS Patterns : Clean code. And tried to run npm install for cc-bmean on my Windows 7 pc and couldn't get it running. I looked at the package.json documentation, and made the changes.
Thank you as always! Great work for the community!

@dehli
Copy link

dehli commented Apr 1, 2016

I believe this is a Windows vs Unix thing... what should work on both platforms is something like:

"install": "bower install",
"postinstall": "gulp clean",
"start": "gulp clean",
"poststart": "gulp serve-dev",

or better (imo)

"install": "bower install",
"postinstall": "gulp clean",
"prestart": "npm install",
"start": "gulp serve-dev",

Haven't tested these though, let me know if they work for you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants