You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please, provide the following version numbers that your issue occurs with:
CLI: 5.3.3
Please, tell us how to recreate the issue in as much detail as possible.
After the postclone.js script finishes executing when the user runs npm run postclone there are some dev dependencies in src/package.json that are not used after this point. These are prompt and rimraf.
These should be removed by automatically by executing npm remove prompt rimraf in the finishSetup() function for example.
It goes without saying that unneeded dependencies increase the time npm install takes to execute and little by little the build takes minutes instead of seconds.
The text was updated successfully, but these errors were encountered:
As I said, they increase the timenpm install takes to execute.
adrian-niculescu
changed the title
Unneeded dependencies should be removed after postclone.js finishes
Unneeded dev dependencies should be removed after postclone.js finishes
Apr 24, 2019
Which platform(s) does your issue occur on?
Please, provide the following version numbers that your issue occurs with:
Please, tell us how to recreate the issue in as much detail as possible.
After the postclone.js script finishes executing when the user runs
npm run postclone
there are some dev dependencies in src/package.json that are not used after this point. These are prompt and rimraf.These should be removed by automatically by executing
npm remove prompt rimraf
in the finishSetup() function for example.It goes without saying that unneeded dependencies increase the time
npm install
takes to execute and little by little the build takes minutes instead of seconds.The text was updated successfully, but these errors were encountered: