mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 02:12:43 +08:00
18 lines
517 B
JavaScript
18 lines
517 B
JavaScript
import { dirname, resolve } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import { dev } from '@vant/cli/lib/commands/dev.js';
|
|
import { exec } from 'child_process';
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
const gulpConfig = resolve(__dirname, './compiler.js');
|
|
|
|
async function run() {
|
|
await dev();
|
|
|
|
const p = exec(`npx gulp -f ${gulpConfig} buildExample --color`);
|
|
p.stdout.on('data', (stdout) => console.info(stdout));
|
|
p.stderr.on('data', (stderr) => console.info(stderr));
|
|
}
|
|
|
|
run();
|