Skip to content

Commit af19b1b

Browse files
Sunny-117pi0
andcommittedDec 27, 2024·
feat: support parallel builds
Co-authored-by: Pooya Parsa <pooya@pi0.io>
1 parent bf8de6b commit af19b1b

File tree

3 files changed

+25
-11
lines changed

3 files changed

+25
-11
lines changed
 

‎src/build.ts

+15-11
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ async function _build(
155155
respectExternal: true,
156156
},
157157
},
158+
parallel: false,
158159
},
159160
) as BuildOptions;
160161

@@ -273,17 +274,20 @@ async function _build(
273274
// await symlink(resolve(ctx.rootDir), nodemodulesDir).catch(() => {})
274275
// }
275276

276-
// untyped
277-
await typesBuild(ctx);
278-
279-
// mkdist
280-
await mkdistBuild(ctx);
281-
282-
// rollup
283-
await rollupBuild(ctx);
284-
285-
// copy
286-
await copyBuild(ctx);
277+
const buildTasks = [
278+
typesBuild, // untyped
279+
mkdistBuild, // mkdist
280+
rollupBuild, // rollup
281+
copyBuild, // copy
282+
] as const;
283+
284+
if (options.parallel) {
285+
await Promise.all(buildTasks.map((task) => task(ctx)));
286+
} else {
287+
for (const task of buildTasks) {
288+
await task(ctx);
289+
}
290+
}
287291

288292
// Skip rest for stub and watch mode
289293
if (options.stub || options.watch) {

‎src/cli.ts

+5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ const main = defineCommand({
4141
type: "boolean",
4242
description: "Generate sourcemaps (experimental)",
4343
},
44+
parallel: {
45+
type: "boolean",
46+
description:
47+
"Run different types of builds (untyped, mkdist, Rollup, copy) simultaneously.",
48+
},
4449
},
4550
async run({ args }) {
4651
const rootDir = resolve(process.cwd(), args.dir || ".");

‎src/types.ts

+5
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,11 @@ export interface BuildOptions {
138138
* [Rollup](https://rollupjs.org/configuration-options) Build Options
139139
*/
140140
rollup: RollupBuildOptions;
141+
142+
/**
143+
* Run different types of builds (untyped, mkdist, Rollup, copy) simultaneously.
144+
*/
145+
parallel: boolean;
141146
}
142147

143148
export interface BuildContext {

0 commit comments

Comments
 (0)
Please sign in to comment.