mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-29 21:51:59 +02:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
const { execSync } = require('node:child_process');
|
|
|
|
if (process.env.SKIP_WASM_BUILD === '1') {
|
|
console.log('Skipping wasm-pack build (SKIP_WASM_BUILD=1)');
|
|
return;
|
|
}
|
|
|
|
execSync('wasm-pack build --target bundler', { stdio: 'inherit' });
|