mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-01-05 15:43:11 +03: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,
|
|
});
|