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

This commit is contained in:
renovate[bot] 2022-03-08 18:17:01 +01:00 committed by GitHub
parent 02e683d33f
commit 5b7fbc1569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 463 additions and 438 deletions

View File

@ -23,6 +23,6 @@
"vue-plausible": "^1.3.1" "vue-plausible": "^1.3.1"
}, },
"dependencies": { "dependencies": {
"three": "^0.138.0" "three": "^0.138.3"
} }
} }

View File

@ -10598,10 +10598,10 @@ thread-loader@^3.0.4:
neo-async "^2.6.2" neo-async "^2.6.2"
schema-utils "^3.0.0" schema-utils "^3.0.0"
three@^0.138.0: three@^0.138.3:
version "0.138.0" version "0.138.3"
resolved "https://registry.yarnpkg.com/three/-/three-0.138.0.tgz#cd0cbeb621a5826c65e49e06705d0bb9f6c13ca6" resolved "https://registry.yarnpkg.com/three/-/three-0.138.3.tgz#7be5153d79dcbf9e9baad82e7faf8c29edda4ed0"
integrity sha512-xM/WwUd53ClkbHFrftW29aIzMVvyhj4rSZmIVgn6hZ/kYB7aMjDD8FFy4VJamygXSrldJuOgEJuaI+E+8mt/KA== integrity sha512-4t1cKC8gimNyJChJbaklg8W/qj3PpsLJUIFm5LIuAy/hVxxNm1ru2FGTSfbTSsuHmC/7ipsyuGKqrSAKLNtkzg==
through2@^2.0.0: through2@^2.0.0:
version "2.0.5" version "2.0.5"

View File

@ -40,10 +40,10 @@
"@types/jsdom": "^16", "@types/jsdom": "^16",
"@types/node": "^16.11.26", "@types/node": "^16.11.26",
"@types/object-hash": "^2", "@types/object-hash": "^2",
"@unocss/reset": "^0.26.4", "@unocss/reset": "^0.27.2",
"esbuild": "^0.14.23", "esbuild": "^0.14.25",
"eslint": "^8.10.0", "eslint": "^8.10.0",
"eslint-plugin-jsdoc": "^37.9.5", "eslint-plugin-jsdoc": "^37.9.7",
"execa": "^6.1.0", "execa": "^6.1.0",
"expect-type": "^0.13.0", "expect-type": "^0.13.0",
"globby": "^13.1.1", "globby": "^13.1.1",
@ -53,11 +53,11 @@
"miniflare": "^1.4.1", "miniflare": "^1.4.1",
"object-hash": "^3.0.0", "object-hash": "^3.0.0",
"pathe": "^0.2.0", "pathe": "^0.2.0",
"typescript": "^4.5.5", "typescript": "^4.6.2",
"unbuild": "^0.6.9", "unbuild": "^0.6.9",
"vitest": "^0.5.8", "vitest": "^0.6.0",
"vue-router": "^4.0.13", "vue-router": "^4.0.13",
"vue-tsc": "^0.32.0" "vue-tsc": "^0.32.1"
}, },
"engines": { "engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0" "node": "^14.16.0 || ^16.11.0 || ^17.0.0"

View File

@ -14,7 +14,7 @@
}, },
"dependencies": { "dependencies": {
"@nuxt/schema": "^3.0.0", "@nuxt/schema": "^3.0.0",
"c12": "^0.1.3", "c12": "^0.1.4",
"consola": "^2.15.3", "consola": "^2.15.3",
"defu": "^5.0.1", "defu": "^5.0.1",
"globby": "^13.1.1", "globby": "^13.1.1",

View File

@ -32,7 +32,7 @@ export function defineNuxtModule<OptionsT extends ModuleOptions> (definition: Mo
// Resolves module options from inline options, [configKey] in nuxt.config, defaults and schema // Resolves module options from inline options, [configKey] in nuxt.config, defaults and schema
function getOptions (inlineOptions?: OptionsT, nuxt: Nuxt = useNuxt()) { function getOptions (inlineOptions?: OptionsT, nuxt: Nuxt = useNuxt()) {
const configKey = definition.meta.configKey || definition.meta.name const configKey = definition.meta.configKey || definition.meta.name
const _defaults = typeof definition.defaults === 'function' ? definition.defaults(nuxt) : definition.defaults const _defaults = definition.defaults instanceof Function ? definition.defaults(nuxt) : definition.defaults
let _options = defu(inlineOptions, nuxt.options[configKey], _defaults) as OptionsT let _options = defu(inlineOptions, nuxt.options[configKey], _defaults) as OptionsT
if (definition.schema) { if (definition.schema) {
_options = applyDefaults(definition.schema, _options) as OptionsT _options = applyDefaults(definition.schema, _options) as OptionsT

View File

@ -26,7 +26,7 @@
"@rollup/plugin-replace": "^4.0.0", "@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-virtual": "^2.1.0", "@rollup/plugin-virtual": "^2.1.0",
"@rollup/plugin-wasm": "^5.1.2", "@rollup/plugin-wasm": "^5.1.2",
"@rollup/pluginutils": "^4.1.2", "@rollup/pluginutils": "^4.2.0",
"@types/jsdom": "^16.2.14", "@types/jsdom": "^16.2.14",
"@vercel/nft": "^0.17.5", "@vercel/nft": "^0.17.5",
"archiver": "^5.3.0", "archiver": "^5.3.0",
@ -37,7 +37,7 @@
"defu": "^5.0.1", "defu": "^5.0.1",
"destr": "^1.1.0", "destr": "^1.1.0",
"dot-prop": "^7.2.0", "dot-prop": "^7.2.0",
"esbuild": "^0.14.23", "esbuild": "^0.14.25",
"etag": "^1.8.1", "etag": "^1.8.1",
"fs-extra": "^10.0.1", "fs-extra": "^10.0.1",
"globby": "^13.1.1", "globby": "^13.1.1",
@ -52,14 +52,14 @@
"listhen": "^0.2.6", "listhen": "^0.2.6",
"mime": "^3.0.0", "mime": "^3.0.0",
"mlly": "^0.4.3", "mlly": "^0.4.3",
"node-fetch": "^3.2.0", "node-fetch": "^3.2.2",
"ohmyfetch": "^0.4.15", "ohmyfetch": "^0.4.15",
"ora": "^6.1.0", "ora": "^6.1.0",
"p-debounce": "^4.0.0", "p-debounce": "^4.0.0",
"pathe": "^0.2.0", "pathe": "^0.2.0",
"pkg-types": "^0.3.2", "pkg-types": "^0.3.2",
"pretty-bytes": "^6.0.0", "pretty-bytes": "^6.0.0",
"rollup": "^2.68.0", "rollup": "^2.70.0",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.6.0", "rollup-plugin-visualizer": "^5.6.0",
"serve-placeholder": "^1.2.4", "serve-placeholder": "^1.2.4",
@ -74,7 +74,7 @@
}, },
"devDependencies": { "devDependencies": {
"@nuxt/schema": "3.0.0", "@nuxt/schema": "3.0.0",
"@types/aws-lambda": "^8.10.92", "@types/aws-lambda": "^8.10.93",
"@types/etag": "^1.8.1", "@types/etag": "^1.8.1",
"@types/fs-extra": "^9.0.13", "@types/fs-extra": "^9.0.13",
"@types/http-proxy": "^1.17.8", "@types/http-proxy": "^1.17.8",

View File

@ -49,7 +49,7 @@
"hash-sum": "^2.0.0", "hash-sum": "^2.0.0",
"hookable": "^5.1.1", "hookable": "^5.1.1",
"knitwork": "^0.1.0", "knitwork": "^0.1.0",
"magic-string": "^0.26.0", "magic-string": "^0.26.1",
"mlly": "^0.4.3", "mlly": "^0.4.3",
"murmurhash-es": "^0.1.1", "murmurhash-es": "^0.1.1",
"nitropack": "npm:nitropack-edge@latest", "nitropack": "npm:nitropack-edge@latest",
@ -58,7 +58,7 @@
"pathe": "^0.2.0", "pathe": "^0.2.0",
"scule": "^0.2.1", "scule": "^0.2.1",
"ufo": "^0.7.11", "ufo": "^0.7.11",
"unplugin": "^0.3.3", "unplugin": "^0.4.0",
"vue": "^3.2.31", "vue": "^3.2.31",
"vue-router": "^4.0.13" "vue-router": "^4.0.13"
}, },

View File

@ -19,7 +19,7 @@
"unbuild": "latest" "unbuild": "latest"
}, },
"dependencies": { "dependencies": {
"c12": "^0.1.3", "c12": "^0.1.4",
"create-require": "^1.1.1", "create-require": "^1.1.1",
"defu": "^5.0.1", "defu": "^5.0.1",
"jiti": "^1.13.0", "jiti": "^1.13.0",

View File

@ -24,7 +24,7 @@
"devDependencies": { "devDependencies": {
"playwright": "^1.19.2", "playwright": "^1.19.2",
"unbuild": "latest", "unbuild": "latest",
"vitest": "^0.5.8" "vitest": "^0.6.0"
}, },
"peerDependencies": { "peerDependencies": {
"vue": "3.2.31" "vue": "3.2.31"

View File

@ -24,15 +24,15 @@
"@vitejs/plugin-vue-jsx": "^1.3.8", "@vitejs/plugin-vue-jsx": "^1.3.8",
"autoprefixer": "^10.4.2", "autoprefixer": "^10.4.2",
"chokidar": "^3.5.3", "chokidar": "^3.5.3",
"cssnano": "^5.0.17", "cssnano": "^5.1.0",
"defu": "^5.0.1", "defu": "^5.0.1",
"esbuild": "^0.14.23", "esbuild": "^0.14.25",
"escape-string-regexp": "^5.0.0", "escape-string-regexp": "^5.0.0",
"externality": "^0.1.6", "externality": "^0.1.6",
"fs-extra": "^10.0.1", "fs-extra": "^10.0.1",
"get-port-please": "^2.4.3", "get-port-please": "^2.4.3",
"knitwork": "^0.1.0", "knitwork": "^0.1.0",
"magic-string": "^0.26.0", "magic-string": "^0.26.1",
"mlly": "^0.4.3", "mlly": "^0.4.3",
"p-debounce": "^4.0.0", "p-debounce": "^4.0.0",
"pathe": "^0.2.0", "pathe": "^0.2.0",
@ -42,8 +42,8 @@
"rollup": "^2.68.0", "rollup": "^2.68.0",
"rollup-plugin-visualizer": "^5.6.0", "rollup-plugin-visualizer": "^5.6.0",
"ufo": "^0.7.11", "ufo": "^0.7.11",
"unplugin": "^0.3.3", "unplugin": "^0.4.0",
"vite": "^2.8.5" "vite": "^2.8.6"
}, },
"peerDependencies": { "peerDependencies": {
"vue": "3.2.31" "vue": "3.2.31"

View File

@ -20,9 +20,9 @@
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2", "@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"@nuxt/kit": "3.0.0", "@nuxt/kit": "3.0.0",
"autoprefixer": "^10.4.2", "autoprefixer": "^10.4.2",
"css-loader": "^6.6.0", "css-loader": "^6.7.0",
"css-minimizer-webpack-plugin": "^3.4.1", "css-minimizer-webpack-plugin": "^3.4.1",
"cssnano": "^5.0.17", "cssnano": "^5.1.0",
"esbuild-loader": "^2.18.0", "esbuild-loader": "^2.18.0",
"escape-string-regexp": "^5.0.0", "escape-string-regexp": "^5.0.0",
"file-loader": "^6.2.0", "file-loader": "^6.2.0",
@ -31,22 +31,22 @@
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"magic-string": "^0.26.0", "magic-string": "^0.26.0",
"memfs": "^3.4.1", "memfs": "^3.4.1",
"mini-css-extract-plugin": "^2.5.3", "mini-css-extract-plugin": "^2.6.0",
"mlly": "^0.4.3", "mlly": "^0.4.3",
"pathe": "^0.2.0", "pathe": "^0.2.0",
"pify": "^5.0.0", "pify": "^5.0.0",
"postcss": "^8.4.7", "postcss": "^8.4.8",
"postcss-import": "^14.0.2", "postcss-import": "^14.0.2",
"postcss-loader": "^6.2.1", "postcss-loader": "^6.2.1",
"postcss-url": "^10.1.3", "postcss-url": "^10.1.3",
"style-resources-loader": "^1.5.0", "style-resources-loader": "^1.5.0",
"time-fix-plugin": "^2.0.7", "time-fix-plugin": "^2.0.7",
"ufo": "^0.7.11", "ufo": "^0.7.11",
"unplugin": "^0.3.3", "unplugin": "^0.4.0",
"url-loader": "^4.1.1", "url-loader": "^4.1.1",
"vue-loader": "^17.0.0", "vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3", "vue-style-loader": "^4.1.3",
"webpack": "^5.69.1", "webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0", "webpack-bundle-analyzer": "^4.5.0",
"webpack-dev-middleware": "^5.3.1", "webpack-dev-middleware": "^5.3.1",
"webpack-hot-middleware": "^2.25.1", "webpack-hot-middleware": "^2.25.1",

835
yarn.lock

File diff suppressed because it is too large Load Diff