From db43093e6729443ef6aae7c7b98a66ac2bc0ee24 Mon Sep 17 00:00:00 2001 From: Michael Ciniawsky Date: Sun, 25 Feb 2018 22:16:39 +0100 Subject: [PATCH] chore(release): 2.0.10 --- CHANGELOG.md | 13 +++++++++++++ package-lock.json | 2 +- package.json | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81d39ad..768de1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ 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. + +## [2.0.10](https://github.com/webpac-contrib/karma-webpack/compare/v2.0.9...v2.0.10) (2018-02-25) + + +### Bug Fixes + +* **karma-webpack:** correctly coalesce `idx` (`{Number}`) in filepaths ([#287](https://github.com/webpac-contrib/karma-webpack/issues/287)) ([5fa2409](https://github.com/webpac-contrib/karma-webpack/commit/5fa2409)) +* correctly escape `{Regex}` in custom file handler ([#293](https://github.com/webpac-contrib/karma-webpack/issues/293)) ([906ed52](https://github.com/webpac-contrib/karma-webpack/commit/906ed52)) +* disable `webpack` rebuilds on karma `--single-run` ([41d1912](https://github.com/webpac-contrib/karma-webpack/commit/41d1912)) +* **package:** add `webpack >= v4.0.0` (`peerDependencies`) ([#301](https://github.com/webpac-contrib/karma-webpack/issues/301)) ([99ddad8](https://github.com/webpac-contrib/karma-webpack/commit/99ddad8)) + + + ## [2.0.9](https://github.com/webpack/karma-webpack/compare/v2.0.8...v2.0.9) (2017-12-14) diff --git a/package-lock.json b/package-lock.json index a18743d..f15a83d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "karma-webpack", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index dee6af9..57fd1eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "karma-webpack", - "version": "2.0.9", + "version": "2.0.10", "author": "Tobias Koppers @sokra", "description": "Use webpack with karma", "license": "MIT", @@ -11,7 +11,7 @@ "lib" ], "scripts": { - "start": "nom run build -- -w", + "start": "npm run build -- -w", "lint": "eslint --cache src test", "clean": "del-cli lib", "build": "cross-env NODE_ENV=production babel src -d lib --ignore 'src/**/*.test.js' --copy-files",