Skip to content

Commit 5083cbd

Browse files
authored
build: re-enable workers for package artifact generation (#30658)
This was disabled a while ago, seemingly for some of the type worker bundling issues. Those should be resolved as we improved/changed how we bundle `.d.ts` anyway.
1 parent e1cf284 commit 5083cbd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/build-packages-dist.mts

+1-2
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ function buildReleasePackages(distPath: string, isSnapshotBuild: boolean): Built
6464
// version placeholder is populated in the release output.
6565
const stampConfigArg = `--config=${isSnapshotBuild ? 'snapshot-build' : 'release'}`;
6666

67-
// TODO(josephperrott): Figure out why we can't use workers right now.
68-
exec(`${bazelCmd} build --spawn_strategy=local ${stampConfigArg} ${targets.join(' ')}`);
67+
exec(`${bazelCmd} build ${stampConfigArg} ${targets.join(' ')}`);
6968

7069
// Delete the distribution directory so that the output is guaranteed to be clean. Re-create
7170
// the empty directory so that we can copy the release packages into it later.

0 commit comments

Comments
 (0)