mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 12:12:51 +03:00
fix: serial build plugins (#3431)
This commit is contained in:
parent
1001d7462a
commit
8185ee991b
@ -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,
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user