mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 07:48:37 +01:00
7 lines
222 B
JavaScript
7 lines
222 B
JavaScript
|
|
const child = require('child_process');
|
|
|
|
const p = child.exec('pnpm run compile && pnpm run build');
|
|
|
|
p.stdout.on('data', (e) => { console.log(e.toString()); });
|
|
p.stderr.on('data', (e) => { console.log(e.toString()); }); |