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