mirror of
https://github.com/dream-num/univer.git
synced 2026-09-01 15:29:43 +08:00
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
const execa = require('execa');
|
|
const childProcess = require('child_process');
|
|
const exec = childProcess.exec;
|
|
const devTarget = '@univer/core';
|
|
const { execFile } = require('child_process');
|
|
run();
|
|
|
|
async function run() {
|
|
await apiAll(devTarget);
|
|
}
|
|
async function apiAll(target) {
|
|
await execa('pnpm', ['run', '--filter', target, 'api'], { stdio: 'inherit' });
|
|
}
|