1
0
mirror of https://github.com/142vip/408CSFamily.git synced 2026-04-13 17:09:45 +08:00

feat: 引入@142vip/utils模块,删除.exec执行器,优化scripts脚本逻辑和流程 (#100)

* feat: 引入`@142vip/utils`模块,删除`.exec`执行器,优化`scripts`脚本逻辑和流程

* chore: update

* chore: update package.json

---------

Co-authored-by: 142vip.cn <fairy@2925.com>
This commit is contained in:
142vip.cn
2024-09-25 15:14:17 +08:00
committed by GitHub
parent 00435ea417
commit e792ed40b2
10 changed files with 70 additions and 493 deletions

View File

@@ -6,8 +6,9 @@
* - ./scripts/dev
*/
const {execShell} = require('./.exec');
(async () => await execShell([
'npm run build:mark-map',
'vuepress dev docs'
import {commandStandardExecutor} from '@142vip/utils'
(async () => await commandStandardExecutor([
'pnpm build:mark-map',
'pnpm dev'
]))()