fix: serial build plugins (#3431)

This commit is contained in:
Alex Yang 2023-07-27 20:06:37 -07:00 committed by GitHub
parent 1001d7462a
commit 8185ee991b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,16 +1,16 @@
import { spawn } from 'node:child_process';
import { spawnSync } from 'node:child_process';
spawn('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'bookmark'], {
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'bookmark'], {
stdio: 'inherit',
shell: true,
});
spawn('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'hello-world'], {
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'hello-world'], {
stdio: 'inherit',
shell: true,
});
spawn('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'copilot'], {
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'copilot'], {
stdio: 'inherit',
shell: true,
});