mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-03 02:23:38 +08:00
* perf: 修改CI代码拉取策略,简化scripts脚本命令 * feat: markmap-cli开发环境依赖 --------- Co-authored-by: chu fan <fairy_408@2925.com>
11 lines
201 B
JavaScript
Executable File
11 lines
201 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'))()
|