Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#15603)
Browse files Browse the repository at this point in the history
Co-authored-by: patak <[email protected]>
  • Loading branch information
renovate[bot] and patak-dev committed Jan 16, 2024
1 parent 0cacfad commit 109fb80
Show file tree
Hide file tree
Showing 24 changed files with 248 additions and 222 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@716b1e13042866565e00e85fd4ec490e186c4a2f # v41.0.1
uses: tj-actions/changed-files@62f4729b5df35e6e0e01265fa70a82ccaf196b4b # v41.1.1
with:
files: |
docs/**
Expand Down
4 changes: 2 additions & 2 deletions docs/guide/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ Vite 5 uses esbuild 0.19 and removes the compatibility layer for esbuild 0.18, w
// Set true if you use decorators
"experimentalDecorators": true,
// Set true if you see parsing errors in your browser
"useDefineForClassFields": true
}
"useDefineForClassFields": true,
},
}
```

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@types/fs-extra": "^11.0.4",
"@types/less": "^3.0.6",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.11.0",
"@types/node": "^20.11.1",
"@types/picomatch": "^2.3.3",
"@types/sass": "~1.43.1",
"@types/semver": "^7.5.6",
Expand All @@ -75,7 +75,7 @@
"npm-run-all2": "^6.1.1",
"picocolors": "^1.0.0",
"playwright-chromium": "^1.40.1",
"prettier": "3.1.1",
"prettier": "3.2.2",
"rimraf": "^5.0.5",
"rollup": "^4.2.0",
"semver": "^7.5.4",
Expand All @@ -86,8 +86,8 @@
"unbuild": "^2.0.0",
"vite": "workspace:*",
"vitepress": "1.0.0-rc.36",
"vitest": "^1.1.3",
"vue": "^3.4.9"
"vitest": "^1.2.0",
"vue": "^3.4.13"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
Expand Down
2 changes: 1 addition & 1 deletion packages/create-vite/template-qwik-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"vite": "^5.0.11"
},
"dependencies": {
"@builder.io/qwik": "^1.3.3"
"@builder.io/qwik": "^1.3.5"
}
}
2 changes: 1 addition & 1 deletion packages/create-vite/template-qwik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"vite": "^5.0.11"
},
"dependencies": {
"@builder.io/qwik": "^1.3.3"
"@builder.io/qwik": "^1.3.5"
}
}
2 changes: 1 addition & 1 deletion packages/create-vite/template-solid-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"solid-js": "^1.8.10"
"solid-js": "^1.8.11"
},
"devDependencies": {
"typescript": "^5.2.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-vite/template-solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"solid-js": "^1.8.10"
"solid-js": "^1.8.11"
},
"devDependencies": {
"vite": "^5.0.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-vite/template-svelte-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@tsconfig/svelte": "^5.0.2",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"svelte-check": "^3.6.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.11"
Expand Down
2 changes: 1 addition & 1 deletion packages/create-vite/template-vue-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.9"
"vue": "^3.4.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-vite/template-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.9"
"vue": "^3.4.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.3",
Expand Down
8 changes: 4 additions & 4 deletions packages/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"devDependencies": {
"@ampproject/remapping": "^2.2.1",
"@babel/parser": "^7.23.6",
"@jridgewell/trace-mapping": "^0.3.20",
"@jridgewell/trace-mapping": "^0.3.21",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
Expand All @@ -95,7 +95,7 @@
"@types/escape-html": "^1.0.4",
"@types/pnpapi": "^0.0.5",
"acorn": "^8.11.3",
"acorn-walk": "^8.3.1",
"acorn-walk": "^8.3.2",
"cac": "^6.7.14",
"chokidar": "^3.5.3",
"connect": "^3.7.0",
Expand All @@ -113,10 +113,10 @@
"fast-glob": "^3.3.2",
"http-proxy": "^1.18.1",
"launch-editor-middleware": "^2.6.1",
"lightningcss": "^1.22.1",
"lightningcss": "^1.23.0",
"magic-string": "^0.30.5",
"micromatch": "^4.0.5",
"mlly": "^1.4.2",
"mlly": "^1.5.0",
"mrmime": "^2.0.0",
"okie": "^1.0.1",
"open": "^8.4.2",
Expand Down
4 changes: 2 additions & 2 deletions playground/alias/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
},
"dependencies": {
"aliased-module": "file:./dir/module",
"vue": "^3.4.9",
"@vue/shared": "^3.4.9"
"vue": "^3.4.13",
"@vue/shared": "^3.4.13"
},
"devDependencies": {
"@vitejs/test-resolve-linked": "workspace:*"
Expand Down
2 changes: 1 addition & 1 deletion playground/css-lightningcss-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"preview": "vite preview"
},
"devDependencies": {
"lightningcss": "^1.22.1",
"lightningcss": "^1.23.0",
"express": "^4.18.2"
}
}
2 changes: 1 addition & 1 deletion playground/css-lightningcss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"preview": "vite preview"
},
"devDependencies": {
"lightningcss": "^1.22.1"
"lightningcss": "^1.23.0"
}
}
2 changes: 1 addition & 1 deletion playground/extensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.9"
"vue": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion playground/external/dep-that-imports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"dependencies": {
"slash3": "npm:slash@^3.0.0",
"slash5": "npm:slash@^5.1.0",
"vue": "^3.4.9"
"vue": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion playground/external/dep-that-requires/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"dependencies": {
"slash3": "npm:slash@^3.0.0",
"slash5": "npm:slash@^5.1.0",
"vue": "^3.4.9"
"vue": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion playground/external/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"slash3": "npm:slash@^3.0.0",
"slash5": "npm:slash@^5.1.0",
"vite": "workspace:*",
"vue": "^3.4.9",
"vue": "^3.4.13",
"vue32": "npm:vue@~3.2.0"
}
}
2 changes: 1 addition & 1 deletion playground/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"devDependencies": {
"@vitejs/test-json-module": "file:./json-module",
"express": "^4.18.2",
"vue": "^3.4.9"
"vue": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion playground/object-hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.4.9"
"vue": "^3.4.13"
}
}
2 changes: 1 addition & 1 deletion playground/optimize-deps-no-discovery/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@vitejs/test-dep-no-discovery": "file:./dep-no-discovery",
"vue": "^3.4.9",
"vue": "^3.4.13",
"vuex": "^4.1.0"
}
}
2 changes: 1 addition & 1 deletion playground/optimize-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"react-dom": "^18.2.0",
"@vitejs/test-resolve-linked": "workspace:0.0.0",
"url": "^0.11.3",
"vue": "^3.4.9",
"vue": "^3.4.13",
"vuex": "^4.1.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0"
Expand Down
2 changes: 1 addition & 1 deletion playground/tailwind/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dependencies": {
"autoprefixer": "^10.4.16",
"tailwindcss": "^3.4.1",
"vue": "^3.4.9",
"vue": "^3.4.13",
"vue-router": "^4.2.5"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 109fb80

Please sign in to comment.