chore: release

- @nuxt/app@0.4.3
 - nuxt-cli@0.3.7
 - @nuxt/kit@0.6.3
 - @nuxt/nitro@0.9.0
 - nuxt3@0.7.4
 - @nuxt/pages@0.2.3
 - @nuxt/vite-builder@0.4.3
 - @nuxt/webpack-builder@0.4.3
This commit is contained in:
Daniel Roe 2021-06-16 12:36:06 +01:00
parent 2c5ceab003
commit 4095f96559
17 changed files with 129 additions and 39 deletions

View File

@ -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.4.3](https://github.com/nuxt/framework/compare/@nuxt/app@0.4.2...@nuxt/app@0.4.3) (2021-06-16)
### Bug Fixes
* add nitro client plugin ($fetch support) ([#223](https://github.com/nuxt/framework/issues/223)) ([e2d5a2f](https://github.com/nuxt/framework/commit/e2d5a2f4b3f27d1454321ab22958ef3941a02978)), closes [#213](https://github.com/nuxt/framework/issues/213)
## [0.4.2](https://github.com/nuxt/framework/compare/@nuxt/app@0.4.1...@nuxt/app@0.4.2) (2021-06-04)
**Note:** Version bump only for package @nuxt/app

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/app",
"version": "0.4.2",
"version": "0.4.3",
"repository": "nuxt/framework",
"license": "MIT",
"exports": {

View File

@ -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.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
## [0.3.6](https://github.com/nuxt/framework/compare/nuxt-cli@0.3.5...nuxt-cli@0.3.6) (2021-06-04)
**Note:** Version bump only for package nuxt-cli

View File

@ -1,6 +1,6 @@
{
"name": "nuxt-cli",
"version": "0.3.6",
"version": "0.3.7",
"repository": "nuxt/framework",
"license": "MIT",
"main": "./dist/index.js",
@ -20,7 +20,7 @@
"fsevents": "~2.3.2"
},
"devDependencies": {
"@nuxt/kit": "^0.6.2",
"@nuxt/kit": "^0.6.3",
"@types/clear": "^0",
"@types/debounce-promise": "^3",
"@types/mri": "^1.1.0",

View File

@ -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.3](https://github.com/nuxt/framework/compare/@nuxt/kit@0.6.2...@nuxt/kit@0.6.3) (2021-06-16)
### Bug Fixes
* **kit:** add `build.babel.plugins` default option and docs ([#224](https://github.com/nuxt/framework/issues/224)) ([2c5ceab](https://github.com/nuxt/framework/commit/2c5ceab003dfe898536ee089e967ec0cedc2c81e))
* **kit:** ignore @ alias without following slash (resolves [#210](https://github.com/nuxt/framework/issues/210)) ([eee4539](https://github.com/nuxt/framework/commit/eee45396d17ee6867913cf170d8aa95334bfd6c7))
## [0.6.2](https://github.com/nuxt/framework/compare/@nuxt/kit@0.6.1...@nuxt/kit@0.6.2) (2021-06-04)

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/kit",
"version": "0.6.2",
"version": "0.6.3",
"repository": "nuxt/framework",
"license": "MIT",
"main": "./dist/index.js",

View File

@ -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.9.0](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.8.0...@nuxt/nitro@0.9.0) (2021-06-16)
### Bug Fixes
* add nitro client plugin ($fetch support) ([#223](https://github.com/nuxt/framework/issues/223)) ([e2d5a2f](https://github.com/nuxt/framework/commit/e2d5a2f4b3f27d1454321ab22958ef3941a02978)), closes [#213](https://github.com/nuxt/framework/issues/213)
* **nitro:** set esbuild `target: '2019'` ([#189](https://github.com/nuxt/framework/issues/189)) ([7c85daa](https://github.com/nuxt/framework/commit/7c85daa64e8ba29d31f2de664e90e9cfb04a81b1))
### Features
* **nitro:** support netlify zero-config deployments ([#175](https://github.com/nuxt/framework/issues/175)) ([9750009](https://github.com/nuxt/framework/commit/9750009cc551bf50ee67007923bf798c95426108))
# [0.8.0](https://github.com/nuxt/framework/compare/@nuxt/nitro@0.7.2...@nuxt/nitro@0.8.0) (2021-06-04)

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/nitro",
"version": "0.8.0",
"version": "0.9.0",
"license": "MIT",
"main": "dist/index.js",
"types": "./types/index.d.ts",
@ -16,7 +16,7 @@
"@cloudflare/kv-asset-handler": "^0.1.2",
"@netlify/functions": "^0.7.2",
"@nuxt/devalue": "^1.2.5",
"@nuxt/kit": "^0.6.2",
"@nuxt/kit": "^0.6.3",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-inject": "^4.0.2",

View File

@ -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.7.4](https://github.com/nuxt/framework/compare/nuxt3@0.7.3...nuxt3@0.7.4) (2021-06-16)
### Bug Fixes
* **nuxt3:** add support for custom templates ([#225](https://github.com/nuxt/framework/issues/225)) ([5c67408](https://github.com/nuxt/framework/commit/5c6740819199d68ed64cb6afdc800df9fe0e1d4d))
* add nitro client plugin ($fetch support) ([#223](https://github.com/nuxt/framework/issues/223)) ([e2d5a2f](https://github.com/nuxt/framework/commit/e2d5a2f4b3f27d1454321ab22958ef3941a02978)), closes [#213](https://github.com/nuxt/framework/issues/213)
## [0.7.3](https://github.com/nuxt/framework/compare/nuxt3@0.7.2...nuxt3@0.7.3) (2021-06-04)
**Note:** Version bump only for package nuxt3

View File

@ -1,6 +1,6 @@
{
"name": "nuxt3",
"version": "0.7.3",
"version": "0.7.4",
"repository": "nuxt/framework",
"license": "MIT",
"main": "./dist/index.js",
@ -17,12 +17,12 @@
"nuxt-cli": "./bin/nuxt.js"
},
"dependencies": {
"@nuxt/app": "^0.4.2",
"@nuxt/kit": "^0.6.2",
"@nuxt/nitro": "^0.8.0",
"@nuxt/pages": "^0.2.2",
"@nuxt/vite-builder": "^0.4.2",
"@nuxt/webpack-builder": "^0.4.2",
"@nuxt/app": "^0.4.3",
"@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",
"chokidar": "^3.5.1",
"consola": "^2.15.3",
"defu": "^5.0.0",
@ -32,7 +32,7 @@
"hookable": "^4.4.1",
"ignore": "^5.1.8",
"lodash": "^4.17.21",
"nuxt-cli": "^0.3.6",
"nuxt-cli": "^0.3.7",
"scule": "^0.2.1",
"ufo": "^0.7.5",
"upath": "^2.0.1",

View File

@ -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.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
## [0.2.2](https://github.com/nuxt/framework/compare/@nuxt/pages@0.2.1...@nuxt/pages@0.2.2) (2021-06-04)
**Note:** Version bump only for package @nuxt/pages

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/pages",
"version": "0.2.2",
"version": "0.2.3",
"repository": "nuxt/framework",
"license": "MIT",
"types": "./dist/module.d.ts",
@ -12,7 +12,7 @@
"prepack": "unbuild"
},
"dependencies": {
"@nuxt/kit": "^0.6.2",
"@nuxt/kit": "^0.6.3",
"globby": "^11.0.3",
"ufo": "^0.7.5",
"upath": "^2.0.1",

View File

@ -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.4.3](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.4.2...@nuxt/vite-builder@0.4.3) (2021-06-16)
### Bug Fixes
* **vite:** add nuxt/app to noExternal ([5bd639a](https://github.com/nuxt/framework/commit/5bd639a4938ce15ea2584b831915123192c69aa0))
## [0.4.2](https://github.com/nuxt/framework/compare/@nuxt/vite-builder@0.4.1...@nuxt/vite-builder@0.4.2) (2021-06-04)
**Note:** Version bump only for package @nuxt/vite-builder

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/vite-builder",
"version": "0.4.2",
"version": "0.4.3",
"repository": "nuxt/framework",
"license": "MIT",
"main": "./dist/index.js",
@ -15,7 +15,7 @@
"unbuild": "^0.3.0"
},
"dependencies": {
"@nuxt/kit": "^0.6.2",
"@nuxt/kit": "^0.6.3",
"@vitejs/plugin-vue": "^1.2.3",
"@vue/compiler-sfc": "^3.1.1",
"chokidar": "^3.5.1",

View File

@ -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.4.3](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.4.2...@nuxt/webpack-builder@0.4.3) (2021-06-16)
### Bug Fixes
* **webpack:** find asset modules of chunk ([#198](https://github.com/nuxt/framework/issues/198)) ([8740ece](https://github.com/nuxt/framework/commit/8740ece29e8e2dbeac02742685d0e17c5ccf44ca))
## [0.4.2](https://github.com/nuxt/framework/compare/@nuxt/webpack-builder@0.4.1...@nuxt/webpack-builder@0.4.2) (2021-06-04)
**Note:** Version bump only for package @nuxt/webpack-builder

View File

@ -1,6 +1,6 @@
{
"name": "@nuxt/webpack-builder",
"version": "0.4.2",
"version": "0.4.3",
"repository": "nuxt/framework",
"license": "MIT",
"main": "./dist/index.js",
@ -13,7 +13,7 @@
"dependencies": {
"@babel/core": "^7.14.5",
"@nuxt/friendly-errors-webpack-plugin": "^2.5.1",
"@nuxt/kit": "^0.6.2",
"@nuxt/kit": "^0.6.3",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/compiler-sfc": "^3.1.1",
"babel-loader": "^8.2.2",

View File

@ -1634,7 +1634,7 @@ __metadata:
languageName: node
linkType: hard
"@nuxt/app@^0.4.2, @nuxt/app@workspace:packages/app":
"@nuxt/app@^0.4.3, @nuxt/app@workspace:packages/app":
version: 0.0.0-use.local
resolution: "@nuxt/app@workspace:packages/app"
dependencies:
@ -1671,7 +1671,7 @@ __metadata:
languageName: node
linkType: hard
"@nuxt/kit@^0.6.2, @nuxt/kit@workspace:packages/kit":
"@nuxt/kit@^0.6.3, @nuxt/kit@workspace:packages/kit":
version: 0.0.0-use.local
resolution: "@nuxt/kit@workspace:packages/kit"
dependencies:
@ -1693,14 +1693,14 @@ __metadata:
languageName: unknown
linkType: soft
"@nuxt/nitro@^0.8.0, @nuxt/nitro@workspace:packages/nitro":
"@nuxt/nitro@^0.9.0, @nuxt/nitro@workspace:packages/nitro":
version: 0.0.0-use.local
resolution: "@nuxt/nitro@workspace:packages/nitro"
dependencies:
"@cloudflare/kv-asset-handler": ^0.1.2
"@netlify/functions": ^0.7.2
"@nuxt/devalue": ^1.2.5
"@nuxt/kit": ^0.6.2
"@nuxt/kit": ^0.6.3
"@rollup/plugin-alias": ^3.1.2
"@rollup/plugin-commonjs": ^19.0.0
"@rollup/plugin-inject": ^4.0.2
@ -1761,11 +1761,11 @@ __metadata:
languageName: unknown
linkType: soft
"@nuxt/pages@^0.2.2, @nuxt/pages@workspace:packages/pages":
"@nuxt/pages@^0.2.3, @nuxt/pages@workspace:packages/pages":
version: 0.0.0-use.local
resolution: "@nuxt/pages@workspace:packages/pages"
dependencies:
"@nuxt/kit": ^0.6.2
"@nuxt/kit": ^0.6.3
globby: ^11.0.3
ufo: ^0.7.5
unbuild: ^0.3.0
@ -1776,11 +1776,11 @@ __metadata:
languageName: unknown
linkType: soft
"@nuxt/vite-builder@^0.4.2, @nuxt/vite-builder@workspace:packages/vite":
"@nuxt/vite-builder@^0.4.3, @nuxt/vite-builder@workspace:packages/vite":
version: 0.0.0-use.local
resolution: "@nuxt/vite-builder@workspace:packages/vite"
dependencies:
"@nuxt/kit": ^0.6.2
"@nuxt/kit": ^0.6.3
"@types/debounce": ^1.2.0
"@vitejs/plugin-vue": ^1.2.3
"@vue/compiler-sfc": ^3.1.1
@ -1795,13 +1795,13 @@ __metadata:
languageName: unknown
linkType: soft
"@nuxt/webpack-builder@^0.4.2, @nuxt/webpack-builder@workspace:packages/webpack":
"@nuxt/webpack-builder@^0.4.3, @nuxt/webpack-builder@workspace:packages/webpack":
version: 0.0.0-use.local
resolution: "@nuxt/webpack-builder@workspace:packages/webpack"
dependencies:
"@babel/core": ^7.14.5
"@nuxt/friendly-errors-webpack-plugin": ^2.5.1
"@nuxt/kit": ^0.6.2
"@nuxt/kit": ^0.6.3
"@types/pify": ^5.0.0
"@types/terser-webpack-plugin": ^5.0.3
"@types/webpack-bundle-analyzer": ^4.4.0
@ -9722,11 +9722,11 @@ __metadata:
languageName: node
linkType: hard
"nuxt-cli@^0.3.6, nuxt-cli@workspace:packages/cli":
"nuxt-cli@^0.3.7, nuxt-cli@workspace:packages/cli":
version: 0.0.0-use.local
resolution: "nuxt-cli@workspace:packages/cli"
dependencies:
"@nuxt/kit": ^0.6.2
"@nuxt/kit": ^0.6.3
"@types/clear": ^0
"@types/debounce-promise": ^3
"@types/mri": ^1.1.0
@ -9776,12 +9776,12 @@ __metadata:
version: 0.0.0-use.local
resolution: "nuxt3@workspace:packages/nuxt3"
dependencies:
"@nuxt/app": ^0.4.2
"@nuxt/kit": ^0.6.2
"@nuxt/nitro": ^0.8.0
"@nuxt/pages": ^0.2.2
"@nuxt/vite-builder": ^0.4.2
"@nuxt/webpack-builder": ^0.4.2
"@nuxt/app": ^0.4.3
"@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
"@types/fs-extra": ^9.0.11
"@types/hash-sum": ^1.0.0
"@types/lodash": ^4.14.170
@ -9794,7 +9794,7 @@ __metadata:
hookable: ^4.4.1
ignore: ^5.1.8
lodash: ^4.17.21
nuxt-cli: ^0.3.6
nuxt-cli: ^0.3.7
scule: ^0.2.1
ufo: ^0.7.5
unbuild: ^0.3.0