Skip to content

Commit c0a0dbf

Browse files
committed
fix(monorepo): Resolve issue with writing script output to stdout
1 parent 132ea2e commit c0a0dbf

File tree

5 files changed

+111
-49
lines changed

5 files changed

+111
-49
lines changed

tools/scripts/src/bootstrap.mjs

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env zx
12
/* -------------------------------------------------------------------
23
34
⚡ Storm Software - Storm Stack
@@ -16,11 +17,13 @@
1617
------------------------------------------------------------------- */
1718

1819
import { build } from "esbuild";
19-
import { chalk, echo, usePwsh } from "zx";
20+
import { $, chalk, echo, usePwsh } from "zx";
2021

2122
usePwsh();
2223

2324
try {
25+
await echo`${chalk.whiteBright("⚙️ Bootstrapping the monorepo...")}`;
26+
2427
await build({
2528
entryPoints: [
2629
"tools/nx/src/plugins/plugin.ts",
@@ -39,6 +42,17 @@ try {
3942
preserveSymlinks: true
4043
});
4144

45+
const proc = $`pnpm nx reset`.timeout(`${5 * 60}s`);
46+
proc.stdout.on("data", data => {
47+
echo`${data}`;
48+
});
49+
const result = await proc;
50+
if (!result.ok) {
51+
throw new Error(
52+
`An error occured while resetting the Nx deamon process: \n\n${result.message}\n`
53+
);
54+
}
55+
4256
echo`${chalk.green("Completed monorepo bootstrapping successfully!")}`;
4357
} catch (error) {
4458
echo`${chalk.red(error?.message ? error.message : "A failure occured while bootstrapping the monorepo")}`;

tools/scripts/src/build.mjs

+38-30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env zx
12
/* -------------------------------------------------------------------
23
34
⚡ Storm Software - Storm Stack
@@ -15,7 +16,7 @@
1516
1617
------------------------------------------------------------------- */
1718

18-
import { $, argv, chalk, echo, spinner, usePwsh } from "zx";
19+
import { $, argv, chalk, echo, usePwsh } from "zx";
1920

2021
usePwsh();
2122

@@ -31,37 +32,44 @@ try {
3132
}
3233
}
3334

34-
await spinner(
35-
`${chalk.whiteBright(`
36-
Building the monorepo in ${configuration} mode...
37-
`)}`,
38-
async () => {
39-
let result = await $`pnpm bootstrap`.timeout("60s");
40-
if (!result.ok) {
41-
throw new Error(
42-
`An error occured while bootstrapping the monorepo: \n\n${result.message}\n`
43-
);
44-
}
35+
await echo`${chalk.whiteBright(`📦 Building the monorepo in ${configuration} mode...`)}`;
4536

46-
if (configuration === "production") {
47-
result =
48-
await $`pnpm nx run-many --target=build --all --exclude="@storm-stack/monorepo" --configuration=production --parallel=5`;
49-
if (!result.ok) {
50-
throw new Error(
51-
`An error occured while building the monorepo in production mode: \n\n${result.message}\n`
52-
);
53-
}
54-
} else {
55-
result =
56-
await $`pnpm nx run-many --target=build --all --exclude="@storm-stack/monorepo" --configuration=${configuration} --nxBail`;
57-
if (!result.ok) {
58-
throw new Error(
59-
`An error occured while building the monorepo in development mode: \n\n${result.message}\n`
60-
);
61-
}
62-
}
37+
let proc = $`pnpm bootstrap`.timeout("60s");
38+
proc.stdout.on("data", data => {
39+
echo`${data}`;
40+
});
41+
let result = await proc;
42+
if (!result.ok) {
43+
throw new Error(
44+
`An error occured while bootstrapping the monorepo: \n\n${result.message}\n`
45+
);
46+
}
47+
48+
if (configuration === "production") {
49+
proc = $`pnpm nx run-many --target=build --all --exclude="@storm-stack/monorepo" --configuration=production --parallel=5`;
50+
proc.stdout.on("data", data => {
51+
echo`${data}`;
52+
});
53+
result = await proc;
54+
55+
if (!result.ok) {
56+
throw new Error(
57+
`An error occured while building the monorepo in production mode: \n\n${result.message}\n`
58+
);
6359
}
64-
);
60+
} else {
61+
proc = $`pnpm nx run-many --target=build --all --exclude="@storm-stack/monorepo" --configuration=${configuration} --nxBail`;
62+
proc.stdout.on("data", data => {
63+
echo`${data}`;
64+
});
65+
result = await proc;
66+
67+
if (!result.ok) {
68+
throw new Error(
69+
`An error occured while building the monorepo in development mode: \n\n${result.message}\n`
70+
);
71+
}
72+
}
6573

6674
echo`${chalk.green(`Successfully built the monorepo in ${configuration} mode!`)}`;
6775
} catch (error) {

tools/scripts/src/format.mjs

+15-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env zx
12
/* -------------------------------------------------------------------
23
34
⚡ Storm Software - Storm Stack
@@ -20,25 +21,35 @@ import { $, argv, chalk, echo, usePwsh } from "zx";
2021
usePwsh();
2122

2223
try {
24+
await echo`${chalk.whiteBright("🎨 Formatting the monorepo...")}`;
25+
2326
let files = "";
2427
if (argv._ && argv._.length > 0) {
2528
files = `--files ${argv._.join(" ")}`;
2629
}
2730

28-
let result =
29-
await $`pnpm nx run-many --target=lint,format --all --exclude="@storm-stack/monorepo" --parallel=5`.timeout(
31+
let proc =
32+
$`pnpm nx run-many --target=lint,format --all --exclude="@storm-stack/monorepo" --parallel=5`.timeout(
3033
`${30 * 60}s`
3134
);
35+
proc.stdout.on("data", data => {
36+
echo`${data}`;
37+
});
38+
let result = await proc;
3239
if (!result.ok) {
3340
throw new Error(
3441
`An error occured while formatting the monorepo: \n\n${result.message}\n`
3542
);
3643
}
3744

38-
result =
39-
await $`pnpm nx format:write ${files} --sort-root-tsconfig-paths --all`.timeout(
45+
proc =
46+
$`pnpm nx format:write ${files} --sort-root-tsconfig-paths --all`.timeout(
4047
`${30 * 60}s`
4148
);
49+
proc.stdout.on("data", data => {
50+
echo`${data}`;
51+
});
52+
result = await proc;
4253
if (!result.ok) {
4354
throw new Error(
4455
`An error occured while running \`nx format:write\` on the monorepo: \n\n${result.message}\n`

tools/scripts/src/lint.mjs

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env zx
12
/* -------------------------------------------------------------------
23
34
⚡ Storm Software - Storm Stack
@@ -20,27 +21,36 @@ import { $, chalk, echo, usePwsh } from "zx";
2021
usePwsh();
2122

2223
try {
23-
let result =
24-
await $`pnpm nx run-many --target=lint --all --exclude="@storm-stack/monorepo" --parallel=5`.timeout(
24+
await echo`${chalk.whiteBright("📋 Linting the monorepo...")}`;
25+
26+
let proc =
27+
$`pnpm nx run-many --target=lint --all --exclude="@storm-stack/monorepo" --parallel=5`.timeout(
2528
`${30 * 60}s`
2629
);
30+
proc.stdout.on("data", data => {
31+
echo`${data}`;
32+
});
33+
let result = await proc;
2734
if (!result.ok) {
2835
throw new Error(
2936
`An error occured while linting the monorepo: \n\n${result.message}\n`
3037
);
3138
}
3239

33-
result =
34-
await $`pnpm exec storm-lint all --skip-cspell --skip-circular-deps`.timeout(
35-
`${30 * 60}s`
36-
);
40+
proc = $`pnpm exec storm-lint all --skip-cspell --skip-circular-deps`.timeout(
41+
`${30 * 60}s`
42+
);
43+
proc.stdout.on("data", data => {
44+
echo`${data}`;
45+
});
46+
result = await proc;
3747
if (!result.ok) {
3848
throw new Error(
3949
`An error occured while running \`storm-lint\` on the monorepo: \n\n${result.message}\n`
4050
);
4151
}
4252

43-
echo`${chalk.green("Successfully formatted the monorepo's files")}`;
53+
echo`${chalk.green("Successfully linted the monorepo's files")}`;
4454
} catch (error) {
4555
echo`${chalk.red(error?.message ? error.message : "A failure occured while linting the monorepo")}`;
4656

tools/scripts/src/nuke.mjs

+26-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env zx
12
/* -------------------------------------------------------------------
23
34
⚡ Storm Software - Storm Stack
@@ -20,37 +21,55 @@ import { $, chalk, echo, usePwsh } from "zx";
2021
usePwsh();
2122

2223
try {
23-
let result = await $`pnpm nx clear-cache`.timeout(`${5 * 60}s`);
24+
await echo`${chalk.whiteBright("💣 Nuking the monorepo...")}`;
25+
26+
let proc = $`pnpm nx clear-cache`.timeout(`${5 * 60}s`);
27+
proc.stdout.on("data", data => {
28+
echo`${data}`;
29+
});
30+
let result = await proc;
2431
if (!result.ok) {
2532
throw new Error(
2633
`An error occured while clearing Nx cache: \n\n${result.message}\n`
2734
);
2835
}
2936

30-
result =
31-
await $`pnpm exec rimraf --no-interactive -- ./.nx/cache ./.nx/workspace-data ./dist ./tmp ./pnpm-lock.yaml`.timeout(
37+
proc =
38+
$`pnpm exec rimraf --no-interactive -- ./.nx/cache ./.nx/workspace-data ./dist ./tmp ./pnpm-lock.yaml`.timeout(
3239
`${5 * 60}s`
3340
);
41+
proc.stdout.on("data", data => {
42+
echo`${data}`;
43+
});
44+
result = await proc;
3445
if (!result.ok) {
3546
throw new Error(
3647
`An error occured while removing cache directories: \n\n${result.message}\n`
3748
);
3849
}
3950

40-
result =
41-
await $`pnpm exec rimraf --no-interactive --glob "*/**/{node_modules,dist,.storm}`.timeout(
51+
proc =
52+
$`pnpm exec rimraf --no-interactive --glob "*/**/{node_modules,dist,.storm}`.timeout(
4253
`${5 * 60}s`
4354
);
55+
proc.stdout.on("data", data => {
56+
echo`${data}`;
57+
});
58+
result = await proc;
4459
if (!result.ok) {
4560
throw new Error(
4661
`An error occured while removing node modules and build directories from the monorepo's projects: \n\n${result.message}\n`
4762
);
4863
}
4964

50-
result =
51-
await $`pnpm exec rimraf --no-interactive --glob "./node_modules/!rimraf/**"`.timeout(
65+
proc =
66+
$`pnpm exec rimraf --no-interactive --glob "./node_modules/!rimraf/**"`.timeout(
5267
`${5 * 60}s`
5368
);
69+
proc.stdout.on("data", data => {
70+
echo`${data}`;
71+
});
72+
result = await proc;
5473
if (!result.ok) {
5574
throw new Error(
5675
`An error occured while removing node modules from the workspace root: \n\n${result.message}\n`

0 commit comments

Comments
 (0)