Skip to content
This repository was archived by the owner on Sep 9, 2021. It is now read-only.

Commit 77c599c

Browse files
chore(release): 1.1.1
1 parent d1a7a94 commit 77c599c

File tree

3 files changed

+22
-14
lines changed

3 files changed

+22
-14
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
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.
44

5+
<a name="1.1.1"></a>
6+
## [1.1.1](https://github.com/webpack-contrib/worker-loader/compare/v1.1.0...v1.1.1) (2018-02-25)
7+
8+
9+
### Bug Fixes
10+
11+
* **index:** add `webpack >= v4.0.0` support ([#128](https://github.com/webpack-contrib/worker-loader/issues/128)) ([d1a7a94](https://github.com/webpack-contrib/worker-loader/commit/d1a7a94))
12+
13+
14+
515
<a name="1.1.0"></a>
616
# [1.1.0](https://github.com/webpack-contrib/worker-loader/compare/v1.0.0...v1.1.0) (2017-10-24)
717

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "worker-loader",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"author": "Tobias Koppers @sokra",
55
"description": "worker loader module for webpack",
66
"main": "dist/cjs.js",
@@ -11,31 +11,30 @@
1111
"node": ">= 4.8 < 5.0.0 || >= 5.10"
1212
},
1313
"scripts": {
14-
"test": "jest",
15-
"posttest": "eslint .",
16-
"webpack-defaults": "webpack-defaults",
1714
"start": "npm run build -- -w",
18-
"appveyor:test": "npm run test",
1915
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
2016
"clean": "del-cli dist",
2117
"lint": "eslint --cache src test",
2218
"lint-staged": "lint-staged",
2319
"prebuild": "npm run clean",
24-
"prepublish": "npm run build",
20+
"prepare": "npm run build",
2521
"release": "standard-version",
2622
"security": "nsp check",
23+
"test": "jest",
2724
"test:watch": "jest --watch",
2825
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
2926
"travis:lint": "npm run lint && npm run security",
3027
"travis:test": "npm run test -- --runInBand",
31-
"travis:coverage": "npm run test:coverage -- --runInBand"
28+
"travis:coverage": "npm run test:coverage -- --runInBand",
29+
"appveyor:test": "npm run test",
30+
"defaults": "webpack-defaults"
3231
},
3332
"peerDependencies": {
34-
"webpack": "^2.0.0 || ^3.0.0"
33+
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
3534
},
3635
"dependencies": {
3736
"loader-utils": "^1.0.0",
38-
"schema-utils": "^0.3.0"
37+
"schema-utils": "^0.4.0"
3938
},
4039
"devDependencies": {
4140
"babel-cli": "^6.0.0",
@@ -57,10 +56,9 @@
5756
"webpack": "^3.0.0",
5857
"webpack-defaults": "^1.6.0"
5958
},
60-
"repository": {
61-
"type": "git",
62-
"url": "https://github.com/webpack-contrib/worker-loader.git"
63-
},
59+
"repository": "https://github.com/webpack-contrib/worker-loader.git",
60+
"bugs": "https://github.com/webpack-contrib/worker-loader/issues",
61+
"homepage": "https://github.com/webpack-contrib/html-loader",
6462
"license": "MIT",
6563
"pre-commit": "lint-staged",
6664
"lint-staged": {

0 commit comments

Comments
 (0)