mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-04 02:53:21 +08:00
* feat: 引入`@142vip/utils`模块,删除`.exec`执行器,优化`scripts`脚本逻辑和流程 * chore: update * chore: update package.json --------- Co-authored-by: 142vip.cn <fairy@2925.com>
15 lines
226 B
JavaScript
Executable File
15 lines
226 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/**
|
|
*
|
|
* 本地启动
|
|
* 例如:
|
|
* - ./scripts/dev
|
|
*/
|
|
|
|
import {commandStandardExecutor} from '@142vip/utils'
|
|
|
|
(async () => await commandStandardExecutor([
|
|
'pnpm build:mark-map',
|
|
'pnpm dev'
|
|
]))()
|