UNPKG

4.24 kBMarkdownView Raw
1# Change Log
2All notable changes to this resolver will be documented in this file.
3This project adheres to [Semantic Versioning](http://semver.org/).
4This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com).
5
6## Unreleased
7
8
9## 0.8.0 - 2016-12-15
10### Changed
11- bumped `resolve` to fix issues with Node builtins (thanks [@SkeLLLa] and [@ljharb])
12- allow `enhanced-resolve` to be version `>= 2` (thanks [@Kovensky])
13
14## 0.7.1
15### Fixed
16- missing `has` dependency ([#681] + [#683], thanks [@benmvp] + [@ljharb])
17
18## 0.7.0
19### Added
20- Support for explicit Webpack config object in `.eslintrc.*`. ([#572], thanks [@jameslnewell])
21- Added `resolve.modules` to configs for webpack2 support ([#569], thanks [@toshafed])
22
23## 0.6.0 - 2016-09-13
24### Added
25- support for config-as-function ([#533], thanks [@grahamb])
26
27## 0.5.1 - 2016-08-11
28### Fixed
29- don't throw and die if no webpack config is found
30
31## 0.5.0 - 2016-08-11
32### Added
33- support for Webpack 2 + `module` package.json key! ([#475], thanks [@taion])
34
35### Changed
36- don't swallow errors, assume config exists ([#435], thanks [@Kovensky])
37
38## 0.4.0 - 2016-07-17
39### Added
40- support for `webpack.ResolverPlugin` ([#377], thanks [@Rogeres])
41
42### Fixed
43- provide string `context` to `externals` functions ([#411] + [#413], thanks [@Satyam])
44
45## 0.3.2 - 2016-06-30
46### Added
47- shared config ([config.js](./config.js)) with barebones settings needed to use this resolver. ([#283])
48
49### Fixed
50- strip resource query ([#357], thanks [@daltones])
51- allow `externals` to be defined as a function ([#363], thanks [@kesne])
52
53## 0.3.1 - 2016-06-02
54### Added
55- debug logging. run with `DEBUG=eslint-plugin-import:*` to see log output.
56
57## 0.3.0 - 2016-06-01
58### Changed
59- use `enhanced-resolve` to support additional plugins instead of re-implementing
60 aliases, etc.
61
62## 0.2.5 - 2016-05-23
63### Added
64- Added support for multiple webpack configs ([#181], thanks [@GreenGremlin])
65
66## 0.2.4 - 2016-04-29
67### Changed
68- automatically find webpack config with `interpret`-able extensions ([#287], thanks [@taion])
69
70## 0.2.3 - 2016-04-28
71### Fixed
72- `interpret` dependency was declared in the wrong `package.json`.
73 Thanks [@jonboiser] for sleuthing ([#286]) and fixing ([#289]).
74
75## 0.2.2 - 2016-04-27
76### Added
77- `interpret` configs (such as `.babel.js`).
78 Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
79
80[#683]: https://github.com/benmosher/eslint-plugin-import/pull/683
81[#572]: https://github.com/benmosher/eslint-plugin-import/pull/572
82[#569]: https://github.com/benmosher/eslint-plugin-import/pull/569
83[#533]: https://github.com/benmosher/eslint-plugin-import/pull/533
84[#413]: https://github.com/benmosher/eslint-plugin-import/pull/413
85[#377]: https://github.com/benmosher/eslint-plugin-import/pull/377
86[#363]: https://github.com/benmosher/eslint-plugin-import/pull/363
87[#289]: https://github.com/benmosher/eslint-plugin-import/pull/289
88[#287]: https://github.com/benmosher/eslint-plugin-import/pull/287
89[#278]: https://github.com/benmosher/eslint-plugin-import/pull/278
90[#181]: https://github.com/benmosher/eslint-plugin-import/pull/181
91[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
92
93[#681]: https://github.com/benmosher/eslint-plugin-import/issues/681
94[#435]: https://github.com/benmosher/eslint-plugin-import/issues/435
95[#411]: https://github.com/benmosher/eslint-plugin-import/issues/411
96[#357]: https://github.com/benmosher/eslint-plugin-import/issues/357
97[#286]: https://github.com/benmosher/eslint-plugin-import/issues/286
98[#283]: https://github.com/benmosher/eslint-plugin-import/issues/283
99
100[@gausie]: https://github.com/gausie
101[@jquense]: https://github.com/jquense
102[@taion]: https://github.com/taion
103[@GreenGremlin]: https://github.com/GreenGremlin
104[@daltones]: https://github.com/daltones
105[@kesne]: https://github.com/kesne
106[@Satyam]: https://github.com/Satyam
107[@Rogeres]: https://github.com/Rogeres
108[@Kovensky]: https://github.com/Kovensky
109[@grahamb]: https://github.com/grahamb
110[@jameslnewell]: https://github.com/jameslnewell
111[@toshafed]: https://github.com/toshafed
112[@benmvp]: https://github.com/benmvp
113[@ljharb]: https://github.com/ljharb
114[@SkeLLLa]: https://github.com/SkeLLLa