-
Notifications
You must be signed in to change notification settings - Fork 2k
Enhancement: Deprecating Grunt in favor of Gulp and NPM commands #1390
Enhancement: Deprecating Grunt in favor of Gulp and NPM commands #1390
Conversation
…ulp being the mainstream vs the deprecation of grunt. Also added gulp as a task runner for freely executing tasks through Lifecycle scripts included in meanjs: start gulp test gulp test postinstall bower install --allow-root && bower prune --allow-root available via `npm run-script`: update npm update && npm prune && bower install --allow-root && bower prune --allow-root start:prod gulp prod start:debug gulp debug gulp gulp lint gulp lint test:server gulp test:server test:client gulp test:client test:e2e gulp test:e2e test:watch gulp test:server:watch test:watch:onlyChanged gulp test:server:watch --onlyChanged generate-ssl-certs scripts/generate-ssl-certs.sh commands
@@ -91,12 +95,13 @@ That's it! Your application should be running. To proceed with your development, | |||
If you encounter any problems, try the Troubleshooting section. | |||
|
|||
* explore `config/env/development.js` for development environment configuration options | |||
* it is possible to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line seems out of place?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I just forgot to actually end that text... I wanted to refer to @mleanos 's comment about doing 'npm run gulp ' - checkout the updated PR.
@lirantal Overall looks good, just one line that seems out of place to me. |
``` | ||
It will try to seed the users 'user' and 'admin'. If one of the user already exists, it will display an error message on the console. Just grab the passwords from the console. | ||
|
||
In Production: | ||
```bash | ||
MONGO_SEED=true grunt prod | ||
MONGO_SEED=true npm start:prod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may be out of the scope of this PR, but I feel that the MONGO_SEED
option here is a bit confusing. I think we could just move the seeding option to it's own section.
LGTM (other than what Cody pointed out). Also, my comment isn't that much of a priority, and can be addressed in a separate PR if need be. |
LGTM |
1 similar comment
LGTM |
Thanks 👍 |
feat(gulp): updating the README.md instructions with the changes to gulp being the mainstream vs the deprecation of grunt. Also added gulp as a task runner for freely executing tasks through running
npm
commandsFollow-up for #1296