v3.0.0-rc.10 (#7374)

This commit is contained in:
pooya parsa 2022-09-14 18:27:11 +02:00 committed by GitHub
parent 09c42fd886
commit 94377b1901
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 36 additions and 43 deletions

View File

@ -1,12 +1,8 @@
# Static Hosting # Static Hosting
::alert{type=info}
The [full static feature](https://nuxtjs.org/announcements/going-full-static) is [under development](https://github.com/nuxt/framework/issues/6411) and will be available in the near future.
::
There are two ways to deploy a Nuxt application to any static hosting services: There are two ways to deploy a Nuxt application to any static hosting services:
- Static site generation (SSG) prerenders every route of your application at build time. For every page, Nuxt uses a crawler to generate a corresponding HTML file. - Static site generation (SSG) prerenders every route of your application at build time. For every page, Nuxt uses a crawler to generate a corresponding HTML and payload files.
- Using `ssr: false` to produce a pure client-side output. - Using `ssr: false` to produce a pure client-side output.
## Prerendering ## Prerendering

View File

@ -1,8 +1,5 @@
# `clearNuxtData` # `clearNuxtData`
::StabilityEdge
::
Delete cached data, error status and pending promises of `useAsyncData` and `useFetch`. Delete cached data, error status and pending promises of `useAsyncData` and `useFetch`.
This method is useful if you want to invalidate the data fetching for another page. This method is useful if you want to invalidate the data fetching for another page.

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"npmClient": "yarn", "npmClient": "yarn",
"useWorkspaces": true, "useWorkspaces": true,
"conventionalCommits": true, "conventionalCommits": true,

View File

@ -1,6 +1,6 @@
{ {
"name": "@nuxt/kit", "name": "@nuxt/kit",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"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.9", "@nuxt/schema": "3.0.0-rc.10",
"c12": "^0.2.12", "c12": "^0.2.12",
"consola": "^2.15.3", "consola": "^2.15.3",
"defu": "^6.1.0", "defu": "^6.1.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "nuxi", "name": "nuxi",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"repository": "nuxt/framework", "repository": "nuxt/framework",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
@ -18,8 +18,8 @@
"prepack": "unbuild" "prepack": "unbuild"
}, },
"devDependencies": { "devDependencies": {
"@nuxt/kit": "3.0.0-rc.9", "@nuxt/kit": "3.0.0-rc.10",
"@nuxt/schema": "3.0.0-rc.9", "@nuxt/schema": "3.0.0-rc.10",
"@types/clear": "^0", "@types/clear": "^0",
"@types/flat": "^5.0.2", "@types/flat": "^5.0.2",
"@types/mri": "^1.1.1", "@types/mri": "^1.1.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "nuxt", "name": "nuxt",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"repository": "nuxt/framework", "repository": "nuxt/framework",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
@ -37,11 +37,11 @@
}, },
"dependencies": { "dependencies": {
"@nuxt/devalue": "^2.0.0", "@nuxt/devalue": "^2.0.0",
"@nuxt/kit": "3.0.0-rc.9", "@nuxt/kit": "3.0.0-rc.10",
"@nuxt/schema": "3.0.0-rc.9", "@nuxt/schema": "3.0.0-rc.10",
"@nuxt/telemetry": "^2.1.5", "@nuxt/telemetry": "^2.1.5",
"@nuxt/ui-templates": "^0.3.3", "@nuxt/ui-templates": "^0.3.3",
"@nuxt/vite-builder": "3.0.0-rc.9", "@nuxt/vite-builder": "3.0.0-rc.10",
"@vue/reactivity": "^3.2.39", "@vue/reactivity": "^3.2.39",
"@vue/shared": "^3.2.39", "@vue/shared": "^3.2.39",
"@vueuse/head": "^0.7.10", "@vueuse/head": "^0.7.10",
@ -59,7 +59,7 @@
"magic-string": "^0.26.3", "magic-string": "^0.26.3",
"mlly": "^0.5.14", "mlly": "^0.5.14",
"nitropack": "^0.5.3", "nitropack": "^0.5.3",
"nuxi": "3.0.0-rc.9", "nuxi": "3.0.0-rc.10",
"ohash": "^0.1.5", "ohash": "^0.1.5",
"ohmyfetch": "^0.4.18", "ohmyfetch": "^0.4.18",
"pathe": "^0.3.7", "pathe": "^0.3.7",

View File

@ -1,6 +1,6 @@
{ {
"name": "@nuxt/schema", "name": "@nuxt/schema",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"repository": "nuxt/framework", "repository": "nuxt/framework",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",

View File

@ -1,6 +1,6 @@
{ {
"name": "@nuxt/test-utils", "name": "@nuxt/test-utils",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"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.9", "@nuxt/kit": "3.0.0-rc.10",
"@nuxt/schema": "3.0.0-rc.9", "@nuxt/schema": "3.0.0-rc.10",
"consola": "^2.15.3", "consola": "^2.15.3",
"defu": "^6.1.0", "defu": "^6.1.0",
"execa": "^6.1.0", "execa": "^6.1.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@nuxt/vite-builder", "name": "@nuxt/vite-builder",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"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.9", "@nuxt/schema": "3.0.0-rc.10",
"@types/cssnano": "^5", "@types/cssnano": "^5",
"unbuild": "latest", "unbuild": "latest",
"vue": "3.2.39" "vue": "3.2.39"
}, },
"dependencies": { "dependencies": {
"@nuxt/kit": "3.0.0-rc.9", "@nuxt/kit": "3.0.0-rc.10",
"@rollup/plugin-replace": "^4.0.0", "@rollup/plugin-replace": "^4.0.0",
"@vitejs/plugin-vue": "^3.1.0", "@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1", "@vitejs/plugin-vue-jsx": "^2.0.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "@nuxt/webpack-builder", "name": "@nuxt/webpack-builder",
"version": "3.0.0-rc.9", "version": "3.0.0-rc.10",
"repository": "nuxt/framework", "repository": "nuxt/framework",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
@ -18,7 +18,7 @@
"dependencies": { "dependencies": {
"@babel/core": "^7.19.0", "@babel/core": "^7.19.0",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.2", "@nuxt/friendly-errors-webpack-plugin": "^2.5.2",
"@nuxt/kit": "3.0.0-rc.9", "@nuxt/kit": "3.0.0-rc.10",
"autoprefixer": "^10.4.10", "autoprefixer": "^10.4.10",
"css-loader": "^6.7.1", "css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.1.0", "css-minimizer-webpack-plugin": "^4.1.0",
@ -57,7 +57,7 @@
"webpackbar": "^5.0.2" "webpackbar": "^5.0.2"
}, },
"devDependencies": { "devDependencies": {
"@nuxt/schema": "3.0.0-rc.9", "@nuxt/schema": "3.0.0-rc.10",
"@types/lodash-es": "^4.17.6", "@types/lodash-es": "^4.17.6",
"@types/pify": "^5.0.1", "@types/pify": "^5.0.1",
"@types/webpack-bundle-analyzer": "^4.4.2", "@types/webpack-bundle-analyzer": "^4.4.2",

View File

@ -1674,7 +1674,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.9 "@nuxt/schema": 3.0.0-rc.10
"@types/lodash.template": ^4 "@types/lodash.template": ^4
"@types/semver": ^7 "@types/semver": ^7
c12: ^0.2.12 c12: ^0.2.12
@ -1761,8 +1761,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.9 "@nuxt/kit": 3.0.0-rc.10
"@nuxt/schema": 3.0.0-rc.9 "@nuxt/schema": 3.0.0-rc.10
consola: ^2.15.3 consola: ^2.15.3
defu: ^6.1.0 defu: ^6.1.0
execa: ^6.1.0 execa: ^6.1.0
@ -1807,12 +1807,12 @@ __metadata:
languageName: node languageName: node
linkType: hard linkType: hard
"@nuxt/vite-builder@3.0.0-rc.9, @nuxt/vite-builder@workspace:packages/vite": "@nuxt/vite-builder@3.0.0-rc.10, @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.9 "@nuxt/kit": 3.0.0-rc.10
"@nuxt/schema": 3.0.0-rc.9 "@nuxt/schema": 3.0.0-rc.10
"@rollup/plugin-replace": ^4.0.0 "@rollup/plugin-replace": ^4.0.0
"@types/cssnano": ^5 "@types/cssnano": ^5
"@vitejs/plugin-vue": ^3.1.0 "@vitejs/plugin-vue": ^3.1.0
@ -1859,8 +1859,8 @@ __metadata:
dependencies: dependencies:
"@babel/core": ^7.19.0 "@babel/core": ^7.19.0
"@nuxt/friendly-errors-webpack-plugin": ^2.5.2 "@nuxt/friendly-errors-webpack-plugin": ^2.5.2
"@nuxt/kit": 3.0.0-rc.9 "@nuxt/kit": 3.0.0-rc.10
"@nuxt/schema": 3.0.0-rc.9 "@nuxt/schema": 3.0.0-rc.10
"@types/lodash-es": ^4.17.6 "@types/lodash-es": ^4.17.6
"@types/pify": ^5.0.1 "@types/pify": ^5.0.1
"@types/webpack-bundle-analyzer": ^4.4.2 "@types/webpack-bundle-analyzer": ^4.4.2
@ -10392,8 +10392,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.9 "@nuxt/kit": 3.0.0-rc.10
"@nuxt/schema": 3.0.0-rc.9 "@nuxt/schema": 3.0.0-rc.10
"@types/clear": ^0 "@types/clear": ^0
"@types/flat": ^5.0.2 "@types/flat": ^5.0.2
"@types/mri": ^1.1.1 "@types/mri": ^1.1.1
@ -10475,11 +10475,11 @@ __metadata:
resolution: "nuxt@workspace:packages/nuxt" resolution: "nuxt@workspace:packages/nuxt"
dependencies: dependencies:
"@nuxt/devalue": ^2.0.0 "@nuxt/devalue": ^2.0.0
"@nuxt/kit": 3.0.0-rc.9 "@nuxt/kit": 3.0.0-rc.10
"@nuxt/schema": 3.0.0-rc.9 "@nuxt/schema": 3.0.0-rc.10
"@nuxt/telemetry": ^2.1.5 "@nuxt/telemetry": ^2.1.5
"@nuxt/ui-templates": ^0.3.3 "@nuxt/ui-templates": ^0.3.3
"@nuxt/vite-builder": 3.0.0-rc.9 "@nuxt/vite-builder": 3.0.0-rc.10
"@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.39 "@vue/reactivity": ^3.2.39
@ -10499,7 +10499,7 @@ __metadata:
magic-string: ^0.26.3 magic-string: ^0.26.3
mlly: ^0.5.14 mlly: ^0.5.14
nitropack: ^0.5.3 nitropack: ^0.5.3
nuxi: 3.0.0-rc.9 nuxi: 3.0.0-rc.10
ohash: ^0.1.5 ohash: ^0.1.5
ohmyfetch: ^0.4.18 ohmyfetch: ^0.4.18
pathe: ^0.3.7 pathe: ^0.3.7