Skip to content

Commit 043bf23

Browse files
committed
chore(monorepo): Remove unneeded skipNxCache flag from build
1 parent 9b9c7b7 commit 043bf23

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/scripts/src/build.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ try {
4747
}
4848

4949
if (configuration === "production") {
50-
proc = $`pnpm nx run nx:build:production --outputStyle=dynamic-legacy --skipNxCache`;
50+
proc = $`pnpm nx run nx:build:production --outputStyle=dynamic-legacy`;
5151
proc.stdout.on("data", data => {
5252
echo`${data}`;
5353
});
@@ -69,7 +69,7 @@ try {
6969
);
7070
}
7171
} else {
72-
proc = $`pnpm nx run nx:build:${configuration} --outputStyle=dynamic-legacy --skipNxCache`;
72+
proc = $`pnpm nx run nx:build:${configuration} --outputStyle=dynamic-legacy`;
7373
proc.stdout.on("data", data => {
7474
echo`${data}`;
7575
});

0 commit comments

Comments
 (0)