14 lines
286 B
JavaScript
14 lines
286 B
JavaScript
import fs from 'node:fs';
|
|
import { spawnSync } from 'node:child_process';
|
|
|
|
if (fs.existsSync('dist/index.html')) {
|
|
process.exit(0);
|
|
}
|
|
|
|
const result = spawnSync('npm', ['run', 'build'], {
|
|
stdio: 'inherit',
|
|
shell: process.platform === 'win32'
|
|
});
|
|
|
|
process.exit(result.status ?? 1);
|