We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da9a1ee commit e1b2b7eCopy full SHA for e1b2b7e
src/generators/app/index.js
@@ -555,14 +555,10 @@ export class Generator extends Base {
555
};
556
}
557
558
- get install() {
559
- return {
560
- installDeps: function() {
561
- this.installDependencies({
562
- skipInstall: this.options['skip-install']
563
- });
564
- }
565
- };
+ install() {
+ if(!this.options['skip-install']) {
+ this.spawnCommand('npm', ['install']);
+ }
566
567
568
get end() {
0 commit comments