1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-02-03 10:33:47 +08:00
Files
408CSFamily/scripts/dev

14 lines
209 B
JavaScript
Executable File

#!/usr/bin/env node
/**
*
* 本地启动
* 例如:
* - ./scripts/dev
*/
const {execShell} = require('./.exec');
(async () => await execShell([
'npm run build:mark-map',
'vuepress dev docs'
]))()