mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 05:35:13 +00:00
chore(deps): update all non-major dependencies (#5085)
This commit is contained in:
parent
9379606222
commit
c071b1eb90
@ -25,6 +25,6 @@
|
||||
"vue-plausible": "^1.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"three": "^0.140.2"
|
||||
"three": "^0.141.0"
|
||||
}
|
||||
}
|
||||
|
@ -10842,10 +10842,10 @@ thread-loader@^3.0.4:
|
||||
neo-async "^2.6.2"
|
||||
schema-utils "^3.0.0"
|
||||
|
||||
three@^0.140.2:
|
||||
version "0.140.2"
|
||||
resolved "https://registry.yarnpkg.com/three/-/three-0.140.2.tgz#ca0b7390d1ce4f7f2850e80afd00ef48fc244491"
|
||||
integrity sha512-DdT/AHm/TbZXEhQKQpGt5/iSgBrmXpjU26FNtj1KhllVPTKj1eG4X/ShyD5W2fngE+I1s1wa4ttC4C3oCJt7Ag==
|
||||
three@^0.141.0:
|
||||
version "0.141.0"
|
||||
resolved "https://registry.yarnpkg.com/three/-/three-0.141.0.tgz#16677a12b9dd0c3e1568ebad0fd09de15d5a8216"
|
||||
integrity sha512-JaSDAPWuk4RTzG5BYRQm8YZbERUxTfTDVouWgHMisS2to4E5fotMS9F2zPFNOIJyEFTTQDDKPpsgZVThKU3pXA==
|
||||
|
||||
through2@^2.0.0:
|
||||
version "2.0.5"
|
||||
|
12
package.json
12
package.json
@ -48,11 +48,11 @@
|
||||
"@nuxtjs/eslint-config-typescript": "^10.0.0",
|
||||
"@types/node": "^16.11.36",
|
||||
"@types/rimraf": "^3",
|
||||
"@unocss/reset": "^0.34.0",
|
||||
"@unocss/reset": "^0.35.2",
|
||||
"case-police": "^0.5.3",
|
||||
"changelogen": "^0.0.6",
|
||||
"eslint": "^8.15.0",
|
||||
"eslint-plugin-jsdoc": "^39.3.0",
|
||||
"eslint": "^8.16.0",
|
||||
"eslint-plugin-jsdoc": "^39.3.2",
|
||||
"execa": "^6.1.0",
|
||||
"expect-type": "^0.13.0",
|
||||
"globby": "^13.1.1",
|
||||
@ -61,10 +61,10 @@
|
||||
"markdownlint-cli": "^0.31.1",
|
||||
"pathe": "^0.3.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "^4.6.4",
|
||||
"typescript": "^4.7.2",
|
||||
"unbuild": "^0.7.4",
|
||||
"vitest": "^0.12.7",
|
||||
"vue-tsc": "^0.34.15"
|
||||
"vitest": "^0.13.0",
|
||||
"vue-tsc": "^0.35.0"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1",
|
||||
"engines": {
|
||||
|
@ -29,7 +29,7 @@
|
||||
"scule": "^0.2.1",
|
||||
"semver": "^7.3.7",
|
||||
"unctx": "^1.1.4",
|
||||
"unimport": "^0.2.1",
|
||||
"unimport": "^0.2.5",
|
||||
"untyped": "^0.4.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -36,8 +36,8 @@
|
||||
"@nuxt/telemetry": "^2.1.3",
|
||||
"@nuxt/ui-templates": "^0.1.1",
|
||||
"@nuxt/vite-builder": "^3.0.0-rc.3",
|
||||
"@vue/reactivity": "^3.2.34",
|
||||
"@vue/shared": "^3.2.34",
|
||||
"@vue/reactivity": "^3.2.36",
|
||||
"@vue/shared": "^3.2.36",
|
||||
"@vueuse/head": "^0.7.6",
|
||||
"chokidar": "^3.5.3",
|
||||
"cookie-es": "^0.5.0",
|
||||
@ -62,10 +62,10 @@
|
||||
"ufo": "^0.8.4",
|
||||
"unctx": "^1.1.4",
|
||||
"unenv": "^0.5.2",
|
||||
"unimport": "^0.2.1",
|
||||
"unimport": "^0.2.5",
|
||||
"unplugin": "^0.6.3",
|
||||
"untyped": "^0.4.4",
|
||||
"vue": "^3.2.34",
|
||||
"vue": "^3.2.36",
|
||||
"vue-bundle-renderer": "^0.3.8",
|
||||
"vue-router": "^4.0.15"
|
||||
},
|
||||
|
@ -25,7 +25,7 @@ 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('const a = ref(0)')).toMatchInlineSnapshot('"import { ref } from \'vue\';\nconst a = ref(0)"')
|
||||
})
|
||||
|
||||
it('should ignore existing imported', async () => {
|
||||
@ -41,7 +41,8 @@ describe('auto-imports:transform', () => {
|
||||
it('should ignore comments', async () => {
|
||||
const result = await transform('// import { computed } from "foo"\n;const a = computed(0)')
|
||||
expect(result).toMatchInlineSnapshot(`
|
||||
"import { computed } from 'bar';// import { computed } from \\"foo\\"
|
||||
"import { computed } from 'bar';
|
||||
// import { computed } from \\"foo\\"
|
||||
;const a = computed(0)"
|
||||
`)
|
||||
})
|
||||
|
@ -28,7 +28,7 @@
|
||||
"scule": "^0.2.1",
|
||||
"std-env": "^3.1.1",
|
||||
"ufo": "^0.8.4",
|
||||
"unimport": "^0.2.1"
|
||||
"unimport": "^0.2.5"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
||||
|
@ -22,12 +22,12 @@
|
||||
"ohmyfetch": "^0.4.18"
|
||||
},
|
||||
"devDependencies": {
|
||||
"playwright": "^1.22.1",
|
||||
"playwright": "^1.22.2",
|
||||
"unbuild": "latest",
|
||||
"vitest": "^0.12.7"
|
||||
"vitest": "^0.13.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.34"
|
||||
"vue": "^3.2.36"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
||||
|
@ -16,7 +16,7 @@
|
||||
"@nuxt/schema": "^3.0.0-rc.3",
|
||||
"@types/cssnano": "^5",
|
||||
"unbuild": "latest",
|
||||
"vue": "3.2.34"
|
||||
"vue": "3.2.36"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "^3.0.0-rc.3",
|
||||
@ -25,9 +25,9 @@
|
||||
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
||||
"autoprefixer": "^10.4.7",
|
||||
"chokidar": "^3.5.3",
|
||||
"cssnano": "^5.1.8",
|
||||
"cssnano": "^5.1.9",
|
||||
"defu": "^6.0.0",
|
||||
"esbuild": "^0.14.39",
|
||||
"esbuild": "^0.14.42",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"externality": "^0.2.2",
|
||||
"fs-extra": "^10.1.0",
|
||||
@ -41,16 +41,16 @@
|
||||
"postcss": "^8.4.14",
|
||||
"postcss-import": "^14.1.0",
|
||||
"postcss-url": "^10.1.3",
|
||||
"rollup": "^2.74.1",
|
||||
"rollup": "^2.75.1",
|
||||
"rollup-plugin-visualizer": "^5.6.0",
|
||||
"ufo": "^0.8.4",
|
||||
"unplugin": "^0.6.3",
|
||||
"vite": "^2.9.9",
|
||||
"vite-node": "^0.12.7",
|
||||
"vite-node": "^0.13.0",
|
||||
"vite-plugin-checker": "^0.4.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.34"
|
||||
"vue": "^3.2.36"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
||||
|
@ -16,13 +16,13 @@
|
||||
"prepack": "unbuild"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.18.0",
|
||||
"@babel/core": "^7.18.2",
|
||||
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
|
||||
"@nuxt/kit": "^3.0.0-rc.3",
|
||||
"autoprefixer": "^10.4.7",
|
||||
"css-loader": "^6.7.1",
|
||||
"css-minimizer-webpack-plugin": "^4.0.0",
|
||||
"cssnano": "^5.1.8",
|
||||
"cssnano": "^5.1.9",
|
||||
"esbuild-loader": "^2.19.0",
|
||||
"escape-string-regexp": "^5.0.0",
|
||||
"file-loader": "^6.2.0",
|
||||
@ -31,7 +31,7 @@
|
||||
"hash-sum": "^2.0.0",
|
||||
"lodash-es": "^4.17.21",
|
||||
"magic-string": "^0.26.2",
|
||||
"memfs": "^3.4.3",
|
||||
"memfs": "^3.4.4",
|
||||
"mini-css-extract-plugin": "^2.6.0",
|
||||
"mlly": "^0.5.2",
|
||||
"pathe": "^0.3.0",
|
||||
@ -62,10 +62,10 @@
|
||||
"@types/webpack-hot-middleware": "^2.25.6",
|
||||
"@types/webpack-virtual-modules": "^0",
|
||||
"unbuild": "latest",
|
||||
"vue": "3.2.34"
|
||||
"vue": "3.2.36"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.34"
|
||||
"vue": "^3.2.36"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0"
|
||||
|
Loading…
Reference in New Issue
Block a user