mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-24 09:52:49 +08:00
7 lines
159 B
JavaScript
Executable File
7 lines
159 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
import { spawnSync } from 'node:child_process';
|
|
|
|
spawnSync('yarn', ['r', 'affine.ts', ...process.argv.slice(2)], {
|
|
stdio: 'inherit',
|
|
});
|