mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-03 18:43:20 +08:00
11 lines
176 B
JavaScript
Executable File
11 lines
176 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
*
|
|
* 本地启动
|
|
* 例如:
|
|
* - ./scripts/dev
|
|
*/
|
|
|
|
const { execShell } = require('./.exec');
|
|
(async() => await execShell('vuepress dev docs'))()
|