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

Merge pull request #112 from 142vip/feat/remove-ci

feat: 移除`ci`脚本,本地启动使用`pnpm dev`命令
This commit is contained in:
微信公众号:储凡
2024-10-16 14:35:15 +08:00
committed by GitHub
2 changed files with 1 additions and 15 deletions

View File

@@ -21,7 +21,7 @@
"clean": "npx fa clean --ignore-tips --dist --vite --all",
"lint": "npx fa lint",
"lint:fix": "npx fa lint --fix",
"dev": "npx vuepress dev docs",
"dev": "pnpm build:mark-map && npx vuepress dev docs",
"build": "npx vuepress build docs --clean-temp --clean-cache",
"build:proxy": "NEED_PROXY=true npx vuepress build docs --clean-temp --clean-cache",
"build:mark-map": "./scripts/mark-map",

View File

@@ -1,14 +0,0 @@
#!/usr/bin/env node
/**
*
* 本地启动
* 例如:
* - ./scripts/dev
*/
import {commandStandardExecutor} from '@142vip/utils'
(async () => await commandStandardExecutor([
'pnpm build:mark-map',
'pnpm dev'
]))()