mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
17 lines
389 B
JavaScript
17 lines
389 B
JavaScript
import { spawnSync } from 'node:child_process';
|
|
|
|
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'bookmark'], {
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
});
|
|
|
|
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'hello-world'], {
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
});
|
|
|
|
spawnSync('yarn', ['-T', 'run', 'dev-plugin', '--plugin', 'copilot'], {
|
|
stdio: 'inherit',
|
|
shell: true,
|
|
});
|