mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
13 lines
417 B
JavaScript
13 lines
417 B
JavaScript
const path = require('path');
|
|
const serve = require('webpack-serve');
|
|
const config = require('./webpack.doc.dev');
|
|
const { exec } = require('child_process');
|
|
|
|
const gulpConfig = path.resolve(__dirname, './compiler.js');
|
|
|
|
serve({}, { config });
|
|
|
|
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));
|