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 71b0d6e commit 7ed2859Copy full SHA for 7ed2859
packages/cli/src/commands/create-stack.ts
@@ -154,6 +154,20 @@ export class CreateStackCommand extends Command {
154
);
155
},
156
157
+ {
158
+ title: 'Install Dependencies',
159
+ task: async (task) => {
160
+ task.output = 'INSTALL DEPENDENCIES';
161
+ Helpers.removeDir(stackFolder + '/node_modules');
162
+ await Helpers.executeChildProcess(
163
+ 'npm i',
164
165
+ cwd: stackFolder,
166
+ },
167
+ false
168
+ );
169
170
171
{
172
title: 'Deploy Stack on AWS',
173
task: async () => {
0 commit comments