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