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

Co-authored-by: Pooya Parsa <pyapar@gmail.com>
This commit is contained in:
renovate[bot] 2021-06-07 11:12:36 +02:00 committed by GitHub
parent 48b3c75194
commit 7d2cd2f356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 600 additions and 589 deletions

3
.gitignore vendored
View File

@ -14,7 +14,8 @@ package-lock.json
.cache
# Yarn
.yarn
**/.yarn/cache
**/.yarn/*state*
# Generated dirs
dist

File diff suppressed because one or more lines are too long

View File

@ -6,4 +6,4 @@ plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-2.4.1.cjs
yarnPath: .yarn/releases/yarn-2.4.2.cjs

View File

@ -18,9 +18,9 @@
"remark-rehype": "^8.1.0",
"unified": "^9.2.1",
"untyped": "^0.2.5",
"vite": "^2.3.3",
"vite-plugin-windicss": "^0.16.0",
"windicss": "^3.0.10",
"windicss-webpack-plugin": "^0.6.1"
"vite": "^2.3.6",
"vite-plugin-windicss": "^0.17.1",
"windicss": "^3.1.1",
"windicss-webpack-plugin": "^0.6.2"
}
}

View File

@ -21,23 +21,22 @@
"version": "yarn && git add yarn.lock"
},
"resolutions": {
"esbuild": "0.10.2",
"nuxt3": "workspace:./packages/nuxt3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.0",
"@types/node": "^14.17.2",
"@types/object-hash": "^2",
"eslint": "^7.27.0",
"eslint": "^7.28.0",
"eslint-plugin-jsdoc": "^34.8.2",
"jest": "^26.6.3",
"jiti": "^1.9.2",
"jiti": "^1.10.1",
"lerna": "^4.0.0",
"object-hash": "^2.1.1",
"object-hash": "^2.2.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"typescript": "^4.3.2",
"unbuild": "^0.3.0"
}
}

View File

@ -20,7 +20,7 @@
"prepack": "unbuild"
},
"dependencies": {
"@vueuse/head": "^0.5.1",
"@vueuse/head": "^0.6.0",
"hookable": "^4.4.1",
"ohmyfetch": "^0.2.0",
"vue": "^3.0.11",

View File

@ -22,7 +22,7 @@
"dotenv": "^10.0.0",
"globby": "^11.0.3",
"hash-sum": "^2.0.0",
"jiti": "^1.9.2",
"jiti": "^1.10.1",
"rc9": "^1.2.0",
"scule": "^0.2.1",
"std-env": "^2.3.0",

View File

@ -13,7 +13,7 @@
"prepack": "unbuild"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.1.1",
"@cloudflare/kv-asset-handler": "^0.1.2",
"@netlify/functions": "^0.7.2",
"@nuxt/devalue": "^1.2.5",
"@nuxt/kit": "^0.6.2",
@ -26,7 +26,7 @@
"@rollup/plugin-virtual": "^2.0.3",
"@rollup/pluginutils": "^4.1.0",
"@types/jsdom": "^16.2.10",
"@vercel/nft": "^0.12.2",
"@vercel/nft": "^0.13.1",
"@vue/server-renderer": "^3.0.11",
"archiver": "^5.3.0",
"chalk": "^4.1.1",
@ -37,7 +37,7 @@
"defu": "^5.0.0",
"destr": "^1.1.0",
"dot-prop": "^6.0.1",
"esbuild": "^0.10.0",
"esbuild": "^0.12.6",
"etag": "^1.8.1",
"fs-extra": "^10.0.0",
"globby": "^11.0.3",
@ -47,14 +47,14 @@
"hookable": "^4.4.1",
"http-proxy": "^1.18.1",
"is-primitive": "^3.0.1",
"jiti": "^1.9.2",
"jiti": "^1.10.1",
"listhen": "^0.2.4",
"mime": "^2.5.2",
"node-fetch": "^2.6.1",
"ohmyfetch": "^0.2.0",
"ora": "^5.4.0",
"pretty-bytes": "^5.6.0",
"rollup": "^2.49.0",
"rollup": "^2.51.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"serve-placeholder": "^1.2.3",
@ -63,11 +63,11 @@
"table": "^6.7.1",
"ufo": "^0.7.5",
"unenv": "^0.2.3",
"unstorage": "^0.1.5",
"unstorage": "^0.2.2",
"upath": "^2.0.1",
"vue": "3.0.11",
"vue-bundle-renderer": "^0.2.3",
"vue-server-renderer": "^2.6.12"
"vue-server-renderer": "^2.6.13"
},
"devDependencies": {
"@types/debounce": "^1.2.0",

View File

@ -79,6 +79,7 @@ export function getAsset (id) {
const id = assetdir + '/' + _id
assets[id] = { fsPath, meta: {} }
if (dirOpts.meta) {
// @ts-ignore TODO: Use mime@2 types
let type = mime.getType(id) || 'text/plain'
if (type.startsWith('text')) { type += '; charset=utf-8' }
const etag = createEtag(await fsp.readFile(fsPath))

View File

@ -16,14 +16,14 @@
},
"dependencies": {
"@nuxt/kit": "^0.6.2",
"@vitejs/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.0.11",
"chokidar": "^3.5.1",
"consola": "^2.15.3",
"debounce": "^1.2.1",
"fs-extra": "^10.0.0",
"upath": "^2.0.1",
"vite": "^2.3.3",
"vite": "^2.3.6",
"vue": "3.0.11"
}
}

View File

@ -18,8 +18,8 @@
"@vue/compiler-sfc": "^3.0.11",
"babel-loader": "^8.2.2",
"consola": "^2.15.3",
"css-loader": "^5.2.5",
"css-minimizer-webpack-plugin": "^3.0.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"esbuild-loader": "^2.13.1",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
@ -39,7 +39,7 @@
"vue": "3.0.11",
"vue-loader": "^16.2.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.37.1",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-middleware": "^4.3.0",
"webpack-hot-middleware": "^2.25.0",

1126
yarn.lock

File diff suppressed because it is too large Load Diff