mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 23:22:02 +00:00
chore: release
- @nuxt/app@0.5.0 - nuxt-cli@0.3.8 - @nuxt/component-discovery@0.2.0 - @nuxt/kit@0.6.4 - @nuxt/nitro@0.9.1 - nuxt3@0.8.0 - @nuxt/pages@0.3.0 - @nuxt/vite-builder@0.5.0 - @nuxt/webpack-builder@0.5.0
This commit is contained in:
parent
c124967d8c
commit
9797642d78
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.5.0](https://github.com/nuxt/framework/compare/@nuxt/app@0.4.3...@nuxt/app@0.5.0) (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **app:** add 'inject' param for nuxt3 plugins ([#226](https://github.com/nuxt/framework/issues/226)) ([62b19c6](https://github.com/nuxt/framework/commit/62b19c63f33bb8d6f208c934dc1cb16390992459))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **app:** `defineNuxtPlugin` + legacy plugin handling ([#237](https://github.com/nuxt/framework/issues/237)) ([f843568](https://github.com/nuxt/framework/commit/f8435681d4e487ef2446956f557888401dd99d04))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.4.3](https://github.com/nuxt/framework/compare/@nuxt/app@0.4.2...@nuxt/app@0.4.3) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/app",
|
||||
"version": "0.4.3",
|
||||
"version": "0.5.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
|
@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.3.8](https://github.com/nuxt/framework/compare/nuxt-cli@0.3.7...nuxt-cli@0.3.8) (2021-06-24)
|
||||
|
||||
**Note:** Version bump only for package nuxt-cli
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.3.7](https://github.com/nuxt/framework/compare/nuxt-cli@0.3.6...nuxt-cli@0.3.7) (2021-06-16)
|
||||
|
||||
**Note:** Version bump only for package nuxt-cli
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nuxt-cli",
|
||||
"version": "0.3.7",
|
||||
"version": "0.3.8",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"main": "./dist/index.js",
|
||||
@ -20,7 +20,7 @@
|
||||
"fsevents": "~2.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"@types/clear": "^0",
|
||||
"@types/debounce-promise": "^3",
|
||||
"@types/mri": "^1.1.0",
|
||||
|
17
packages/components/CHANGELOG.md
Normal file
17
packages/components/CHANGELOG.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# 0.2.0 (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **components:** don't ascend directories ([#251](https://github.com/nuxt/framework/issues/251)) ([01b2c2c](https://github.com/nuxt/framework/commit/01b2c2c9726f0026a6618e83756122b3b81973ee))
|
||||
* **components:** remove invalid chars from component names ([#253](https://github.com/nuxt/framework/issues/253)) ([c124967](https://github.com/nuxt/framework/commit/c124967d8ceb5359ae69390716ae2289d0b459ce))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* components discovery ([#243](https://github.com/nuxt/framework/issues/243)) ([a0f81cd](https://github.com/nuxt/framework/commit/a0f81cd1fbdfae8d8eabc8e015b7635bdaa93575))
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/component-discovery",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"types": "./dist/module.d.ts",
|
||||
@ -12,7 +12,7 @@
|
||||
"prepack": "unbuild"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"globby": "^11.0.4",
|
||||
"scule": "^0.2.1",
|
||||
"ufo": "^0.7.5",
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.6.4](https://github.com/nuxt/framework/compare/@nuxt/kit@0.6.3...@nuxt/kit@0.6.4) (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **nitro:** update nitro internal hook name ([#218](https://github.com/nuxt/framework/issues/218)) ([77e489a](https://github.com/nuxt/framework/commit/77e489aae37ce1bc8ad12e20b7a4dc3d6f1085a7))
|
||||
* **types:** type vite options ([#235](https://github.com/nuxt/framework/issues/235)) ([3e855c2](https://github.com/nuxt/framework/commit/3e855c280f01e373f136d1f0e35ff2dd66fdb3d9))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.6.3](https://github.com/nuxt/framework/compare/@nuxt/kit@0.6.2...@nuxt/kit@0.6.3) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/kit",
|
||||
"version": "0.6.3",
|
||||
"version": "0.6.4",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"main": "./dist/index.js",
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [0.9.1](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.9.0...@nuxt/nitro@0.9.1) (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use nitro plugin with explicit mjs extension ([1ed3387](https://github.com/nuxt/framework/commit/1ed33872433bc0d4d370fa8a9b35833793ee4bdb))
|
||||
* **nitro:** update nitro internal hook name ([#218](https://github.com/nuxt/framework/issues/218)) ([77e489a](https://github.com/nuxt/framework/commit/77e489aae37ce1bc8ad12e20b7a4dc3d6f1085a7))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [0.9.0](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.8.0...@nuxt/nitro@0.9.0) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/nitro",
|
||||
"version": "0.9.0",
|
||||
"version": "0.9.1",
|
||||
"license": "MIT",
|
||||
"main": "dist/index.js",
|
||||
"types": "./types/index.d.ts",
|
||||
@ -16,7 +16,7 @@
|
||||
"@cloudflare/kv-asset-handler": "^0.1.3",
|
||||
"@netlify/functions": "^0.7.2",
|
||||
"@nuxt/devalue": "^1.2.5",
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"@rollup/plugin-alias": "^3.1.2",
|
||||
"@rollup/plugin-commonjs": "^19.0.0",
|
||||
"@rollup/plugin-inject": "^4.0.2",
|
||||
|
@ -3,6 +3,23 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.8.0](https://github.com/nuxt/framework/compare/nuxt3@0.7.4...nuxt3@0.8.0) (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* use nitro plugin with explicit mjs extension ([1ed3387](https://github.com/nuxt/framework/commit/1ed33872433bc0d4d370fa8a9b35833793ee4bdb))
|
||||
* **nitro:** update nitro internal hook name ([#218](https://github.com/nuxt/framework/issues/218)) ([77e489a](https://github.com/nuxt/framework/commit/77e489aae37ce1bc8ad12e20b7a4dc3d6f1085a7))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* components discovery ([#243](https://github.com/nuxt/framework/issues/243)) ([a0f81cd](https://github.com/nuxt/framework/commit/a0f81cd1fbdfae8d8eabc8e015b7635bdaa93575))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.7.4](https://github.com/nuxt/framework/compare/nuxt3@0.7.3...nuxt3@0.7.4) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nuxt3",
|
||||
"version": "0.7.4",
|
||||
"version": "0.8.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"main": "./dist/index.js",
|
||||
@ -17,13 +17,13 @@
|
||||
"nuxt-cli": "./bin/nuxt.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/app": "^0.4.3",
|
||||
"@nuxt/component-discovery": "^0.1.0",
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/nitro": "^0.9.0",
|
||||
"@nuxt/pages": "^0.2.3",
|
||||
"@nuxt/vite-builder": "^0.4.3",
|
||||
"@nuxt/webpack-builder": "^0.4.3",
|
||||
"@nuxt/app": "^0.5.0",
|
||||
"@nuxt/component-discovery": "^0.2.0",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"@nuxt/nitro": "^0.9.1",
|
||||
"@nuxt/pages": "^0.3.0",
|
||||
"@nuxt/vite-builder": "^0.5.0",
|
||||
"@nuxt/webpack-builder": "^0.5.0",
|
||||
"chokidar": "^3.5.2",
|
||||
"consola": "^2.15.3",
|
||||
"defu": "^5.0.0",
|
||||
@ -33,7 +33,7 @@
|
||||
"hookable": "^4.4.1",
|
||||
"ignore": "^5.1.8",
|
||||
"lodash": "^4.17.21",
|
||||
"nuxt-cli": "^0.3.7",
|
||||
"nuxt-cli": "^0.3.8",
|
||||
"scule": "^0.2.1",
|
||||
"ufo": "^0.7.5",
|
||||
"upath": "^2.0.1",
|
||||
|
@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.3.0](https://github.com/nuxt/framework/compare/@nuxt/pages@0.2.3...@nuxt/pages@0.3.0) (2021-06-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **app:** `defineNuxtPlugin` + legacy plugin handling ([#237](https://github.com/nuxt/framework/issues/237)) ([f843568](https://github.com/nuxt/framework/commit/f8435681d4e487ef2446956f557888401dd99d04))
|
||||
* **pages:** add catchall support (`[...id].vue`) ([#254](https://github.com/nuxt/framework/issues/254)) ([1518a2a](https://github.com/nuxt/framework/commit/1518a2a070ea4cbdf6f61a87b2c2caac9e7ba3d1))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.2.3](https://github.com/nuxt/framework/compare/@nuxt/pages@0.2.2...@nuxt/pages@0.2.3) (2021-06-16)
|
||||
|
||||
**Note:** Version bump only for package @nuxt/pages
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/pages",
|
||||
"version": "0.2.3",
|
||||
"version": "0.3.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"types": "./dist/module.d.ts",
|
||||
@ -12,7 +12,7 @@
|
||||
"prepack": "unbuild"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"globby": "^11.0.4",
|
||||
"ufo": "^0.7.5",
|
||||
"upath": "^2.0.1",
|
||||
|
@ -3,6 +3,17 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.5.0](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.4.3...@nuxt/vite-builder@0.5.0) (2021-06-24)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **app:** make `asyncData` working with `<script setup nuxt>` ([#220](https://github.com/nuxt/framework/issues/220)) ([11a5a3e](https://github.com/nuxt/framework/commit/11a5a3e14f739761fd4ad65e60290b3abc7a9692))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.4.3](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.4.2...@nuxt/vite-builder@0.4.3) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/vite-builder",
|
||||
"version": "0.4.3",
|
||||
"version": "0.5.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"main": "./dist/index.js",
|
||||
@ -15,7 +15,7 @@
|
||||
"unbuild": "^0.3.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"@vitejs/plugin-vue": "^1.2.3",
|
||||
"@vue/compiler-sfc": "^3.1.1",
|
||||
"chokidar": "^3.5.2",
|
||||
|
@ -3,6 +3,22 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.5.0](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.4.3...@nuxt/webpack-builder@0.5.0) (2021-06-24)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* source map for webpack nuxt-setup-loader ([#236](https://github.com/nuxt/framework/issues/236)) ([5832782](https://github.com/nuxt/framework/commit/58327824fb273b8875fb313ad84059b4c3e180e2))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **app:** make `asyncData` working with `<script setup nuxt>` ([#220](https://github.com/nuxt/framework/issues/220)) ([11a5a3e](https://github.com/nuxt/framework/commit/11a5a3e14f739761fd4ad65e60290b3abc7a9692))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [0.4.3](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.4.2...@nuxt/webpack-builder@0.4.3) (2021-06-16)
|
||||
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@nuxt/webpack-builder",
|
||||
"version": "0.4.3",
|
||||
"version": "0.5.0",
|
||||
"repository": "nuxt/framework",
|
||||
"license": "MIT",
|
||||
"main": "./dist/index.js",
|
||||
@ -13,7 +13,7 @@
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.14.6",
|
||||
"@nuxt/friendly-errors-webpack-plugin": "^2.5.1",
|
||||
"@nuxt/kit": "^0.6.3",
|
||||
"@nuxt/kit": "^0.6.4",
|
||||
"@vue/babel-preset-jsx": "^1.2.4",
|
||||
"@vue/compiler-sfc": "^3.1.1",
|
||||
"babel-loader": "^8.2.2",
|
||||
|
44
yarn.lock
44
yarn.lock
@ -1634,7 +1634,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@nuxt/app@^0.4.3, @nuxt/app@workspace:packages/app":
|
||||
"@nuxt/app@^0.5.0, @nuxt/app@workspace:packages/app":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/app@workspace:packages/app"
|
||||
dependencies:
|
||||
@ -1648,11 +1648,11 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@nuxt/component-discovery@^0.1.0, @nuxt/component-discovery@workspace:packages/components":
|
||||
"@nuxt/component-discovery@^0.2.0, @nuxt/component-discovery@workspace:packages/components":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/component-discovery@workspace:packages/components"
|
||||
dependencies:
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
globby: ^11.0.4
|
||||
scule: ^0.2.1
|
||||
ufo: ^0.7.5
|
||||
@ -1686,7 +1686,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@nuxt/kit@^0.6.3, @nuxt/kit@workspace:packages/kit":
|
||||
"@nuxt/kit@^0.6.4, @nuxt/kit@workspace:packages/kit":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/kit@workspace:packages/kit"
|
||||
dependencies:
|
||||
@ -1708,14 +1708,14 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@nuxt/nitro@^0.9.0, @nuxt/nitro@workspace:packages/nitro":
|
||||
"@nuxt/nitro@^0.9.1, @nuxt/nitro@workspace:packages/nitro":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/nitro@workspace:packages/nitro"
|
||||
dependencies:
|
||||
"@cloudflare/kv-asset-handler": ^0.1.3
|
||||
"@netlify/functions": ^0.7.2
|
||||
"@nuxt/devalue": ^1.2.5
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
"@rollup/plugin-alias": ^3.1.2
|
||||
"@rollup/plugin-commonjs": ^19.0.0
|
||||
"@rollup/plugin-inject": ^4.0.2
|
||||
@ -1776,11 +1776,11 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@nuxt/pages@^0.2.3, @nuxt/pages@workspace:packages/pages":
|
||||
"@nuxt/pages@^0.3.0, @nuxt/pages@workspace:packages/pages":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/pages@workspace:packages/pages"
|
||||
dependencies:
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
globby: ^11.0.4
|
||||
ufo: ^0.7.5
|
||||
unbuild: ^0.3.1
|
||||
@ -1791,11 +1791,11 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@nuxt/vite-builder@^0.4.3, @nuxt/vite-builder@workspace:packages/vite":
|
||||
"@nuxt/vite-builder@^0.5.0, @nuxt/vite-builder@workspace:packages/vite":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/vite-builder@workspace:packages/vite"
|
||||
dependencies:
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
"@types/debounce": ^1.2.0
|
||||
"@vitejs/plugin-vue": ^1.2.3
|
||||
"@vue/compiler-sfc": ^3.1.1
|
||||
@ -1812,13 +1812,13 @@ __metadata:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"@nuxt/webpack-builder@^0.4.3, @nuxt/webpack-builder@workspace:packages/webpack":
|
||||
"@nuxt/webpack-builder@^0.5.0, @nuxt/webpack-builder@workspace:packages/webpack":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@nuxt/webpack-builder@workspace:packages/webpack"
|
||||
dependencies:
|
||||
"@babel/core": ^7.14.6
|
||||
"@nuxt/friendly-errors-webpack-plugin": ^2.5.1
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
"@types/pify": ^5.0.0
|
||||
"@types/terser-webpack-plugin": ^5.0.3
|
||||
"@types/webpack-bundle-analyzer": ^4.4.0
|
||||
@ -9764,11 +9764,11 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"nuxt-cli@^0.3.7, nuxt-cli@workspace:packages/cli":
|
||||
"nuxt-cli@^0.3.8, nuxt-cli@workspace:packages/cli":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "nuxt-cli@workspace:packages/cli"
|
||||
dependencies:
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/kit": ^0.6.4
|
||||
"@types/clear": ^0
|
||||
"@types/debounce-promise": ^3
|
||||
"@types/mri": ^1.1.0
|
||||
@ -9818,13 +9818,13 @@ __metadata:
|
||||
version: 0.0.0-use.local
|
||||
resolution: "nuxt3@workspace:packages/nuxt3"
|
||||
dependencies:
|
||||
"@nuxt/app": ^0.4.3
|
||||
"@nuxt/component-discovery": ^0.1.0
|
||||
"@nuxt/kit": ^0.6.3
|
||||
"@nuxt/nitro": ^0.9.0
|
||||
"@nuxt/pages": ^0.2.3
|
||||
"@nuxt/vite-builder": ^0.4.3
|
||||
"@nuxt/webpack-builder": ^0.4.3
|
||||
"@nuxt/app": ^0.5.0
|
||||
"@nuxt/component-discovery": ^0.2.0
|
||||
"@nuxt/kit": ^0.6.4
|
||||
"@nuxt/nitro": ^0.9.1
|
||||
"@nuxt/pages": ^0.3.0
|
||||
"@nuxt/vite-builder": ^0.5.0
|
||||
"@nuxt/webpack-builder": ^0.5.0
|
||||
"@types/fs-extra": ^9.0.11
|
||||
"@types/hash-sum": ^1.0.0
|
||||
"@types/lodash": ^4.14.170
|
||||
@ -9837,7 +9837,7 @@ __metadata:
|
||||
hookable: ^4.4.1
|
||||
ignore: ^5.1.8
|
||||
lodash: ^4.17.21
|
||||
nuxt-cli: ^0.3.7
|
||||
nuxt-cli: ^0.3.8
|
||||
scule: ^0.2.1
|
||||
ufo: ^0.7.5
|
||||
unbuild: ^0.3.1
|
||||
|
Loading…
Reference in New Issue
Block a user