Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Commit e0e11af

Browse files
committed
chore(release): 5.1.0
1 parent 8ae7555 commit e0e11af

File tree

2 files changed

+88
-73
lines changed

2 files changed

+88
-73
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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="5.1.0"></a>
6+
# [5.1.0](https://github.com/s-panferov/awesome-typescript-loader/compare/v5.0.0...v5.1.0) (2018-06-10)
7+
8+
9+
### Bug Fixes
10+
11+
* pass Unix-style path to config parser ([#581](https://github.com/s-panferov/awesome-typescript-loader/issues/581)) ([c006193](https://github.com/s-panferov/awesome-typescript-loader/commit/c006193))
12+
13+
14+
### Features
15+
16+
* Use webpack-log for nicer logging ([#568](https://github.com/s-panferov/awesome-typescript-loader/issues/568)) ([f7e77b7](https://github.com/s-panferov/awesome-typescript-loader/commit/f7e77b7))
17+
18+
19+
520
<a name="5.0.0"></a>
621
# [5.0.0](https://github.com/s-panferov/awesome-typescript-loader/compare/v5.0.0-1...v5.0.0) (2018-04-06)
722

package.json

Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,75 @@
11
{
2-
"name": "awesome-typescript-loader",
3-
"version": "5.0.0",
4-
"description": "Awesome TS loader for webpack",
5-
"main": "dist/entry.js",
6-
"typings": "./dist/index.d.ts",
7-
"scripts": {
8-
"prepublish": "npm run build",
9-
"watch": "npm run watch:ts",
10-
"watch:ts": "npm run build:ts -- --watch --diagnostics",
11-
"prebuild": "npm run lint",
12-
"compile": "tsc --pretty",
13-
"build": "rimraf dist && tsc --pretty",
14-
"lint": "tslint src/*.ts",
15-
"release": "standard-version",
16-
"test": "rimraf .test && mocha --trace-warnings --timeout 30000 --exit dist/__test__",
17-
"precommit": "lint-staged"
18-
},
19-
"author": "Stanislav Panferov <[email protected]> (http://panferov.me/)",
20-
"repository": {
21-
"type": "git",
22-
"url": "https://github.com/s-panferov/awesome-typescript-loader.git"
23-
},
24-
"license": "MIT",
25-
"keywords": [
26-
"webpack",
27-
"loader",
28-
"webpack-loader",
29-
"typescript"
30-
],
31-
"bugs": {
32-
"url": "https://github.com/s-panferov/awesome-typescript-loader/issues"
33-
},
34-
"homepage": "https://github.com/s-panferov/awesome-typescript-loader",
35-
"dependencies": {
36-
"chalk": "^2.4.1",
37-
"enhanced-resolve": "^4.0.0",
38-
"loader-utils": "^1.1.0",
39-
"lodash": "^4.17.5",
40-
"micromatch": "^3.1.9",
41-
"mkdirp": "^0.5.1",
42-
"source-map-support": "^0.5.3"
43-
},
44-
"peerDependencies": {
45-
"typescript": "^2.7"
46-
},
47-
"devDependencies": {
48-
"@types/chai": "^4.1.3",
49-
"@types/lodash": "^4.14.109",
50-
"@types/micromatch": "^3.1.0",
51-
"@types/mocha": "^5.2.1",
52-
"@types/node": "^10.3.2",
53-
"@types/shelljs": "^0.8.0",
54-
"@types/sinon": "^5.0.1",
55-
"@types/webpack": "^4.4.0",
56-
"bluebird": "^3.5.1",
57-
"chai": "^4.1.2",
58-
"empty-module": "0.0.2",
59-
"fs-extra": "^6.0.1",
60-
"husky": "^0.14.3",
61-
"lint-staged": "^7.1.3",
62-
"mocha": "^5.2.0",
63-
"prettier": "^1.13.5",
64-
"ps-node": "^0.1.6",
65-
"rimraf": "^2.6.1",
66-
"shelljs": "^0.7.8",
67-
"standard-version": "^4.4.0",
68-
"temp": "^0.8.3",
69-
"tslint": "^5.10.0",
70-
"typescript": "^2.9.1",
71-
"webpack": "^4.12.0",
72-
"webpack-cli": "^3.0.3",
73-
"webpack-log": "^1.2.0"
74-
}
2+
"name": "awesome-typescript-loader",
3+
"version": "5.1.0",
4+
"description": "Awesome TS loader for webpack",
5+
"main": "dist/entry.js",
6+
"typings": "./dist/index.d.ts",
7+
"scripts": {
8+
"prepublish": "npm run build",
9+
"watch": "npm run watch:ts",
10+
"watch:ts": "npm run build:ts -- --watch --diagnostics",
11+
"prebuild": "npm run lint",
12+
"compile": "tsc --pretty",
13+
"build": "rimraf dist && tsc --pretty",
14+
"lint": "tslint src/*.ts",
15+
"release": "standard-version",
16+
"test": "rimraf .test && mocha --trace-warnings --timeout 30000 --exit dist/__test__",
17+
"precommit": "lint-staged"
18+
},
19+
"author": "Stanislav Panferov <[email protected]> (http://panferov.me/)",
20+
"repository": {
21+
"type": "git",
22+
"url": "https://github.com/s-panferov/awesome-typescript-loader.git"
23+
},
24+
"license": "MIT",
25+
"keywords": [
26+
"webpack",
27+
"loader",
28+
"webpack-loader",
29+
"typescript"
30+
],
31+
"bugs": {
32+
"url": "https://github.com/s-panferov/awesome-typescript-loader/issues"
33+
},
34+
"homepage": "https://github.com/s-panferov/awesome-typescript-loader",
35+
"dependencies": {
36+
"chalk": "^2.4.1",
37+
"enhanced-resolve": "^4.0.0",
38+
"loader-utils": "^1.1.0",
39+
"lodash": "^4.17.5",
40+
"micromatch": "^3.1.9",
41+
"mkdirp": "^0.5.1",
42+
"source-map-support": "^0.5.3"
43+
},
44+
"peerDependencies": {
45+
"typescript": "^2.7"
46+
},
47+
"devDependencies": {
48+
"@types/chai": "^4.1.3",
49+
"@types/lodash": "^4.14.109",
50+
"@types/micromatch": "^3.1.0",
51+
"@types/mocha": "^5.2.1",
52+
"@types/node": "^10.3.2",
53+
"@types/shelljs": "^0.8.0",
54+
"@types/sinon": "^5.0.1",
55+
"@types/webpack": "^4.4.0",
56+
"bluebird": "^3.5.1",
57+
"chai": "^4.1.2",
58+
"empty-module": "0.0.2",
59+
"fs-extra": "^6.0.1",
60+
"husky": "^0.14.3",
61+
"lint-staged": "^7.1.3",
62+
"mocha": "^5.2.0",
63+
"prettier": "^1.13.5",
64+
"ps-node": "^0.1.6",
65+
"rimraf": "^2.6.1",
66+
"shelljs": "^0.7.8",
67+
"standard-version": "^4.4.0",
68+
"temp": "^0.8.3",
69+
"tslint": "^5.10.0",
70+
"typescript": "^2.9.1",
71+
"webpack": "^4.12.0",
72+
"webpack-cli": "^3.0.3",
73+
"webpack-log": "^1.2.0"
74+
}
7575
}

0 commit comments

Comments
 (0)