eslint-import-resolver-node 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +2 -2
- package/CHANGELOG.md~ +0 -38
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
|
|
|
6
6
|
## Unreleased
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## v0.3.1 - 2017-06-23
|
|
10
|
+
### Changed
|
|
11
|
+
- bumped `debug` dep to match other packages
|
|
12
|
+
|
|
9
13
|
## v0.3.0 - 2016-12-15
|
|
10
14
|
### Changed
|
|
11
15
|
- bumped `resolve` to fix issues with Node builtins (thanks [@SkeLLLa] and [@ljharb])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-import-resolver-node",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Node default behavior import resolution plugin for eslint-plugin-import.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": ["index.js"],
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/benmosher/eslint-plugin-import",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"debug": "^2.
|
|
28
|
+
"debug": "^2.6.8",
|
|
29
29
|
"resolve": "^1.2.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
package/CHANGELOG.md~
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
All notable changes to this resolver will be documented in this file.
|
|
3
|
-
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
4
|
-
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
|
|
5
|
-
|
|
6
|
-
## Unreleased
|
|
7
|
-
### Changed
|
|
8
|
-
- bumped `resolve` to fix issues with Node builtins (thanks [@SkeLLLa] and [@ljharb])
|
|
9
|
-
|
|
10
|
-
### Fixed
|
|
11
|
-
- use `files` in `package.json` to ship only `index.js` ([#531], thanks for noticing [@lukeapage])
|
|
12
|
-
|
|
13
|
-
## v0.2.3 - 2016-08-20
|
|
14
|
-
### Added
|
|
15
|
-
- debug logging (use `DEBUG=eslint-plugin-import:resolver:node eslint [...]`)
|
|
16
|
-
|
|
17
|
-
## v0.2.2 - 2016-07-14
|
|
18
|
-
### Fixed
|
|
19
|
-
- Node resolver no longer declares the import plugin as a `peerDependency`. See [#437]
|
|
20
|
-
for a well-articulated and thoughtful expression of why this doesn't make sense.
|
|
21
|
-
Thanks [@jasonkarns] for the issue and the PR to fix it ([#438]).
|
|
22
|
-
|
|
23
|
-
Also, apologies to the others who expressed this before, but I never understood
|
|
24
|
-
what the problem was.😅
|
|
25
|
-
|
|
26
|
-
## v0.2.1
|
|
27
|
-
### Fixed
|
|
28
|
-
- find files with `.json` extensions (#333, thanks for noticing @jfmengels)
|
|
29
|
-
|
|
30
|
-
[#438]: https://github.com/benmosher/eslint-plugin-import/pull/438
|
|
31
|
-
|
|
32
|
-
[#531]: https://github.com/benmosher/eslint-plugin-import/issues/531
|
|
33
|
-
[#437]: https://github.com/benmosher/eslint-plugin-import/issues/437
|
|
34
|
-
|
|
35
|
-
[@jasonkarns]: https://github.com/jasonkarns
|
|
36
|
-
[@lukeapage]: https://github.com/lukeapage
|
|
37
|
-
[@SkeLLLa]: https://github.com/SkeLLLa
|
|
38
|
-
[@ljharb]: https://github.com/ljharb
|