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

feat: 新增markdown转思维导图脚本,导航栏改版

This commit is contained in:
chu fan
2023-10-08 17:44:11 +08:00
parent 898b8ec880
commit 67cee8cbc7
14 changed files with 319 additions and 81 deletions

View File

@@ -13,15 +13,19 @@
"url": "https://github.com/142vip"
},
"scripts": {
"preinstall": "chmod +x ./scripts/*",
"prepare": "rm -f .husky/pre-commit && husky install && npx husky add .husky/pre-commit \"./scripts/lint --fix\" && chmod +x .husky/pre-commit",
"dev": "vuepress dev docs",
"build": "./scripts/bundle build",
"build": "./scripts/bundle build && npm run build:mark-map",
"build:mark-map": "./scripts/mark-map",
"build:proxy": "./scripts/bundle build_proxy",
"deploy:vercel": "vercel --prod",
"clean": "find . -name \"node_modules\" -type d -exec rm -rf '{}' + "
},
"scripts-info": {
"preinstall": "在安装依赖前分配脚本权限",
"prepare": "安装依赖预执行脚本",
"build:mark-map": "./scripts/mark-map",
"dev": "本地启动项目",
"clean": "快速删除本地依赖"
},