Skip to content

Commit 34e6138

Browse files
chore(release): 1.1.3
1 parent 80dda4f commit 34e6138

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
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.3"></a>
6+
## [1.1.3](https://github.com/webpack-contrib/thread-loader/compare/v1.1.2...v1.1.3) (2018-02-07)
7+
8+
9+
### Bug Fixes
10+
11+
* **WorkerPool:** trace stacks to avoid duplicated `err.messages` from workers ([#13](https://github.com/webpack-contrib/thread-loader/issues/13)) ([80dda4f](https://github.com/webpack-contrib/thread-loader/commit/80dda4f))
12+
13+
14+
515
<a name="1.1.2"></a>
616
## [1.1.2](https://github.com/webpack-contrib/thread-loader/compare/v1.1.1...v1.1.2) (2017-10-09)
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: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,31 @@
11
{
22
"name": "thread-loader",
3-
"version": "1.1.2",
4-
"description": "Runs the following loaders in a worker pool.",
3+
"version": "1.1.3",
4+
"description": "Runs the following loaders in a worker pool",
55
"author": "Tobias Koppers @sokra",
66
"license": "MIT",
77
"main": "dist/cjs.js",
88
"files": [
99
"dist"
1010
],
1111
"scripts": {
12-
"test": "jest",
13-
"webpack-defaults": "webpack-defaults",
1412
"start": "npm run build -- -w",
13+
"clean": "del-cli dist",
1514
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
16-
"clean:dist": "del-cli dist",
1715
"lint": "eslint --cache src test",
1816
"lint-staged": "lint-staged",
1917
"prebuild": "npm run clean",
20-
"prepublish": "npm run build",
18+
"prepare": "npm run build",
2119
"release": "standard-version",
2220
"security": "nsp check",
21+
"test": "jest",
2322
"test:watch": "jest --watch",
2423
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
2524
"travis:coverage": "npm run test:coverage -- --runInBand",
2625
"travis:lint": "npm run lint && npm run security",
2726
"travis:test": "npm run test -- --runInBand",
2827
"appveyor:test": "npm run test",
29-
"clean": "del-cli dist"
28+
"webpack-defaults": "webpack-defaults"
3029
},
3130
"dependencies": {
3231
"async": "^2.3.0",
@@ -66,10 +65,9 @@
6665
"peerDependencies": {
6766
"webpack": "^2.0.0 || ^3.0.0"
6867
},
69-
"repository": {
70-
"type": "git",
71-
"url": "[email protected]:webpack-contrib/thread-loader.git"
72-
},
68+
"repository": "https://github.com/webpack-contrib/thread-loader.git",
69+
"bugs": "https://github.com/webpack-contrib/thread-loader/issues",
70+
"homepage": "https://github.com/webpack-contrib/thread-loader",
7371
"pre-commit": "lint-staged",
7472
"lint-staged": {
7573
"*.js": [

0 commit comments

Comments
 (0)