Skip to content

Commit

Permalink
🐳 chore(vitesse-nuxt): 更改命令。提供基础的公共命令。
Browse files Browse the repository at this point in the history
  • Loading branch information
ruan-cat committed Dec 12, 2024
1 parent a1d978f commit 663fe7c
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 76 deletions.
9 changes: 7 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
"jock.svg",
"eightHundreds.vscode-mindmap",
"hediet.vscode-drawio",
"Spades.vs-picgo"
"Spades.vs-picgo",
// 从 vitesse-nuxt 仓库得到的推荐配置
"antfu.iconify",
"antfu.unocss",
"antfu.goto-alias",
"csstools.postcss",
],
"unwantedRecommendations": []
}
}
10 changes: 8 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,11 @@
- https://github.com/vuejs/language-tools/tree/master/extensions/vscode#configs
- https://vitepress.dev/guide/using-vue#vs-code-intellisense-support
*/
"vue.server.includeLanguages": ["vue", "markdown"]
}
"vue.server.includeLanguages": [
"vue",
"markdown"
],
"interline-translate.knownPopularWordCount": 6000,
"iconify.annotations": true,
"iconify.inplace": true
}
10 changes: 0 additions & 10 deletions demos/gh.antfu.vitesse-nuxt/.vscode/extensions.json

This file was deleted.

45 changes: 0 additions & 45 deletions demos/gh.antfu.vitesse-nuxt/.vscode/settings.json

This file was deleted.

11 changes: 0 additions & 11 deletions demos/gh.antfu.vitesse-nuxt/netlify.toml

This file was deleted.

6 changes: 5 additions & 1 deletion demos/gh.antfu.vitesse-nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"name": "vitesse-nuxt",
"type": "module",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "nuxi build",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxi dev",
Expand All @@ -10,7 +12,9 @@
"start": "node .output/server/index.mjs",
"start:generate": "npx serve .output/public",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit"
"typecheck": "vue-tsc --noEmit",
"clear": "rimraf dist .turbo .vercel .cache .temp .nuxt .output",
"rm:node_modules": "rimraf node_modules pnpm-lock.yaml"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
Expand Down
12 changes: 7 additions & 5 deletions demos/gh.zou-hong-run.dobang/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
"build": "vite build",
"preview": "vite preview",
"clear": "rimraf dist .turbo .vercel .cache .temp",
"rm:node_modules": "rimraf node_modules pnpm-lock.yaml"
},
"devDependencies": {
"sass": "^1.64.2",
"typescript": "^5.0.2",
"vite": "^4.4.5"
"sass": "^1.82.0",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}

0 comments on commit 663fe7c

Please sign in to comment.