1
+ #!/usr/bin/env zx
1
2
/* -------------------------------------------------------------------
2
3
3
4
⚡ Storm Software - Storm Stack
15
16
16
17
------------------------------------------------------------------- */
17
18
18
- import { $ , argv , chalk , echo , spinner , usePwsh } from "zx" ;
19
+ import { $ , argv , chalk , echo , usePwsh } from "zx" ;
19
20
20
21
usePwsh ( ) ;
21
22
@@ -31,37 +32,44 @@ try {
31
32
}
32
33
}
33
34
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...` ) } ` ;
45
36
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
+ ) ;
63
59
}
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
+ }
65
73
66
74
echo `${ chalk . green ( `Successfully built the monorepo in ${ configuration } mode!` ) } ` ;
67
75
} catch ( error ) {
0 commit comments