Skip to content

Commit f06868a

Browse files
committed
chore: update build command to use Yarn for consistency
- Changed the build command in build.ts to use `yarn webpack` instead of `webpack`, ensuring consistency with Yarn usage across the project.
1 parent a8de748 commit f06868a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/scripts/src/commands/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const buildWeb = async (options: Options_Cli) => {
5252

5353
log.info("Compiling web files...");
5454
shell.cd(`${COMPASS_ROOT_DEV}/packages/web`);
55-
shell.exec(`webpack --mode=production --node-env=${environment}`);
55+
shell.exec(`yarn webpack --mode=production --node-env=${environment}`);
5656

5757
log.success(`Done building web files.`);
5858
log.tip(`

0 commit comments

Comments
 (0)