Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Nov 2, 2023
1 parent 8ee0a4d commit 2fafa6f
Show file tree
Hide file tree
Showing 3 changed files with 549 additions and 692 deletions.
11 changes: 7 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
// Enable the ESlint flat config support
"eslint.experimental.useFlatConfig": true,

// Disable the default formatter, use eslint instead
// Disable the default formatter
"prettier.enable": false,
"editor.formatOnSave": false,

// Auto fix
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.organizeImports": false
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},

// Silent the stylistic rules in you IDE, but still auto fix them
Expand All @@ -35,7 +35,10 @@
{ "rule": "*semi", "severity": "off" }
],

// Enable eslint for all supported languages
// The following is optional.
// It's better to put under project setting `.vscode/settings.json`
// to avoid conflicts with working with different eslint configs
// that does not support all formats.
"eslint.validate": [
"javascript",
"javascriptreact",
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"private": true,
"packageManager": "pnpm@8.9.2",
"packageManager": "pnpm@8.10.2",
"scripts": {
"build": "vite-ssg build",
"dev": "vite --port 3333 --open",
Expand All @@ -17,60 +17,60 @@
"sizecheck": "npx vite-bundle-visualizer"
},
"dependencies": {
"@unhead/vue": "^1.7.4",
"@unhead/vue": "^1.8.2",
"@unocss/reset": "^0.57.1",
"@vueuse/core": "^10.5.0",
"@vueuse/head": "^2.0.0",
"nprogress": "^0.2.0",
"pinia": "^2.1.7",
"vue": "^3.3.7",
"vue-demi": "^0.14.6",
"vue-i18n": "^9.6.0",
"vue-i18n": "^9.6.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^1.0.0-beta.29",
"@antfu/eslint-config": "^1.1.0",
"@iconify-json/carbon": "^1.1.21",
"@intlify/unplugin-vue-i18n": "^1.4.0",
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@types/markdown-it-link-attributes": "^3.0.3",
"@types/nprogress": "^0.2.2",
"@unocss/eslint-config": "^0.57.1",
"@vitejs/plugin-vue": "^4.4.0",
"@vue-macros/volar": "^0.17.1",
"@vue-macros/volar": "^0.17.2",
"@vue/test-utils": "^2.4.1",
"critters": "^0.0.20",
"cross-env": "^7.0.3",
"cypress": "^13.3.3",
"cypress": "^13.4.0",
"cypress-vite": "^1.4.2",
"eslint": "^8.52.0",
"eslint-plugin-cypress": "^2.15.1",
"https-localhost": "^4.7.1",
"lint-staged": "^15.0.2",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-shikiji": "^0.6.10",
"pnpm": "^8.9.2",
"rollup": "^4.1.4",
"shikiji": "^0.6.10",
"markdown-it-shikiji": "^0.6.12",
"pnpm": "^8.10.2",
"rollup": "^4.2.0",
"shikiji": "^0.6.12",
"simple-git-hooks": "^2.9.0",
"taze": "^0.12.0",
"typescript": "^5.2.2",
"unocss": "^0.57.1",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"unplugin-vue-macros": "^2.6.1",
"unplugin-vue-macros": "^2.6.2",
"unplugin-vue-markdown": "^0.24.3",
"vite": "^5.0.0-beta.12",
"vite": "^5.0.0-beta.15",
"vite-bundle-visualizer": "^0.10.0",
"vite-plugin-inspect": "^0.7.40",
"vite-plugin-inspect": "^0.7.41",
"vite-plugin-pages": "^0.31.0",
"vite-plugin-pwa": "^0.16.5",
"vite-plugin-pwa": "^0.16.6",
"vite-plugin-vue-devtools": "^1.0.0-rc.5",
"vite-plugin-vue-layouts": "^0.8.0",
"vite-plugin-webfont-dl": "^3.7.6",
"vite-plugin-webfont-dl": "^3.8.0",
"vite-ssg": "^0.23.4",
"vite-ssg-sitemap": "^0.6.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.21"
"vue-tsc": "^1.8.22"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
Expand Down

0 comments on commit 2fafa6f

Please sign in to comment.