From 792e9f47633f21163a1fa609e2e3696d627b6321 Mon Sep 17 00:00:00 2001 From: Kevin Marrec Date: Tue, 29 Jan 2019 20:19:21 +0100 Subject: [PATCH 1/7] fix tsconfig + remove forgotten duplicated test (#4886) --- packages/typescript/src/index.js | 5 ++- packages/typescript/test/setup.test.js | 5 ++- packages/typescript/tsconfig.json | 1 + test/unit/typescript.setup.test.js | 46 -------------------------- 4 files changed, 9 insertions(+), 48 deletions(-) delete mode 100644 test/unit/typescript.setup.test.js diff --git a/packages/typescript/src/index.js b/packages/typescript/src/index.js index c6ec5f4a5c..4631bdedd5 100644 --- a/packages/typescript/src/index.js +++ b/packages/typescript/src/index.js @@ -44,6 +44,9 @@ export async function setup(tsConfigPath) { } // https://github.com/TypeStrong/ts-node register({ - project: tsConfigPath + project: tsConfigPath, + compilerOptions: { + module: 'commonjs' + } }) } diff --git a/packages/typescript/test/setup.test.js b/packages/typescript/test/setup.test.js index f111a33fd8..2f50ed5829 100644 --- a/packages/typescript/test/setup.test.js +++ b/packages/typescript/test/setup.test.js @@ -35,7 +35,10 @@ describe('typescript setup', () => { expect(register).toHaveBeenCalledTimes(1) expect(register).toHaveBeenCalledWith({ - project: tsConfigPath + project: tsConfigPath, + compilerOptions: { + module: 'commonjs' + } }) }) diff --git a/packages/typescript/tsconfig.json b/packages/typescript/tsconfig.json index bd217e8b00..d4a6699b61 100644 --- a/packages/typescript/tsconfig.json +++ b/packages/typescript/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "target": "esnext", + "module": "esnext", "moduleResolution": "node", "lib": [ "esnext", diff --git a/test/unit/typescript.setup.test.js b/test/unit/typescript.setup.test.js deleted file mode 100644 index f111a33fd8..0000000000 --- a/test/unit/typescript.setup.test.js +++ /dev/null @@ -1,46 +0,0 @@ -import { resolve } from 'path' -import { exists, mkdirp, readJSON, remove } from 'fs-extra' -import { register } from 'ts-node' -import { setup as setupTypeScript } from '@nuxt/typescript' - -jest.mock('ts-node') - -describe('typescript setup', () => { - const rootDir = 'tmp' - const tsConfigPath = resolve(rootDir, 'tsconfig.json') - - beforeAll(async () => { - // We're assuming that rootDir provided to setupTypeScript is existing so we create the tested one - await mkdirp(rootDir) - await setupTypeScript(tsConfigPath) - }) - - test('tsconfig.json has been generated if missing', async () => { - expect(await exists(tsConfigPath)).toBe(true) - expect(await readJSON(tsConfigPath)).toEqual({ - extends: '@nuxt/typescript', - compilerOptions: { - baseUrl: '.', - types: [ - '@types/node', - '@nuxt/vue-app' - ] - } - }) - }) - - test('ts-node has been registered once', async () => { - // Call setupTypeScript a second time to test guard - await setupTypeScript(tsConfigPath) - - expect(register).toHaveBeenCalledTimes(1) - expect(register).toHaveBeenCalledWith({ - project: tsConfigPath - }) - }) - - afterAll(async () => { - // Clean workspace by removing the temporary folder (and the generated tsconfig.json at the same time) - await remove(tsConfigPath) - }) -}) From 2b30915950bc23480f356a41ffa626d3b0509fa4 Mon Sep 17 00:00:00 2001 From: "Xin Du (Clark)" Date: Tue, 29 Jan 2019 20:29:21 +0000 Subject: [PATCH 2/7] hotfix: disable extract-css-chunks-webpack-plugin in dev mode (#4888) --- packages/config/src/options.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/config/src/options.js b/packages/config/src/options.js index 90973da87f..6abedf12a3 100644 --- a/packages/config/src/options.js +++ b/packages/config/src/options.js @@ -291,6 +291,10 @@ export function getNuxtConfig(_options) { options.build.optimization.minimize = !options.dev } + if (options.dev) { + options.build.extractCSS = false + } + // Enable optimizeCSS only when extractCSS is enabled if (options.build.optimizeCSS === undefined) { options.build.optimizeCSS = options.build.extractCSS ? {} : false From a614fd3f81f812f024e41ee35548150425d00c39 Mon Sep 17 00:00:00 2001 From: "Xin Du (Clark)" Date: Tue, 29 Jan 2019 22:07:13 +0000 Subject: [PATCH 3/7] hotfix: extractCSS error in dev mode (#4892) --- packages/config/src/options.js | 4 ---- packages/webpack/src/config/base.js | 30 +++++++++++++++-------------- 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/packages/config/src/options.js b/packages/config/src/options.js index 6abedf12a3..90973da87f 100644 --- a/packages/config/src/options.js +++ b/packages/config/src/options.js @@ -291,10 +291,6 @@ export function getNuxtConfig(_options) { options.build.optimization.minimize = !options.dev } - if (options.dev) { - options.build.extractCSS = false - } - // Enable optimizeCSS only when extractCSS is enabled if (options.build.optimizeCSS === undefined) { options.build.optimizeCSS = options.build.extractCSS ? {} : false diff --git a/packages/webpack/src/config/base.js b/packages/webpack/src/config/base.js index 13bfe40aad..ab458b88d1 100644 --- a/packages/webpack/src/config/base.js +++ b/packages/webpack/src/config/base.js @@ -327,15 +327,27 @@ export default class WebpackBaseConfig { } plugins() { - const plugins = [new VueLoader.VueLoaderPlugin()] - - Array.prototype.push.apply(plugins, this.options.build.plugins || []) + const plugins = [] // Add timefix-plugin before others plugins if (this.options.dev) { - plugins.unshift(new TimeFixPlugin()) + plugins.push(new TimeFixPlugin()) } + // CSS extraction) + if (this.options.build.extractCSS) { + plugins.push(new ExtractCssChunksPlugin(Object.assign({ + filename: this.getFileName('css'), + chunkFilename: this.getFileName('css'), + // TODO: https://github.com/faceyspacey/extract-css-chunks-webpack-plugin/issues/132 + reloadAll: true + }, this.options.build.extractCSS))) + } + + plugins.push(new VueLoader.VueLoaderPlugin()) + + Array.prototype.push.apply(plugins, this.options.build.plugins || []) + // Hide warnings about plugins without a default export (#1179) plugins.push(new WarnFixPlugin()) @@ -370,16 +382,6 @@ export default class WebpackBaseConfig { } })) - // CSS extraction) - if (this.options.build.extractCSS) { - plugins.push(new ExtractCssChunksPlugin(Object.assign({ - filename: this.getFileName('css'), - chunkFilename: this.getFileName('css'), - // TODO: https://github.com/faceyspacey/extract-css-chunks-webpack-plugin/issues/132 - reloadAll: true - }, this.options.build.extractCSS))) - } - if (this.options.build.hardSource) { plugins.push(new HardSourcePlugin(Object.assign({}, this.options.build.hardSource))) } From b2abb499f817a5800504f2cf31374e95a3052010 Mon Sep 17 00:00:00 2001 From: phof <37412+phof@users.noreply.github.com> Date: Wed, 30 Jan 2019 12:34:33 +0100 Subject: [PATCH 4/7] Fixes #4882 (#4893) --- packages/vue-app/template/components/nuxt-link.client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue-app/template/components/nuxt-link.client.js b/packages/vue-app/template/components/nuxt-link.client.js index 7e4b35585e..4ae3791aa8 100644 --- a/packages/vue-app/template/components/nuxt-link.client.js +++ b/packages/vue-app/template/components/nuxt-link.client.js @@ -94,7 +94,7 @@ export default { }<% if (router.linkPrefetchedClass) { %>, addPrefetchedClass() { if (this.prefetchedClass !== 'false') { - this.$el.className += (this.$el.className + ' ' + this.prefetchedClass).trim() + this.$el.className = (this.$el.className + ' ' + this.prefetchedClass).trim() } }<% } %> } From ade4bbe48652b747e48318e11587b18ab6b68984 Mon Sep 17 00:00:00 2001 From: Clark Du Date: Wed, 30 Jan 2019 14:07:33 +0000 Subject: [PATCH 5/7] v2.4.1 --- CHANGELOG.md | 11 +++++++++++ distributions/nuxt-legacy/CHANGELOG.md | 8 ++++++++ distributions/nuxt-legacy/package.json | 12 ++++++------ distributions/nuxt-start/CHANGELOG.md | 8 ++++++++ distributions/nuxt-start/package.json | 6 +++--- distributions/nuxt-ts/CHANGELOG.md | 8 ++++++++ distributions/nuxt-ts/package.json | 14 +++++++------- distributions/nuxt/CHANGELOG.md | 8 ++++++++ distributions/nuxt/package.json | 12 ++++++------ lerna.json | 2 +- packages/babel-preset-app/CHANGELOG.md | 8 ++++++++ packages/babel-preset-app/package.json | 2 +- packages/builder/CHANGELOG.md | 8 ++++++++ packages/builder/package.json | 6 +++--- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 4 ++-- packages/config/CHANGELOG.md | 8 ++++++++ packages/config/package.json | 4 ++-- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 10 +++++----- packages/generator/CHANGELOG.md | 8 ++++++++ packages/generator/package.json | 4 ++-- packages/server/CHANGELOG.md | 8 ++++++++ packages/server/package.json | 6 +++--- packages/typescript/CHANGELOG.md | 8 ++++++++ packages/typescript/package.json | 2 +- packages/utils/CHANGELOG.md | 8 ++++++++ packages/utils/package.json | 2 +- packages/vue-app/CHANGELOG.md | 8 ++++++++ packages/vue-app/package.json | 2 +- packages/vue-renderer/CHANGELOG.md | 8 ++++++++ packages/vue-renderer/package.json | 4 ++-- packages/webpack/CHANGELOG.md | 8 ++++++++ packages/webpack/package.json | 6 +++--- 34 files changed, 188 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d71f6d7176..eefa75b116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + + +### Bug Fixes + +* keepAliveProps broken in ([#4521](https://github.com/nuxt/nuxt.js/issues/4521)) ([b48b220](https://github.com/nuxt/nuxt.js/commit/b48b220)) + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/distributions/nuxt-legacy/CHANGELOG.md b/distributions/nuxt-legacy/CHANGELOG.md index bec4f68f7d..7738e95d9b 100644 --- a/distributions/nuxt-legacy/CHANGELOG.md +++ b/distributions/nuxt-legacy/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package nuxt-legacy + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/distributions/nuxt-legacy/package.json b/distributions/nuxt-legacy/package.json index dcc12b31f2..5ed80c4f7b 100644 --- a/distributions/nuxt-legacy/package.json +++ b/distributions/nuxt-legacy/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-legacy", - "version": "2.4.0", + "version": "2.4.1", "description": "Legacy build of Nuxt.js for Node.js < 8.0.0", "keywords": [ "nuxt", @@ -54,12 +54,12 @@ "@babel/polyfill": "^7.2.5", "@babel/preset-env": "^7.3.1", "@babel/register": "^7.0.0", - "@nuxt/builder": "2.4.0", - "@nuxt/cli": "2.4.0", - "@nuxt/core": "2.4.0", - "@nuxt/generator": "2.4.0", + "@nuxt/builder": "2.4.1", + "@nuxt/cli": "2.4.1", + "@nuxt/core": "2.4.1", + "@nuxt/generator": "2.4.1", "@nuxt/opencollective": "^0.2.1", - "@nuxt/webpack": "2.4.0" + "@nuxt/webpack": "2.4.1" }, "engines": { "node": ">=6.0.0", diff --git a/distributions/nuxt-start/CHANGELOG.md b/distributions/nuxt-start/CHANGELOG.md index f977ecec9a..71a87d0a7a 100644 --- a/distributions/nuxt-start/CHANGELOG.md +++ b/distributions/nuxt-start/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package nuxt-start + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/distributions/nuxt-start/package.json b/distributions/nuxt-start/package.json index 38642a2911..83f27571b3 100644 --- a/distributions/nuxt-start/package.json +++ b/distributions/nuxt-start/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-start", - "version": "2.4.0", + "version": "2.4.1", "description": "Starts Nuxt.js Application in production mode", "keywords": [ "nuxt", @@ -52,8 +52,8 @@ "main": "dist/nuxt-start.js", "bin": "bin/nuxt-start.js", "dependencies": { - "@nuxt/cli": "2.4.0", - "@nuxt/core": "2.4.0", + "@nuxt/cli": "2.4.1", + "@nuxt/core": "2.4.1", "vue": "^2.5.22", "vue-meta": "^1.5.8", "vue-no-ssr": "^1.1.1", diff --git a/distributions/nuxt-ts/CHANGELOG.md b/distributions/nuxt-ts/CHANGELOG.md index 3f900f5c8c..07d0a7a41e 100644 --- a/distributions/nuxt-ts/CHANGELOG.md +++ b/distributions/nuxt-ts/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package nuxt-ts + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/distributions/nuxt-ts/package.json b/distributions/nuxt-ts/package.json index dee318d1a8..575bde8155 100644 --- a/distributions/nuxt-ts/package.json +++ b/distributions/nuxt-ts/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-ts", - "version": "2.4.0", + "version": "2.4.1", "description": "Nuxt With Runtime Typescript Support", "keywords": [ "nuxt", @@ -56,13 +56,13 @@ "nuxts": "bin/nuxt-ts.js" }, "dependencies": { - "@nuxt/builder": "2.4.0", - "@nuxt/cli": "2.4.0", - "@nuxt/core": "2.4.0", - "@nuxt/generator": "2.4.0", + "@nuxt/builder": "2.4.1", + "@nuxt/cli": "2.4.1", + "@nuxt/core": "2.4.1", + "@nuxt/generator": "2.4.1", "@nuxt/opencollective": "^0.2.1", - "@nuxt/typescript": "2.4.0", - "@nuxt/webpack": "2.4.0" + "@nuxt/typescript": "2.4.1", + "@nuxt/webpack": "2.4.1" }, "engines": { "node": ">=6.0.0", diff --git a/distributions/nuxt/CHANGELOG.md b/distributions/nuxt/CHANGELOG.md index bec4f68f7d..128577695b 100644 --- a/distributions/nuxt/CHANGELOG.md +++ b/distributions/nuxt/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package nuxt + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/distributions/nuxt/package.json b/distributions/nuxt/package.json index 4dc9b6b7a5..aba94a00fe 100644 --- a/distributions/nuxt/package.json +++ b/distributions/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "nuxt", - "version": "2.4.0", + "version": "2.4.1", "description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)", "keywords": [ "nuxt", @@ -54,12 +54,12 @@ "postinstall": "opencollective || exit 0" }, "dependencies": { - "@nuxt/builder": "2.4.0", - "@nuxt/cli": "2.4.0", - "@nuxt/core": "2.4.0", - "@nuxt/generator": "2.4.0", + "@nuxt/builder": "2.4.1", + "@nuxt/cli": "2.4.1", + "@nuxt/core": "2.4.1", + "@nuxt/generator": "2.4.1", "@nuxt/opencollective": "^0.2.1", - "@nuxt/webpack": "2.4.0" + "@nuxt/webpack": "2.4.1" }, "engines": { "node": ">=8.0.0", diff --git a/lerna.json b/lerna.json index d1fdf1ffdb..75735026e2 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.4.0", + "version": "2.4.1", "npmClient": "yarn", "useWorkspaces": true, "conventionalCommits": true, diff --git a/packages/babel-preset-app/CHANGELOG.md b/packages/babel-preset-app/CHANGELOG.md index 05c89b62e2..c321988e9e 100644 --- a/packages/babel-preset-app/CHANGELOG.md +++ b/packages/babel-preset-app/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/babel-preset-app + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/babel-preset-app/package.json b/packages/babel-preset-app/package.json index 1798a8544e..baa05a3404 100644 --- a/packages/babel-preset-app/package.json +++ b/packages/babel-preset-app/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/babel-preset-app", - "version": "2.4.0", + "version": "2.4.1", "description": "babel-preset-app for nuxt.js", "repository": "nuxt/nuxt.js", "license": "MIT", diff --git a/packages/builder/CHANGELOG.md b/packages/builder/CHANGELOG.md index a4f81a7c2c..059455472d 100644 --- a/packages/builder/CHANGELOG.md +++ b/packages/builder/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/builder + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/builder/package.json b/packages/builder/package.json index 33e7cafead..b120ad2149 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/builder", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -9,8 +9,8 @@ "main": "dist/builder.js", "dependencies": { "@nuxt/devalue": "^1.2.0", - "@nuxt/utils": "2.4.0", - "@nuxt/vue-app": "2.4.0", + "@nuxt/utils": "2.4.1", + "@nuxt/vue-app": "2.4.1", "chokidar": "^2.0.4", "consola": "^2.3.2", "fs-extra": "^7.0.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index db89e1a776..967001914a 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/cli + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/cli/package.json b/packages/cli/package.json index df00092fda..75c6b10f08 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/cli", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -12,7 +12,7 @@ "nuxt-cli": "bin/nuxt-cli.js" }, "dependencies": { - "@nuxt/config": "2.4.0", + "@nuxt/config": "2.4.1", "boxen": "^2.1.0", "chalk": "^2.4.2", "consola": "^2.3.2", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 27a6de3236..c498da4c3e 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/config + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/config/package.json b/packages/config/package.json index 4eb168c295..b3cb60748f 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/config", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,7 +8,7 @@ ], "main": "dist/config.js", "dependencies": { - "@nuxt/utils": "2.4.0", + "@nuxt/utils": "2.4.1", "consola": "^2.3.2", "std-env": "^2.2.1" }, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 01dd199ff9..680ad5355f 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/core + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/core/package.json b/packages/core/package.json index ae4f4e929d..2fbd91f5a7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/core", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,11 +8,11 @@ ], "main": "dist/core.js", "dependencies": { - "@nuxt/config": "2.4.0", + "@nuxt/config": "2.4.1", "@nuxt/devalue": "^1.2.0", - "@nuxt/server": "2.4.0", - "@nuxt/utils": "2.4.0", - "@nuxt/vue-renderer": "2.4.0", + "@nuxt/server": "2.4.1", + "@nuxt/utils": "2.4.1", + "@nuxt/vue-renderer": "2.4.1", "consola": "^2.3.2", "debug": "^4.1.1", "esm": "^3.1.4", diff --git a/packages/generator/CHANGELOG.md b/packages/generator/CHANGELOG.md index 903412504b..351ba91cd7 100644 --- a/packages/generator/CHANGELOG.md +++ b/packages/generator/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/generator + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/generator/package.json b/packages/generator/package.json index 75fc1909ff..52006a0e01 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/generator", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,7 +8,7 @@ ], "main": "dist/generator.js", "dependencies": { - "@nuxt/utils": "2.4.0", + "@nuxt/utils": "2.4.1", "chalk": "^2.4.2", "consola": "^2.3.2", "fs-extra": "^7.0.1", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 3982de9f7e..e443214027 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/server + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/server/package.json b/packages/server/package.json index 294d0c77c7..ec5252d224 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/server", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,8 +8,8 @@ ], "main": "dist/server.js", "dependencies": { - "@nuxt/config": "2.4.0", - "@nuxt/utils": "2.4.0", + "@nuxt/config": "2.4.1", + "@nuxt/utils": "2.4.1", "@nuxtjs/youch": "^4.2.3", "chalk": "^2.4.2", "compression": "^1.7.3", diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index a048aeec10..7adf8178e4 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/typescript + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 438f8796fa..5431300033 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/typescript", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 47ce0a3968..aad53e641d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/utils + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/utils/package.json b/packages/utils/package.json index 41708916e5..16933742d7 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/utils", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/vue-app/CHANGELOG.md b/packages/vue-app/CHANGELOG.md index 41f3941a8b..c2cbe02b7f 100644 --- a/packages/vue-app/CHANGELOG.md +++ b/packages/vue-app/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/vue-app + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/vue-app/package.json b/packages/vue-app/package.json index 273e5a42a6..87f706498a 100644 --- a/packages/vue-app/package.json +++ b/packages/vue-app/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/vue-app", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/vue-renderer/CHANGELOG.md b/packages/vue-renderer/CHANGELOG.md index 36ae04c5ac..a235c784ce 100644 --- a/packages/vue-renderer/CHANGELOG.md +++ b/packages/vue-renderer/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/vue-renderer + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/vue-renderer/package.json b/packages/vue-renderer/package.json index 8a1c3b37f1..6656108ea8 100644 --- a/packages/vue-renderer/package.json +++ b/packages/vue-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/vue-renderer", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -9,7 +9,7 @@ "main": "dist/vue-renderer.js", "dependencies": { "@nuxt/devalue": "^1.2.0", - "@nuxt/utils": "2.4.0", + "@nuxt/utils": "2.4.1", "consola": "^2.3.2", "fs-extra": "^7.0.1", "lru-cache": "^5.1.1", diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 6a3cdb2352..c1fb67f89b 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -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. +## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) + +**Note:** Version bump only for package @nuxt/webpack + + + + + # [2.4.0](https://github.com/nuxt/nuxt.js/compare/v2.3.4...v2.4.0) (2019-01-28) diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 59be896de5..b57cc38575 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/webpack", - "version": "2.4.0", + "version": "2.4.1", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -10,9 +10,9 @@ "dependencies": { "@babel/core": "^7.2.2", "@babel/polyfill": "^7.2.5", - "@nuxt/babel-preset-app": "2.4.0", + "@nuxt/babel-preset-app": "2.4.1", "@nuxt/friendly-errors-webpack-plugin": "^2.4.0", - "@nuxt/utils": "2.4.0", + "@nuxt/utils": "2.4.1", "babel-loader": "^8.0.5", "cache-loader": "^2.0.1", "caniuse-lite": "^1.0.30000932", From 9448bb26ff2dbf0cc2707a13ecb9d07b5fb8082c Mon Sep 17 00:00:00 2001 From: Clark Du Date: Wed, 30 Jan 2019 15:12:40 +0000 Subject: [PATCH 6/7] doc: change nuxt icon --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce940cac15..680281796c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

+


Build Status Azure Build Status From 32b0f155c97a5c7f7cb7cc450274e10a492c9c39 Mon Sep 17 00:00:00 2001 From: Clark Du Date: Wed, 30 Jan 2019 15:15:05 +0000 Subject: [PATCH 7/7] v2.4.2 --- CHANGELOG.md | 8 ++++++++ distributions/nuxt-legacy/CHANGELOG.md | 8 ++++++++ distributions/nuxt-legacy/package.json | 12 ++++++------ distributions/nuxt-start/CHANGELOG.md | 8 ++++++++ distributions/nuxt-start/package.json | 6 +++--- distributions/nuxt-ts/CHANGELOG.md | 8 ++++++++ distributions/nuxt-ts/package.json | 14 +++++++------- distributions/nuxt/CHANGELOG.md | 8 ++++++++ distributions/nuxt/package.json | 12 ++++++------ lerna.json | 2 +- packages/babel-preset-app/CHANGELOG.md | 8 ++++++++ packages/babel-preset-app/package.json | 2 +- packages/builder/CHANGELOG.md | 8 ++++++++ packages/builder/package.json | 6 +++--- packages/cli/CHANGELOG.md | 8 ++++++++ packages/cli/package.json | 4 ++-- packages/config/CHANGELOG.md | 8 ++++++++ packages/config/package.json | 4 ++-- packages/core/CHANGELOG.md | 8 ++++++++ packages/core/package.json | 10 +++++----- packages/generator/CHANGELOG.md | 8 ++++++++ packages/generator/package.json | 4 ++-- packages/server/CHANGELOG.md | 8 ++++++++ packages/server/package.json | 6 +++--- packages/typescript/CHANGELOG.md | 8 ++++++++ packages/typescript/package.json | 2 +- packages/utils/CHANGELOG.md | 8 ++++++++ packages/utils/package.json | 2 +- packages/vue-app/CHANGELOG.md | 8 ++++++++ packages/vue-app/package.json | 2 +- packages/vue-renderer/CHANGELOG.md | 8 ++++++++ packages/vue-renderer/package.json | 4 ++-- packages/webpack/CHANGELOG.md | 8 ++++++++ packages/webpack/package.json | 6 +++--- 34 files changed, 185 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eefa75b116..8425922e64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package nuxt.js + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) diff --git a/distributions/nuxt-legacy/CHANGELOG.md b/distributions/nuxt-legacy/CHANGELOG.md index 7738e95d9b..0256becebe 100644 --- a/distributions/nuxt-legacy/CHANGELOG.md +++ b/distributions/nuxt-legacy/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package nuxt-legacy + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package nuxt-legacy diff --git a/distributions/nuxt-legacy/package.json b/distributions/nuxt-legacy/package.json index 5ed80c4f7b..63481ecd84 100644 --- a/distributions/nuxt-legacy/package.json +++ b/distributions/nuxt-legacy/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-legacy", - "version": "2.4.1", + "version": "2.4.2", "description": "Legacy build of Nuxt.js for Node.js < 8.0.0", "keywords": [ "nuxt", @@ -54,12 +54,12 @@ "@babel/polyfill": "^7.2.5", "@babel/preset-env": "^7.3.1", "@babel/register": "^7.0.0", - "@nuxt/builder": "2.4.1", - "@nuxt/cli": "2.4.1", - "@nuxt/core": "2.4.1", - "@nuxt/generator": "2.4.1", + "@nuxt/builder": "2.4.2", + "@nuxt/cli": "2.4.2", + "@nuxt/core": "2.4.2", + "@nuxt/generator": "2.4.2", "@nuxt/opencollective": "^0.2.1", - "@nuxt/webpack": "2.4.1" + "@nuxt/webpack": "2.4.2" }, "engines": { "node": ">=6.0.0", diff --git a/distributions/nuxt-start/CHANGELOG.md b/distributions/nuxt-start/CHANGELOG.md index 71a87d0a7a..b3f7aaea4b 100644 --- a/distributions/nuxt-start/CHANGELOG.md +++ b/distributions/nuxt-start/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package nuxt-start + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package nuxt-start diff --git a/distributions/nuxt-start/package.json b/distributions/nuxt-start/package.json index 83f27571b3..258617ae8f 100644 --- a/distributions/nuxt-start/package.json +++ b/distributions/nuxt-start/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-start", - "version": "2.4.1", + "version": "2.4.2", "description": "Starts Nuxt.js Application in production mode", "keywords": [ "nuxt", @@ -52,8 +52,8 @@ "main": "dist/nuxt-start.js", "bin": "bin/nuxt-start.js", "dependencies": { - "@nuxt/cli": "2.4.1", - "@nuxt/core": "2.4.1", + "@nuxt/cli": "2.4.2", + "@nuxt/core": "2.4.2", "vue": "^2.5.22", "vue-meta": "^1.5.8", "vue-no-ssr": "^1.1.1", diff --git a/distributions/nuxt-ts/CHANGELOG.md b/distributions/nuxt-ts/CHANGELOG.md index 07d0a7a41e..39eff7b410 100644 --- a/distributions/nuxt-ts/CHANGELOG.md +++ b/distributions/nuxt-ts/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package nuxt-ts + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package nuxt-ts diff --git a/distributions/nuxt-ts/package.json b/distributions/nuxt-ts/package.json index 575bde8155..2159cbeeb3 100644 --- a/distributions/nuxt-ts/package.json +++ b/distributions/nuxt-ts/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-ts", - "version": "2.4.1", + "version": "2.4.2", "description": "Nuxt With Runtime Typescript Support", "keywords": [ "nuxt", @@ -56,13 +56,13 @@ "nuxts": "bin/nuxt-ts.js" }, "dependencies": { - "@nuxt/builder": "2.4.1", - "@nuxt/cli": "2.4.1", - "@nuxt/core": "2.4.1", - "@nuxt/generator": "2.4.1", + "@nuxt/builder": "2.4.2", + "@nuxt/cli": "2.4.2", + "@nuxt/core": "2.4.2", + "@nuxt/generator": "2.4.2", "@nuxt/opencollective": "^0.2.1", - "@nuxt/typescript": "2.4.1", - "@nuxt/webpack": "2.4.1" + "@nuxt/typescript": "2.4.2", + "@nuxt/webpack": "2.4.2" }, "engines": { "node": ">=6.0.0", diff --git a/distributions/nuxt/CHANGELOG.md b/distributions/nuxt/CHANGELOG.md index 128577695b..a46bb4a3f0 100644 --- a/distributions/nuxt/CHANGELOG.md +++ b/distributions/nuxt/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package nuxt + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package nuxt diff --git a/distributions/nuxt/package.json b/distributions/nuxt/package.json index aba94a00fe..f6a8aafe38 100644 --- a/distributions/nuxt/package.json +++ b/distributions/nuxt/package.json @@ -1,6 +1,6 @@ { "name": "nuxt", - "version": "2.4.1", + "version": "2.4.2", "description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)", "keywords": [ "nuxt", @@ -54,12 +54,12 @@ "postinstall": "opencollective || exit 0" }, "dependencies": { - "@nuxt/builder": "2.4.1", - "@nuxt/cli": "2.4.1", - "@nuxt/core": "2.4.1", - "@nuxt/generator": "2.4.1", + "@nuxt/builder": "2.4.2", + "@nuxt/cli": "2.4.2", + "@nuxt/core": "2.4.2", + "@nuxt/generator": "2.4.2", "@nuxt/opencollective": "^0.2.1", - "@nuxt/webpack": "2.4.1" + "@nuxt/webpack": "2.4.2" }, "engines": { "node": ">=8.0.0", diff --git a/lerna.json b/lerna.json index 75735026e2..0dbaacc04b 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.4.1", + "version": "2.4.2", "npmClient": "yarn", "useWorkspaces": true, "conventionalCommits": true, diff --git a/packages/babel-preset-app/CHANGELOG.md b/packages/babel-preset-app/CHANGELOG.md index c321988e9e..beb3b77f7f 100644 --- a/packages/babel-preset-app/CHANGELOG.md +++ b/packages/babel-preset-app/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/babel-preset-app + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/babel-preset-app diff --git a/packages/babel-preset-app/package.json b/packages/babel-preset-app/package.json index baa05a3404..cc39e44f7b 100644 --- a/packages/babel-preset-app/package.json +++ b/packages/babel-preset-app/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/babel-preset-app", - "version": "2.4.1", + "version": "2.4.2", "description": "babel-preset-app for nuxt.js", "repository": "nuxt/nuxt.js", "license": "MIT", diff --git a/packages/builder/CHANGELOG.md b/packages/builder/CHANGELOG.md index 059455472d..2e6ab098c6 100644 --- a/packages/builder/CHANGELOG.md +++ b/packages/builder/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/builder + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/builder diff --git a/packages/builder/package.json b/packages/builder/package.json index b120ad2149..f5f8b66cf0 100644 --- a/packages/builder/package.json +++ b/packages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/builder", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -9,8 +9,8 @@ "main": "dist/builder.js", "dependencies": { "@nuxt/devalue": "^1.2.0", - "@nuxt/utils": "2.4.1", - "@nuxt/vue-app": "2.4.1", + "@nuxt/utils": "2.4.2", + "@nuxt/vue-app": "2.4.2", "chokidar": "^2.0.4", "consola": "^2.3.2", "fs-extra": "^7.0.1", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 967001914a..b3ce5932d1 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/cli + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/cli diff --git a/packages/cli/package.json b/packages/cli/package.json index 75c6b10f08..ab7800a1b1 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/cli", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -12,7 +12,7 @@ "nuxt-cli": "bin/nuxt-cli.js" }, "dependencies": { - "@nuxt/config": "2.4.1", + "@nuxt/config": "2.4.2", "boxen": "^2.1.0", "chalk": "^2.4.2", "consola": "^2.3.2", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index c498da4c3e..71cba899b1 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/config + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/config diff --git a/packages/config/package.json b/packages/config/package.json index b3cb60748f..336c9b9aaf 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/config", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,7 +8,7 @@ ], "main": "dist/config.js", "dependencies": { - "@nuxt/utils": "2.4.1", + "@nuxt/utils": "2.4.2", "consola": "^2.3.2", "std-env": "^2.2.1" }, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 680ad5355f..f5b7081509 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/core + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/core diff --git a/packages/core/package.json b/packages/core/package.json index 2fbd91f5a7..5c0616e9a1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/core", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,11 +8,11 @@ ], "main": "dist/core.js", "dependencies": { - "@nuxt/config": "2.4.1", + "@nuxt/config": "2.4.2", "@nuxt/devalue": "^1.2.0", - "@nuxt/server": "2.4.1", - "@nuxt/utils": "2.4.1", - "@nuxt/vue-renderer": "2.4.1", + "@nuxt/server": "2.4.2", + "@nuxt/utils": "2.4.2", + "@nuxt/vue-renderer": "2.4.2", "consola": "^2.3.2", "debug": "^4.1.1", "esm": "^3.1.4", diff --git a/packages/generator/CHANGELOG.md b/packages/generator/CHANGELOG.md index 351ba91cd7..242084d70b 100644 --- a/packages/generator/CHANGELOG.md +++ b/packages/generator/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/generator + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/generator diff --git a/packages/generator/package.json b/packages/generator/package.json index 52006a0e01..a7d2f0c4c3 100644 --- a/packages/generator/package.json +++ b/packages/generator/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/generator", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,7 +8,7 @@ ], "main": "dist/generator.js", "dependencies": { - "@nuxt/utils": "2.4.1", + "@nuxt/utils": "2.4.2", "chalk": "^2.4.2", "consola": "^2.3.2", "fs-extra": "^7.0.1", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index e443214027..b7a66f7dd8 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/server + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/server diff --git a/packages/server/package.json b/packages/server/package.json index ec5252d224..2f61efd10c 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/server", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -8,8 +8,8 @@ ], "main": "dist/server.js", "dependencies": { - "@nuxt/config": "2.4.1", - "@nuxt/utils": "2.4.1", + "@nuxt/config": "2.4.2", + "@nuxt/utils": "2.4.2", "@nuxtjs/youch": "^4.2.3", "chalk": "^2.4.2", "compression": "^1.7.3", diff --git a/packages/typescript/CHANGELOG.md b/packages/typescript/CHANGELOG.md index 7adf8178e4..296f4c98dd 100644 --- a/packages/typescript/CHANGELOG.md +++ b/packages/typescript/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/typescript + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/typescript diff --git a/packages/typescript/package.json b/packages/typescript/package.json index 5431300033..04b58d4654 100644 --- a/packages/typescript/package.json +++ b/packages/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/typescript", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index aad53e641d..abf2828edd 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/utils + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/utils diff --git a/packages/utils/package.json b/packages/utils/package.json index 16933742d7..c33fdb0ff0 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/utils", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/vue-app/CHANGELOG.md b/packages/vue-app/CHANGELOG.md index c2cbe02b7f..ed6cc3c0e2 100644 --- a/packages/vue-app/CHANGELOG.md +++ b/packages/vue-app/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/vue-app + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/vue-app diff --git a/packages/vue-app/package.json b/packages/vue-app/package.json index 87f706498a..18b16f77cd 100644 --- a/packages/vue-app/package.json +++ b/packages/vue-app/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/vue-app", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ diff --git a/packages/vue-renderer/CHANGELOG.md b/packages/vue-renderer/CHANGELOG.md index a235c784ce..f9d28d59ea 100644 --- a/packages/vue-renderer/CHANGELOG.md +++ b/packages/vue-renderer/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/vue-renderer + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/vue-renderer diff --git a/packages/vue-renderer/package.json b/packages/vue-renderer/package.json index 6656108ea8..d1c64ca7b0 100644 --- a/packages/vue-renderer/package.json +++ b/packages/vue-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/vue-renderer", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -9,7 +9,7 @@ "main": "dist/vue-renderer.js", "dependencies": { "@nuxt/devalue": "^1.2.0", - "@nuxt/utils": "2.4.1", + "@nuxt/utils": "2.4.2", "consola": "^2.3.2", "fs-extra": "^7.0.1", "lru-cache": "^5.1.1", diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index c1fb67f89b..3c2abe1761 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -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. +## [2.4.2](https://github.com/nuxt/nuxt.js/compare/v2.4.1...v2.4.2) (2019-01-30) + +**Note:** Version bump only for package @nuxt/webpack + + + + + ## [2.4.1](https://github.com/nuxt/nuxt.js/compare/v2.4.0...v2.4.1) (2019-01-30) **Note:** Version bump only for package @nuxt/webpack diff --git a/packages/webpack/package.json b/packages/webpack/package.json index b57cc38575..ba2e251e64 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@nuxt/webpack", - "version": "2.4.1", + "version": "2.4.2", "repository": "nuxt/nuxt.js", "license": "MIT", "files": [ @@ -10,9 +10,9 @@ "dependencies": { "@babel/core": "^7.2.2", "@babel/polyfill": "^7.2.5", - "@nuxt/babel-preset-app": "2.4.1", + "@nuxt/babel-preset-app": "2.4.2", "@nuxt/friendly-errors-webpack-plugin": "^2.4.0", - "@nuxt/utils": "2.4.1", + "@nuxt/utils": "2.4.2", "babel-loader": "^8.0.5", "cache-loader": "^2.0.1", "caniuse-lite": "^1.0.30000932",