Skip to content

Commit e087ec4

Browse files
committed
updated resolvers/node/package.json to use "files" (fixes #531)
1 parent 2b471c7 commit e087ec4

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

resolvers/node/.npmignore

-1
This file was deleted.

resolvers/node/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this resolver will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
55

6+
## Unreleased
7+
### Fixed
8+
- use `files` in `package.json` to ship only `index.js` ([#531], thanks for noticing [@lukeapage])
9+
610
## v0.2.3 - 2016-08-20
711
### Added
812
- debug logging (use `DEBUG=eslint-plugin-import:resolver:node eslint [...]`)
@@ -22,6 +26,8 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel
2226

2327
[#438]: https://github.com/benmosher/eslint-plugin-import/pull/438
2428

29+
[#531]: https://github.com/benmosher/eslint-plugin-import/issues/531
2530
[#437]: https://github.com/benmosher/eslint-plugin-import/issues/437
2631

2732
[@jasonkarns]: https://github.com/jasonkarns
33+
[@lukeapage]: https://github.com/lukeapage

resolvers/node/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"version": "0.2.3",
44
"description": "Node default behavior import resolution plugin for eslint-plugin-import.",
55
"main": "index.js",
6+
"files": ["index.js"],
67
"scripts": {
78
"test": "nyc mocha"
89
},

0 commit comments

Comments
 (0)