chore(deps): update all non-major dependencies (#2818)

* chore(deps): update all non-major dependencies

* feat: add isShallow auto import

https://github.com/vuejs/core/commit/9fda941

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
This commit is contained in:
renovate[bot] 2022-01-24 13:38:03 +01:00 committed by GitHub
parent 2b86345e9e
commit 0b0e56ae4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 848 additions and 195 deletions

View File

@ -29,7 +29,7 @@
"resolutions": {
"nuxt3": "workspace:./packages/nuxt3",
"@nuxt/ui": "npm:@nuxt/ui-edge@^0.0.0-27376194.a859489",
"unbuild": "^0.6.7",
"unbuild": "^0.6.8",
"jiti": "^1.12.9"
},
"devDependencies": {
@ -40,10 +40,10 @@
"@types/jsdom": "^16",
"@types/node": "^16.11.21",
"@types/object-hash": "^2",
"@unocss/reset": "^0.22.4",
"esbuild": "^0.14.11",
"@unocss/reset": "^0.22.5",
"esbuild": "^0.14.13",
"eslint": "^8.7.0",
"eslint-plugin-jsdoc": "^37.6.1",
"eslint-plugin-jsdoc": "^37.6.3",
"execa": "^6.0.0",
"globby": "^12.2.0",
"jiti": "^1.12.9",
@ -52,9 +52,9 @@
"miniflare": "^1.4.1",
"object-hash": "^2.2.0",
"pathe": "^0.2.0",
"typescript": "^4.5.4",
"unbuild": "^0.6.7",
"vitest": "^0.1.23",
"typescript": "^4.5.5",
"unbuild": "^0.6.8",
"vitest": "^0.2.1",
"vue-router": "next"
},
"packageManager": "yarn@3.1.1",

View File

@ -41,7 +41,7 @@
"magic-string": "^0.25.7",
"mlly": "^0.3.19",
"murmurhash-es": "^0.1.1",
"node-fetch": "^3.1.1",
"node-fetch": "^3.2.0",
"nuxi": "3.0.0",
"p-debounce": "^4.0.0",
"pathe": "^0.2.0",
@ -53,7 +53,7 @@
"scule": "^0.2.1",
"semver": "^7.3.5",
"ufo": "^0.7.9",
"unplugin": "^0.3.0",
"unplugin": "^0.3.2",
"unplugin-vue2-script-setup": "0.9.1",
"vite": "^2.7.13",
"vite-plugin-vue2": "^1.9.2",

View File

@ -14,7 +14,7 @@
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@netlify/functions": "^0.10.0",
"@netlify/functions": "^0.11.0",
"@nuxt/design": "0.1.5",
"@nuxt/devalue": "^2.0.0",
"@nuxt/kit": "3.0.0",
@ -28,7 +28,7 @@
"@rollup/plugin-wasm": "^5.1.2",
"@rollup/pluginutils": "^4.1.2",
"@types/jsdom": "^16.2.14",
"@vercel/nft": "^0.17.3",
"@vercel/nft": "^0.17.4",
"archiver": "^5.3.0",
"chalk": "^5.0.0",
"chokidar": "^3.5.3",
@ -36,8 +36,8 @@
"consola": "^2.15.3",
"defu": "^5.0.1",
"destr": "^1.1.0",
"dot-prop": "^7.0.0",
"esbuild": "^0.14.11",
"dot-prop": "^7.1.1",
"esbuild": "^0.14.13",
"etag": "^1.8.1",
"fs-extra": "^10.0.0",
"globby": "^12.2.0",
@ -51,14 +51,14 @@
"listhen": "^0.2.6",
"mime": "^3.0.0",
"mlly": "^0.3.19",
"node-fetch": "^3.1.1",
"node-fetch": "^3.2.0",
"ohmyfetch": "^0.4.15",
"ora": "^6.0.1",
"p-debounce": "^4.0.0",
"pathe": "^0.2.0",
"pkg-types": "^0.3.2",
"pretty-bytes": "^5.6.0",
"rollup": "^2.64.0",
"rollup": "^2.66.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.4",
"serve-placeholder": "^1.2.4",
@ -78,7 +78,7 @@
"@types/node-fetch": "^3.0.2",
"@types/serve-static": "^1.13.10",
"unbuild": "latest",
"vue": "3.2.27"
"vue": "3.2.29"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"

View File

@ -25,8 +25,8 @@
"@nuxt/schema": "3.0.0",
"@nuxt/vite-builder": "3.0.0",
"@nuxt/webpack-builder": "3.0.0",
"@vue/reactivity": "^3.2.27",
"@vue/shared": "^3.2.27",
"@vue/reactivity": "^3.2.29",
"@vue/shared": "^3.2.29",
"@vueuse/head": "^0.7.5",
"chokidar": "^3.5.3",
"consola": "^2.15.3",
@ -45,8 +45,8 @@
"pathe": "^0.2.0",
"scule": "^0.2.1",
"ufo": "^0.7.9",
"unplugin": "^0.3.0",
"vue": "^3.2.27",
"unplugin": "^0.3.2",
"vue": "^3.2.29",
"vue-router": "^4.0.12"
},
"devDependencies": {

View File

@ -86,6 +86,7 @@ export const Nuxt3AutoImports: AutoImportSource[] = [
'unref',
'watch',
'watchEffect',
'isShallow',
// effect
'effect',

View File

@ -15,17 +15,17 @@
"devDependencies": {
"@nuxt/schema": "3.0.0",
"unbuild": "latest",
"vue": "3.2.27"
"vue": "3.2.29"
},
"dependencies": {
"@nuxt/kit": "3.0.0",
"@vitejs/plugin-vue": "^2.0.1",
"@vitejs/plugin-vue": "^2.1.0",
"@vitejs/plugin-vue-jsx": "^1.3.3",
"autoprefixer": "^10.4.2",
"chokidar": "^3.5.3",
"consola": "^2.15.3",
"defu": "^5.0.1",
"esbuild": "^0.14.11",
"esbuild": "^0.14.13",
"externality": "^0.1.6",
"fs-extra": "^10.0.0",
"magic-string": "^0.25.7",
@ -40,7 +40,7 @@
"vite": "^2.7.13"
},
"peerDependencies": {
"vue": "3.2.27"
"vue": "3.2.29"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"

View File

@ -16,7 +16,7 @@
"prepack": "unbuild"
},
"dependencies": {
"@babel/core": "^7.16.7",
"@babel/core": "^7.16.12",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"@nuxt/kit": "3.0.0",
"@vue/babel-preset-jsx": "^1.2.4",
@ -25,7 +25,7 @@
"consola": "^2.15.3",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^5.0.15",
"cssnano": "^5.0.16",
"esbuild-loader": "^2.18.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
@ -45,11 +45,11 @@
"style-resources-loader": "^1.5.0",
"time-fix-plugin": "^2.0.7",
"ufo": "^0.7.9",
"unplugin": "^0.3.0",
"unplugin": "^0.3.2",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.66.0",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-middleware": "^5.3.0",
"webpack-hot-middleware": "^2.25.1",
@ -65,10 +65,10 @@
"@types/webpack-hot-middleware": "^2.25.5",
"@types/webpack-virtual-modules": "^0",
"unbuild": "latest",
"vue": "3.2.27"
"vue": "3.2.29"
},
"peerDependencies": {
"vue": "3.2.27"
"vue": "3.2.29"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"

982
yarn.lock

File diff suppressed because it is too large Load Diff