Skip to content
This repository was archived by the owner on Dec 15, 2025. It is now read-only.

Commit 1e6ecd2

Browse files
author
uid10804
committed
fix(cli): update-stack: add missing build-step
1 parent 67a14a9 commit 1e6ecd2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/cli/src/commands/update-stack.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,18 @@ export class UpdateStackCommand extends Command {
126126
);
127127
},
128128
},
129+
{
130+
title: 'Build Code',
131+
task: async () => {
132+
await Helpers.executeChildProcess(
133+
'npm run build',
134+
{
135+
cwd: stackFolder,
136+
},
137+
false
138+
);
139+
},
140+
},
129141
{
130142
title: 'Deploy Stack on AWS',
131143
task: async () => {

0 commit comments

Comments
 (0)