mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-16 13:48:13 +00:00
chore(deps): update all non-major dependencies (#3788)
* chore(deps): update all non-major dependencies * update test Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
This commit is contained in:
parent
edb3e5075e
commit
ae364f95cc
@ -41,10 +41,10 @@
|
||||
"@types/jsdom": "^16",
|
||||
"@types/node": "^16.11.26",
|
||||
"@types/object-hash": "^2",
|
||||
"@unocss/reset": "^0.29.3",
|
||||
"@unocss/reset": "^0.29.5",
|
||||
"esbuild": "^0.14.27",
|
||||
"eslint": "^8.11.0",
|
||||
"eslint-plugin-jsdoc": "^38.0.4",
|
||||
"eslint-plugin-jsdoc": "^38.0.6",
|
||||
"execa": "^6.1.0",
|
||||
"expect-type": "^0.13.0",
|
||||
"globby": "^13.1.1",
|
||||
@ -56,9 +56,9 @@
|
||||
"pathe": "^0.2.0",
|
||||
"typescript": "^4.6.2",
|
||||
"unbuild": "^0.7.0",
|
||||
"vitest": "^0.7.4",
|
||||
"vitest": "^0.7.7",
|
||||
"vue-router": "^4.0.14",
|
||||
"vue-tsc": "^0.33.1"
|
||||
"vue-tsc": "^0.33.6"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
||||
|
@ -52,12 +52,12 @@
|
||||
"postcss": "^8",
|
||||
"postcss-import": "^14.0.2",
|
||||
"postcss-import-resolver": "^2.0.0",
|
||||
"postcss-preset-env": "^7.4.2",
|
||||
"postcss-preset-env": "^7.4.3",
|
||||
"postcss-url": "^10.1.3",
|
||||
"scule": "^0.2.1",
|
||||
"semver": "^7.3.5",
|
||||
"ufo": "^0.8.1",
|
||||
"unimport": "^0.1.0",
|
||||
"unimport": "^0.1.1",
|
||||
"unplugin": "^0.5.2",
|
||||
"unplugin-vue2-script-setup": "^0.10.0",
|
||||
"untyped": "^0.4.3",
|
||||
|
@ -14,7 +14,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/schema": "^3.0.0",
|
||||
"c12": "^0.2.3",
|
||||
"c12": "^0.2.4",
|
||||
"consola": "^2.15.3",
|
||||
"defu": "^6.0.0",
|
||||
"globby": "^13.1.1",
|
||||
@ -29,7 +29,7 @@
|
||||
"scule": "^0.2.1",
|
||||
"semver": "^7.3.5",
|
||||
"unctx": "^1.0.2",
|
||||
"unimport": "^0.1.0",
|
||||
"unimport": "^0.1.1",
|
||||
"untyped": "^0.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -28,7 +28,7 @@
|
||||
"@rollup/plugin-wasm": "^5.1.2",
|
||||
"@rollup/pluginutils": "^4.2.0",
|
||||
"@types/jsdom": "^16.2.14",
|
||||
"@vercel/nft": "^0.17.5",
|
||||
"@vercel/nft": "^0.18.0",
|
||||
"archiver": "^5.3.0",
|
||||
"chalk": "^5.0.1",
|
||||
"chokidar": "^3.5.3",
|
||||
|
@ -59,7 +59,7 @@
|
||||
"perfect-debounce": "^0.1.3",
|
||||
"scule": "^0.2.1",
|
||||
"ufo": "^0.8.1",
|
||||
"unimport": "^0.1.0",
|
||||
"unimport": "^0.1.1",
|
||||
"unplugin": "^0.5.2",
|
||||
"untyped": "^0.4.3",
|
||||
"vue": "^3.2.31",
|
||||
|
@ -26,11 +26,11 @@ describe('auto-imports:transform', () => {
|
||||
|
||||
it('should correct inject', async () => {
|
||||
expect(await transform('const a = ref(0)')).toMatchInlineSnapshot('"import { ref } from \'vue\';const a = ref(0)"')
|
||||
expect(await transform('import { computed as ref } from "foo"; const a = ref(0)')).to.toMatchInlineSnapshot('"import { computed } from \'bar\';import { computed as ref } from \\"foo\\"; const a = ref(0)"')
|
||||
})
|
||||
|
||||
it('should ignore existing imported', async () => {
|
||||
expect(await transform('import { ref } from "foo"; const a = ref(0)')).to.equal(null)
|
||||
expect(await transform('import { computed as ref } from "foo"; const a = ref(0)')).to.equal(null)
|
||||
expect(await transform('import ref from "foo"; const a = ref(0)')).to.equal(null)
|
||||
expect(await transform('import { z as ref } from "foo"; const a = ref(0)')).to.equal(null)
|
||||
expect(await transform('let ref = () => {}; const a = ref(0)')).to.equal(null)
|
||||
|
@ -19,7 +19,7 @@
|
||||
"unbuild": "latest"
|
||||
},
|
||||
"dependencies": {
|
||||
"c12": "^0.2.3",
|
||||
"c12": "^0.2.4",
|
||||
"create-require": "^1.1.1",
|
||||
"defu": "^6.0.0",
|
||||
"jiti": "^1.13.0",
|
||||
@ -28,7 +28,7 @@
|
||||
"scule": "^0.2.1",
|
||||
"std-env": "^3.0.1",
|
||||
"ufo": "^0.8.1",
|
||||
"unimport": "^0.1.0"
|
||||
"unimport": "^0.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
||||
|
@ -24,7 +24,7 @@
|
||||
"devDependencies": {
|
||||
"playwright": "^1.20.0",
|
||||
"unbuild": "latest",
|
||||
"vitest": "^0.7.4"
|
||||
"vitest": "^0.7.7"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.31"
|
||||
|
@ -24,7 +24,7 @@
|
||||
"@vitejs/plugin-vue-jsx": "^1.3.8",
|
||||
"autoprefixer": "^10.4.4",
|
||||
"chokidar": "^3.5.3",
|
||||
"cssnano": "^5.1.4",
|
||||
"cssnano": "^5.1.5",
|
||||
"defu": "^6.0.0",
|
||||
"esbuild": "^0.14.27",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
@ -44,7 +44,7 @@
|
||||
"ufo": "^0.8.1",
|
||||
"unplugin": "^0.5.2",
|
||||
"vite": "^2.8.6",
|
||||
"vite-node": "^0.7.4"
|
||||
"vite-node": "^0.7.7"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "3.2.31"
|
||||
|
@ -16,13 +16,13 @@
|
||||
"prepack": "unbuild"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.17.7",
|
||||
"@babel/core": "^7.17.8",
|
||||
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
|
||||
"@nuxt/kit": "3.0.0",
|
||||
"autoprefixer": "^10.4.4",
|
||||
"css-loader": "^6.7.1",
|
||||
"css-minimizer-webpack-plugin": "^3.4.1",
|
||||
"cssnano": "^5.1.4",
|
||||
"cssnano": "^5.1.5",
|
||||
"esbuild-loader": "^2.18.0",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"file-loader": "^6.2.0",
|
||||
|
Loading…
Reference in New Issue
Block a user