From 646fd603b19e8f1e866bf7c6517e637268b20ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=BChnel?= Date: Wed, 4 Apr 2018 09:49:45 +0200 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4615b6..5fc99d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,44 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [3.0.0](https://github.com/micromata/baumeister/compare/3.0.0-beta.1...3.0.0) (2018-04-04) + + +### Code Refactoring + +* **scripts:** serve build via `npm run build:serve` ([ce2cc70](https://github.com/micromata/baumeister/commit/ce2cc70)) + + +### Features + +* add PRODUCTION constant to ESLint config ([bb0c954](https://github.com/micromata/baumeister/commit/bb0c954)) +* improve the cacheability of the vendor bundle ([735f2e6](https://github.com/micromata/baumeister/commit/735f2e6)) +* reduce noise in terminal (especially in watch mode) ([90a84bd](https://github.com/micromata/baumeister/commit/90a84bd)) +* setup Babel plugin transform-imports ([da517ed](https://github.com/micromata/baumeister/commit/da517ed)) +* setup tree shaking ([90561f9](https://github.com/micromata/baumeister/commit/90561f9)) + + +### BREAKING CHANGES + +* **scripts:** Change the npm script name fpr serving the dist directory from `npm run build:check ` to `npm run build:serve` +* The webpack runtime has moved into a separate file. Therefore you need to add a reference to that file into your HTML / Handlebars file(s) before the vendor bundle: + + ```html + + @@runtime.js + + + @@vendor.js + + + @@app.js + ``` + +See for details about the why. + + + # [3.0.0-beta.1](https://github.com/micromata/baumeister/compare/3.0.0-beta.0...3.0.0-beta.1) (2018-03-21) diff --git a/package-lock.json b/package-lock.json index 713f25e..577ef1b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "baumeister", - "version": "3.0.0-beta.1", + "version": "3.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5918526..8c65c0c 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "node": ">=6.0.0" }, "license": "MIT", - "version": "3.0.0-beta.1", + "version": "3.0.0", "repository": "micromata/baumeister", "private": true, "scripts": {