Skip to content
This repository was archived by the owner on Apr 6, 2023. It is now read-only.

Commit 9caa9ca

Browse files
authored
v3.0.0-rc.9 (#6970)
1 parent ee20a00 commit 9caa9ca

File tree

15 files changed

+35
-53
lines changed

15 files changed

+35
-53
lines changed

docs/content/2.guide/2.features/10.app-config.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# App Config
22

3-
::StabilityEdge
4-
::
5-
63
Nuxt 3 provides an `app.config` config file to expose reactive configuration within your application with the ability to update it at runtime within lifecycle or using a nuxt plugin and editing it with HMR (hot-module-replacement).
74

85
::alert{type=warning}

docs/content/2.guide/3.directory-structure/16.app.config.md

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ head.title: Nuxt App Config
66

77
# Nuxt App Config
88

9-
::StabilityEdge
10-
::
11-
129
You can easily provide runtime app configuration using `app.config.ts` file. It can have either of `.ts`, `.js`, or `.mjs` extensions.
1310

1411
```ts [app.config.ts]

docs/content/3.api/1.composables/prefetch-components.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# `prefetchComponents`
22

3-
::StabilityEdge
4-
::
5-
63
Nuxt provides composables and utilities to give you fine-grained control over prefetching and preloading components.
74

85
> Prefetching component downloads the code in the background, this is based on the assumption that the component will likely be used for rendering, enabling the component to load instantly if and when the user requests it. The component is downloaded and cached for anticipated future use without the user making an explicit request for it.

docs/content/3.api/1.composables/preload-components.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# `preloadComponents`
22

3-
::StabilityEdge
4-
::
5-
63
Nuxt provides composables and utilities to give you fine-grained control over prefetching and preloading components.
74

85
> Preloading components loads components that your page will need very soon, which you want to start loading early in rendering lifecycle. This ensures they are available earlier and are less likely to block the page's render, improving performance.

docs/content/3.api/1.composables/update-app-config.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# `updateAppConfig`
22

3-
::StabilityEdge
4-
::
5-
63
Updates [app config](/guide/features/app-config) using deep assignment. Existing (nested) properties will be preserved.
74

85
**Usage:**

docs/content/3.api/1.composables/use-app-config.md

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# `useAppConfig`
22

3-
::StabilityEdge
4-
::
5-
63
Access [app config](/guide/features/app-config):
74

85
**Usage:**

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.0.0-rc.8",
2+
"version": "3.0.0-rc.9",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"conventionalCommits": true,

packages/kit/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxt/kit",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -13,7 +13,7 @@
1313
"prepack": "unbuild"
1414
},
1515
"dependencies": {
16-
"@nuxt/schema": "3.0.0-rc.8",
16+
"@nuxt/schema": "3.0.0-rc.9",
1717
"c12": "^0.2.10",
1818
"consola": "^2.15.3",
1919
"defu": "^6.1.0",

packages/nuxi/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuxi",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -18,8 +18,8 @@
1818
"prepack": "unbuild"
1919
},
2020
"devDependencies": {
21-
"@nuxt/kit": "3.0.0-rc.8",
22-
"@nuxt/schema": "3.0.0-rc.8",
21+
"@nuxt/kit": "3.0.0-rc.9",
22+
"@nuxt/schema": "3.0.0-rc.9",
2323
"@types/clear": "^0",
2424
"@types/flat": "^5.0.2",
2525
"@types/mri": "^1.1.1",

packages/nuxt/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nuxt",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -31,11 +31,11 @@
3131
},
3232
"dependencies": {
3333
"@nuxt/devalue": "^2.0.0",
34-
"@nuxt/kit": "3.0.0-rc.8",
35-
"@nuxt/schema": "3.0.0-rc.8",
34+
"@nuxt/kit": "3.0.0-rc.9",
35+
"@nuxt/schema": "3.0.0-rc.9",
3636
"@nuxt/telemetry": "^2.1.4",
3737
"@nuxt/ui-templates": "^0.3.2",
38-
"@nuxt/vite-builder": "3.0.0-rc.8",
38+
"@nuxt/vite-builder": "3.0.0-rc.9",
3939
"@vue/reactivity": "^3.2.38",
4040
"@vue/shared": "^3.2.38",
4141
"@vueuse/head": "^0.7.9",
@@ -53,7 +53,7 @@
5353
"magic-string": "^0.26.3",
5454
"mlly": "^0.5.14",
5555
"nitropack": "^0.5.0",
56-
"nuxi": "3.0.0-rc.8",
56+
"nuxi": "3.0.0-rc.9",
5757
"ohash": "^0.1.5",
5858
"ohmyfetch": "^0.4.18",
5959
"pathe": "^0.3.5",

packages/schema/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxt/schema",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",

packages/test-utils/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxt/test-utils",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -13,8 +13,8 @@
1313
"prepack": "unbuild"
1414
},
1515
"dependencies": {
16-
"@nuxt/kit": "3.0.0-rc.8",
17-
"@nuxt/schema": "3.0.0-rc.8",
16+
"@nuxt/kit": "3.0.0-rc.9",
17+
"@nuxt/schema": "3.0.0-rc.9",
1818
"defu": "^6.1.0",
1919
"execa": "^6.1.0",
2020
"get-port-please": "^2.6.1",

packages/vite/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxt/vite-builder",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -13,13 +13,13 @@
1313
"prepack": "unbuild"
1414
},
1515
"devDependencies": {
16-
"@nuxt/schema": "3.0.0-rc.8",
16+
"@nuxt/schema": "3.0.0-rc.9",
1717
"@types/cssnano": "^5",
1818
"unbuild": "latest",
1919
"vue": "3.2.38"
2020
},
2121
"dependencies": {
22-
"@nuxt/kit": "3.0.0-rc.8",
22+
"@nuxt/kit": "3.0.0-rc.9",
2323
"@rollup/plugin-replace": "^4.0.0",
2424
"@vitejs/plugin-vue": "^3.0.3",
2525
"@vitejs/plugin-vue-jsx": "^2.0.1",

packages/webpack/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nuxt/webpack-builder",
3-
"version": "3.0.0-rc.8",
3+
"version": "3.0.0-rc.9",
44
"repository": "nuxt/framework",
55
"license": "MIT",
66
"type": "module",
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"@babel/core": "^7.18.13",
2020
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
21-
"@nuxt/kit": "3.0.0-rc.8",
21+
"@nuxt/kit": "3.0.0-rc.9",
2222
"autoprefixer": "^10.4.8",
2323
"css-loader": "^6.7.1",
2424
"css-minimizer-webpack-plugin": "^4.0.0",
@@ -57,7 +57,7 @@
5757
"webpackbar": "^5.0.2"
5858
},
5959
"devDependencies": {
60-
"@nuxt/schema": "3.0.0-rc.8",
60+
"@nuxt/schema": "3.0.0-rc.9",
6161
"@types/lodash-es": "^4.17.6",
6262
"@types/pify": "^5.0.1",
6363
"@types/webpack-bundle-analyzer": "^4.4.2",

yarn.lock

+14-14
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,7 @@ __metadata:
16481648
version: 0.0.0-use.local
16491649
resolution: "@nuxt/kit@workspace:packages/kit"
16501650
dependencies:
1651-
"@nuxt/schema": 3.0.0-rc.8
1651+
"@nuxt/schema": 3.0.0-rc.9
16521652
"@types/lodash.template": ^4
16531653
"@types/semver": ^7
16541654
c12: ^0.2.10
@@ -1734,8 +1734,8 @@ __metadata:
17341734
version: 0.0.0-use.local
17351735
resolution: "@nuxt/test-utils@workspace:packages/test-utils"
17361736
dependencies:
1737-
"@nuxt/kit": 3.0.0-rc.8
1738-
"@nuxt/schema": 3.0.0-rc.8
1737+
"@nuxt/kit": 3.0.0-rc.9
1738+
"@nuxt/schema": 3.0.0-rc.9
17391739
defu: ^6.1.0
17401740
execa: ^6.1.0
17411741
get-port-please: ^2.6.1
@@ -1779,12 +1779,12 @@ __metadata:
17791779
languageName: node
17801780
linkType: hard
17811781

1782-
"@nuxt/vite-builder@3.0.0-rc.8, @nuxt/vite-builder@workspace:packages/vite":
1782+
"@nuxt/vite-builder@3.0.0-rc.9, @nuxt/vite-builder@workspace:packages/vite":
17831783
version: 0.0.0-use.local
17841784
resolution: "@nuxt/vite-builder@workspace:packages/vite"
17851785
dependencies:
1786-
"@nuxt/kit": 3.0.0-rc.8
1787-
"@nuxt/schema": 3.0.0-rc.8
1786+
"@nuxt/kit": 3.0.0-rc.9
1787+
"@nuxt/schema": 3.0.0-rc.9
17881788
"@rollup/plugin-replace": ^4.0.0
17891789
"@types/cssnano": ^5
17901790
"@vitejs/plugin-vue": ^3.0.3
@@ -1831,8 +1831,8 @@ __metadata:
18311831
dependencies:
18321832
"@babel/core": ^7.18.13
18331833
"@nuxt/friendly-errors-webpack-plugin": ^2.5.2
1834-
"@nuxt/kit": 3.0.0-rc.8
1835-
"@nuxt/schema": 3.0.0-rc.8
1834+
"@nuxt/kit": 3.0.0-rc.9
1835+
"@nuxt/schema": 3.0.0-rc.9
18361836
"@types/lodash-es": ^4.17.6
18371837
"@types/pify": ^5.0.1
18381838
"@types/webpack-bundle-analyzer": ^4.4.2
@@ -9899,8 +9899,8 @@ __metadata:
98999899
version: 0.0.0-use.local
99009900
resolution: "nuxi@workspace:packages/nuxi"
99019901
dependencies:
9902-
"@nuxt/kit": 3.0.0-rc.8
9903-
"@nuxt/schema": 3.0.0-rc.8
9902+
"@nuxt/kit": 3.0.0-rc.9
9903+
"@nuxt/schema": 3.0.0-rc.9
99049904
"@types/clear": ^0
99059905
"@types/flat": ^5.0.2
99069906
"@types/mri": ^1.1.1
@@ -9982,11 +9982,11 @@ __metadata:
99829982
resolution: "nuxt@workspace:packages/nuxt"
99839983
dependencies:
99849984
"@nuxt/devalue": ^2.0.0
9985-
"@nuxt/kit": 3.0.0-rc.8
9986-
"@nuxt/schema": 3.0.0-rc.8
9985+
"@nuxt/kit": 3.0.0-rc.9
9986+
"@nuxt/schema": 3.0.0-rc.9
99879987
"@nuxt/telemetry": ^2.1.4
99889988
"@nuxt/ui-templates": ^0.3.2
9989-
"@nuxt/vite-builder": 3.0.0-rc.8
9989+
"@nuxt/vite-builder": 3.0.0-rc.9
99909990
"@types/fs-extra": ^9.0.13
99919991
"@types/hash-sum": ^1.0.0
99929992
"@vue/reactivity": ^3.2.38
@@ -10006,7 +10006,7 @@ __metadata:
1000610006
magic-string: ^0.26.3
1000710007
mlly: ^0.5.14
1000810008
nitropack: ^0.5.0
10009-
nuxi: 3.0.0-rc.8
10009+
nuxi: 3.0.0-rc.9
1001010010
ohash: ^0.1.5
1001110011
ohmyfetch: ^0.4.18
1001210012
pathe: ^0.3.5

0 commit comments

Comments
 (0)