Skip to content

Commit 7055a40

Browse files
committed
chore(release): 3.1.1
1 parent 9d29fcf commit 7055a40

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
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="3.1.1"></a>
6+
## [3.1.1](https://github.com/tleunen/babel-plugin-module-resolver/compare/v3.1.0...v3.1.1) (2018-03-24)
7+
8+
9+
### Bug Fixes
10+
11+
* Add support for Node 4 ([#286](https://github.com/tleunen/babel-plugin-module-resolver/issues/286)) ([2d5bf09](https://github.com/tleunen/babel-plugin-module-resolver/commit/2d5bf09)), closes [#285](https://github.com/tleunen/babel-plugin-module-resolver/issues/285) [#236](https://github.com/tleunen/babel-plugin-module-resolver/issues/236)
12+
13+
14+
515
<a name="3.1.0"></a>
616
# [3.1.0](https://github.com/tleunen/babel-plugin-module-resolver/compare/v3.0.0...v3.1.0) (2018-02-08)
717

package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-module-resolver",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"main": "lib/index.js",
55
"description": "Module resolver plugin for Babel",
66
"repository": {
@@ -10,7 +10,9 @@
1010
"engines": {
1111
"node": ">= 4.0.0"
1212
},
13-
"files": ["lib"],
13+
"files": [
14+
"lib"
15+
],
1416
"author": {
1517
"name": "Tommy Leunen",
1618
"email": "[email protected]",
@@ -68,11 +70,17 @@
6870
"precommit": "lint-staged"
6971
},
7072
"lint-staged": {
71-
"*.{js}": ["prettier-eslint --write", "git add"]
73+
"*.{js}": [
74+
"prettier-eslint --write",
75+
"git add"
76+
]
7277
},
7378
"jest": {
7479
"testEnvironment": "node",
7580
"testRegex": "/test/.*\\.test\\.js$",
76-
"collectCoverageFrom": ["src/**/*.js", "!src/log.js"]
81+
"collectCoverageFrom": [
82+
"src/**/*.js",
83+
"!src/log.js"
84+
]
7785
}
7886
}

0 commit comments

Comments
 (0)