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.
skipNxCache
1 parent 9b9c7b7 commit 043bf23Copy full SHA for 043bf23
1 file changed
tools/scripts/src/build.mjs
@@ -47,7 +47,7 @@ try {
47
}
48
49
if (configuration === "production") {
50
- proc = $`pnpm nx run nx:build:production --outputStyle=dynamic-legacy --skipNxCache`;
+ proc = $`pnpm nx run nx:build:production --outputStyle=dynamic-legacy`;
51
proc.stdout.on("data", data => {
52
echo`${data}`;
53
});
@@ -69,7 +69,7 @@ try {
69
);
70
71
} else {
72
- proc = $`pnpm nx run nx:build:${configuration} --outputStyle=dynamic-legacy --skipNxCache`;
+ proc = $`pnpm nx run nx:build:${configuration} --outputStyle=dynamic-legacy`;
73
74
75
0 commit comments