mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
v3.0.0-rc.2 (#4763)
This commit is contained in:
parent
1f8e3e2f33
commit
a8d42d586f
7
changelog.config.json
Normal file
7
changelog.config.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"github": "nuxt/framework",
|
||||||
|
"scopeMap": {
|
||||||
|
"nuxt3": "nuxt",
|
||||||
|
"nuxi": "cli"
|
||||||
|
}
|
||||||
|
}
|
@ -97,9 +97,6 @@ If you place anything within square brackets, it will be turned into a [dynamic
|
|||||||
|
|
||||||
If you want a parameter to be _optional_, you must enclose it in double square brackets - for example, `~/pages/[[slug]]/index.vue` or `~/pages/[[slug]].vue` will match both `/` and `/test`.
|
If you want a parameter to be _optional_, you must enclose it in double square brackets - for example, `~/pages/[[slug]]/index.vue` or `~/pages/[[slug]].vue` will match both `/` and `/test`.
|
||||||
|
|
||||||
::StabilityEdge{title="Optional dynamic params with [[slug]] syntax"}
|
|
||||||
::
|
|
||||||
|
|
||||||
### Example
|
### Example
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
|
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
|
||||||
|
"changelog": "changelogen",
|
||||||
"cleanup": "rimraf 'packages/**/node_modules' 'examples/**/node_modules' 'node_modules'",
|
"cleanup": "rimraf 'packages/**/node_modules' 'examples/**/node_modules' 'node_modules'",
|
||||||
"dev": "yarn run nuxi dev playground",
|
"dev": "yarn run nuxi dev playground",
|
||||||
"dev:build": "yarn run nuxi build playground",
|
"dev:build": "yarn run nuxi build playground",
|
||||||
@ -19,7 +20,6 @@
|
|||||||
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
|
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
|
||||||
"lint:docs": "markdownlint ./docs/content && case-police 'docs/content**/*.md'",
|
"lint:docs": "markdownlint ./docs/content && case-police 'docs/content**/*.md'",
|
||||||
"lint:docs:fix": "markdownlint ./docs/content --fix && case-police 'docs/content**/*.md' --fix",
|
"lint:docs:fix": "markdownlint ./docs/content --fix && case-police 'docs/content**/*.md' --fix",
|
||||||
"typecheck": "tsc --noEmit",
|
|
||||||
"nuxi": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
"nuxi": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
||||||
"nuxt": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
"nuxt": "NUXT_TELEMETRY_DISABLED=1 node ./packages/nuxi/bin/nuxi.mjs",
|
||||||
"play": "echo use yarn dev && exit 1",
|
"play": "echo use yarn dev && exit 1",
|
||||||
@ -30,6 +30,7 @@
|
|||||||
"test:fixtures:webpack": "NUXT_TELEMETRY_DISABLED=1 TEST_WITH_WEBPACK=1 yarn test:fixtures",
|
"test:fixtures:webpack": "NUXT_TELEMETRY_DISABLED=1 TEST_WITH_WEBPACK=1 yarn test:fixtures",
|
||||||
"test:types": "yarn run nuxi prepare test/fixtures/basic && cd test/fixtures/basic && npx vue-tsc --noEmit",
|
"test:types": "yarn run nuxi prepare test/fixtures/basic && cd test/fixtures/basic && npx vue-tsc --noEmit",
|
||||||
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest run --dir packages",
|
"test:unit": "JITI_ESM_RESOLVE=1 yarn vitest run --dir packages",
|
||||||
|
"typecheck": "tsc --noEmit",
|
||||||
"version": "yarn && git add yarn.lock"
|
"version": "yarn && git add yarn.lock"
|
||||||
},
|
},
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
@ -49,6 +50,7 @@
|
|||||||
"@types/rimraf": "^3",
|
"@types/rimraf": "^3",
|
||||||
"@unocss/reset": "^0.32.9",
|
"@unocss/reset": "^0.32.9",
|
||||||
"case-police": "^0.5.3",
|
"case-police": "^0.5.3",
|
||||||
|
"changelogen": "^0.0.3",
|
||||||
"eslint": "^8.14.0",
|
"eslint": "^8.14.0",
|
||||||
"eslint-plugin-jsdoc": "^39.2.9",
|
"eslint-plugin-jsdoc": "^39.2.9",
|
||||||
"execa": "^6.1.0",
|
"execa": "^6.1.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxt/kit",
|
"name": "@nuxt/kit",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -13,7 +13,7 @@
|
|||||||
"prepack": "unbuild"
|
"prepack": "unbuild"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"c12": "^0.2.7",
|
"c12": "^0.2.7",
|
||||||
"consola": "^2.15.3",
|
"consola": "^2.15.3",
|
||||||
"defu": "^6.0.0",
|
"defu": "^6.0.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nuxi",
|
"name": "nuxi",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -17,8 +17,8 @@
|
|||||||
"prepack": "unbuild"
|
"prepack": "unbuild"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/kit": "^3.0.0-rc.1",
|
"@nuxt/kit": "^3.0.0-rc.2",
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"@types/clear": "^0",
|
"@types/clear": "^0",
|
||||||
"@types/mri": "^1.1.1",
|
"@types/mri": "^1.1.1",
|
||||||
"@types/semver": "^7",
|
"@types/semver": "^7",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "nuxt",
|
"name": "nuxt",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -30,11 +30,11 @@
|
|||||||
"prepack": "unbuild"
|
"prepack": "unbuild"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/kit": "^3.0.0-rc.1",
|
"@nuxt/kit": "^3.0.0-rc.2",
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"@nuxt/telemetry": "^2.1.3",
|
"@nuxt/telemetry": "^2.1.3",
|
||||||
"@nuxt/ui-templates": "^0.1.0",
|
"@nuxt/ui-templates": "^0.1.0",
|
||||||
"@nuxt/vite-builder": "^3.0.0-rc.1",
|
"@nuxt/vite-builder": "^3.0.0-rc.2",
|
||||||
"@vue/reactivity": "^3.2.33",
|
"@vue/reactivity": "^3.2.33",
|
||||||
"@vue/shared": "^3.2.33",
|
"@vue/shared": "^3.2.33",
|
||||||
"@vueuse/head": "^0.7.6",
|
"@vueuse/head": "^0.7.6",
|
||||||
@ -52,7 +52,7 @@
|
|||||||
"magic-string": "^0.26.1",
|
"magic-string": "^0.26.1",
|
||||||
"mlly": "^0.5.2",
|
"mlly": "^0.5.2",
|
||||||
"nitropack": "^0.3.12",
|
"nitropack": "^0.3.12",
|
||||||
"nuxi": "^3.0.0-rc.1",
|
"nuxi": "^3.0.0-rc.2",
|
||||||
"ohash": "^0.1.0",
|
"ohash": "^0.1.0",
|
||||||
"ohmyfetch": "^0.4.16",
|
"ohmyfetch": "^0.4.16",
|
||||||
"pathe": "^0.2.0",
|
"pathe": "^0.2.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxt/schema",
|
"name": "@nuxt/schema",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxt/test-utils",
|
"name": "@nuxt/test-utils",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -13,8 +13,8 @@
|
|||||||
"prepack": "unbuild"
|
"prepack": "unbuild"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/kit": "^3.0.0-rc.1",
|
"@nuxt/kit": "^3.0.0-rc.2",
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"defu": "^6.0.0",
|
"defu": "^6.0.0",
|
||||||
"execa": "^6.1.0",
|
"execa": "^6.1.0",
|
||||||
"get-port-please": "^2.5.0",
|
"get-port-please": "^2.5.0",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxt/vite-builder",
|
"name": "@nuxt/vite-builder",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -13,13 +13,13 @@
|
|||||||
"prepack": "unbuild"
|
"prepack": "unbuild"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"@types/cssnano": "^5",
|
"@types/cssnano": "^5",
|
||||||
"unbuild": "latest",
|
"unbuild": "latest",
|
||||||
"vue": "3.2.33"
|
"vue": "3.2.33"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/kit": "^3.0.0-rc.1",
|
"@nuxt/kit": "^3.0.0-rc.2",
|
||||||
"@vitejs/plugin-vue": "^2.3.1",
|
"@vitejs/plugin-vue": "^2.3.1",
|
||||||
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
"@vitejs/plugin-vue-jsx": "^1.3.10",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.7",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@nuxt/webpack-builder",
|
"name": "@nuxt/webpack-builder",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"repository": "nuxt/framework",
|
"repository": "nuxt/framework",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -18,7 +18,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/core": "^7.17.10",
|
"@babel/core": "^7.17.10",
|
||||||
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
|
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
|
||||||
"@nuxt/kit": "^3.0.0-rc.1",
|
"@nuxt/kit": "^3.0.0-rc.2",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.7",
|
||||||
"css-loader": "^6.7.1",
|
"css-loader": "^6.7.1",
|
||||||
"css-minimizer-webpack-plugin": "^3.4.1",
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
||||||
@ -55,7 +55,7 @@
|
|||||||
"webpackbar": "^5.0.2"
|
"webpackbar": "^5.0.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/schema": "^3.0.0-rc.1",
|
"@nuxt/schema": "^3.0.0-rc.2",
|
||||||
"@types/pify": "^5.0.1",
|
"@types/pify": "^5.0.1",
|
||||||
"@types/webpack-bundle-analyzer": "^4.4.1",
|
"@types/webpack-bundle-analyzer": "^4.4.1",
|
||||||
"@types/webpack-dev-middleware": "^5.0.2",
|
"@types/webpack-dev-middleware": "^5.0.2",
|
||||||
|
9
scripts/bump-rc.sh
Executable file
9
scripts/bump-rc.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Restore all git changes
|
||||||
|
git restore -s@ -SW -- packages examples
|
||||||
|
|
||||||
|
# Bump versions
|
||||||
|
yarn lerna version --preid rc --no-changelog --no-git-tag-version --no-push -m "chore: release rc"
|
@ -5,9 +5,6 @@ set -e
|
|||||||
# Restore all git changes
|
# Restore all git changes
|
||||||
git restore -s@ -SW -- packages examples
|
git restore -s@ -SW -- packages examples
|
||||||
|
|
||||||
# Bump versions
|
|
||||||
yarn lerna version --preid rc --no-changelog --no-git-tag-version --no-push -m "chore: release rc"
|
|
||||||
|
|
||||||
# Build all once to ensure things are nice
|
# Build all once to ensure things are nice
|
||||||
yarn build
|
yarn build
|
||||||
|
|
||||||
|
44
yarn.lock
44
yarn.lock
@ -1493,7 +1493,7 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@nuxt/kit@workspace:packages/kit"
|
resolution: "@nuxt/kit@workspace:packages/kit"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
"@types/lodash.template": ^4
|
"@types/lodash.template": ^4
|
||||||
"@types/semver": ^7
|
"@types/semver": ^7
|
||||||
c12: ^0.2.7
|
c12: ^0.2.7
|
||||||
@ -1577,8 +1577,8 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@nuxt/test-utils@workspace:packages/test-utils"
|
resolution: "@nuxt/test-utils@workspace:packages/test-utils"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/kit": ^3.0.0-rc.1
|
"@nuxt/kit": ^3.0.0-rc.2
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
defu: ^6.0.0
|
defu: ^6.0.0
|
||||||
execa: ^6.1.0
|
execa: ^6.1.0
|
||||||
get-port-please: ^2.5.0
|
get-port-please: ^2.5.0
|
||||||
@ -1622,12 +1622,12 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@nuxt/vite-builder@^3.0.0-rc.1, @nuxt/vite-builder@workspace:packages/vite":
|
"@nuxt/vite-builder@^3.0.0-rc.2, @nuxt/vite-builder@workspace:packages/vite":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "@nuxt/vite-builder@workspace:packages/vite"
|
resolution: "@nuxt/vite-builder@workspace:packages/vite"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/kit": ^3.0.0-rc.1
|
"@nuxt/kit": ^3.0.0-rc.2
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
"@types/cssnano": ^5
|
"@types/cssnano": ^5
|
||||||
"@vitejs/plugin-vue": ^2.3.1
|
"@vitejs/plugin-vue": ^2.3.1
|
||||||
"@vitejs/plugin-vue-jsx": ^1.3.10
|
"@vitejs/plugin-vue-jsx": ^1.3.10
|
||||||
@ -1669,8 +1669,8 @@ __metadata:
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core": ^7.17.10
|
"@babel/core": ^7.17.10
|
||||||
"@nuxt/friendly-errors-webpack-plugin": ^2.5.2
|
"@nuxt/friendly-errors-webpack-plugin": ^2.5.2
|
||||||
"@nuxt/kit": ^3.0.0-rc.1
|
"@nuxt/kit": ^3.0.0-rc.2
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
"@types/pify": ^5.0.1
|
"@types/pify": ^5.0.1
|
||||||
"@types/webpack-bundle-analyzer": ^4.4.1
|
"@types/webpack-bundle-analyzer": ^4.4.1
|
||||||
"@types/webpack-dev-middleware": ^5.0.2
|
"@types/webpack-dev-middleware": ^5.0.2
|
||||||
@ -4100,6 +4100,21 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"changelogen@npm:^0.0.3":
|
||||||
|
version: 0.0.3
|
||||||
|
resolution: "changelogen@npm:0.0.3"
|
||||||
|
dependencies:
|
||||||
|
c12: ^0.2.7
|
||||||
|
consola: ^2.15.3
|
||||||
|
execa: ^6.1.0
|
||||||
|
mri: ^1.2.0
|
||||||
|
scule: ^0.2.1
|
||||||
|
bin:
|
||||||
|
changelogen: dist/cli.mjs
|
||||||
|
checksum: 20d9f3a559874d0d56c0fe0c626938bf0d443838fabf0854aee8eccf6f1e3eb7cbbb11de204cb09da56ab61422965e9c3ad635ee75aa88893cb8e27511234733
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"chardet@npm:^0.7.0":
|
"chardet@npm:^0.7.0":
|
||||||
version: 0.7.0
|
version: 0.7.0
|
||||||
resolution: "chardet@npm:0.7.0"
|
resolution: "chardet@npm:0.7.0"
|
||||||
@ -10051,8 +10066,8 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "nuxi@workspace:packages/nuxi"
|
resolution: "nuxi@workspace:packages/nuxi"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/kit": ^3.0.0-rc.1
|
"@nuxt/kit": ^3.0.0-rc.2
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
"@types/clear": ^0
|
"@types/clear": ^0
|
||||||
"@types/mri": ^1.1.1
|
"@types/mri": ^1.1.1
|
||||||
"@types/semver": ^7
|
"@types/semver": ^7
|
||||||
@ -10096,6 +10111,7 @@ __metadata:
|
|||||||
"@types/rimraf": ^3
|
"@types/rimraf": ^3
|
||||||
"@unocss/reset": ^0.32.9
|
"@unocss/reset": ^0.32.9
|
||||||
case-police: ^0.5.3
|
case-police: ^0.5.3
|
||||||
|
changelogen: ^0.0.3
|
||||||
eslint: ^8.14.0
|
eslint: ^8.14.0
|
||||||
eslint-plugin-jsdoc: ^39.2.9
|
eslint-plugin-jsdoc: ^39.2.9
|
||||||
execa: ^6.1.0
|
execa: ^6.1.0
|
||||||
@ -10131,11 +10147,11 @@ __metadata:
|
|||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "nuxt@workspace:packages/nuxt"
|
resolution: "nuxt@workspace:packages/nuxt"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nuxt/kit": ^3.0.0-rc.1
|
"@nuxt/kit": ^3.0.0-rc.2
|
||||||
"@nuxt/schema": ^3.0.0-rc.1
|
"@nuxt/schema": ^3.0.0-rc.2
|
||||||
"@nuxt/telemetry": ^2.1.3
|
"@nuxt/telemetry": ^2.1.3
|
||||||
"@nuxt/ui-templates": ^0.1.0
|
"@nuxt/ui-templates": ^0.1.0
|
||||||
"@nuxt/vite-builder": ^3.0.0-rc.1
|
"@nuxt/vite-builder": ^3.0.0-rc.2
|
||||||
"@types/fs-extra": ^9.0.13
|
"@types/fs-extra": ^9.0.13
|
||||||
"@types/hash-sum": ^1.0.0
|
"@types/hash-sum": ^1.0.0
|
||||||
"@vue/reactivity": ^3.2.33
|
"@vue/reactivity": ^3.2.33
|
||||||
@ -10155,7 +10171,7 @@ __metadata:
|
|||||||
magic-string: ^0.26.1
|
magic-string: ^0.26.1
|
||||||
mlly: ^0.5.2
|
mlly: ^0.5.2
|
||||||
nitropack: ^0.3.12
|
nitropack: ^0.3.12
|
||||||
nuxi: ^3.0.0-rc.1
|
nuxi: ^3.0.0-rc.2
|
||||||
ohash: ^0.1.0
|
ohash: ^0.1.0
|
||||||
ohmyfetch: ^0.4.16
|
ohmyfetch: ^0.4.16
|
||||||
pathe: ^0.2.0
|
pathe: ^0.2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user