UNPKG

3.71 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.7.0
10### Added
11- Support for explicit Webpack config object in `.eslintrc.*`. ([#572], thanks [@jameslnewell])
12- Added `resolve.modules` to configs for webpack2 support ([#569], thanks [@toshafed])
13
14## 0.6.0 - 2016-09-13
15### Added
16- support for config-as-function ([#533], thanks [@grahamb])
17
18## 0.5.1 - 2016-08-11
19### Fixed
20- don't throw and die if no webpack config is found
21
22## 0.5.0 - 2016-08-11
23### Added
24- support for Webpack 2 + `module` package.json key! ([#475], thanks [@taion])
25
26### Changed
27- don't swallow errors, assume config exists ([#435], thanks [@Kovensky])
28
29## 0.4.0 - 2016-07-17
30### Added
31- support for `webpack.ResolverPlugin` ([#377], thanks [@Rogeres])
32
33### Fixed
34- provide string `context` to `externals` functions ([#411] + [#413], thanks [@Satyam])
35
36## 0.3.2 - 2016-06-30
37### Added
38- shared config ([config.js](./config.js)) with barebones settings needed to use this resolver. ([#283])
39
40### Fixed
41- strip resource query ([#357], thanks [@daltones])
42- allow `externals` to be defined as a function ([#363], thanks [@kesne])
43
44## 0.3.1 - 2016-06-02
45### Added
46- debug logging. run with `DEBUG=eslint-plugin-import:*` to see log output.
47
48## 0.3.0 - 2016-06-01
49### Changed
50- use `enhanced-resolve` to support additional plugins instead of re-implementing
51 aliases, etc.
52
53## 0.2.5 - 2016-05-23
54### Added
55- Added support for multiple webpack configs ([#181], thanks [@GreenGremlin])
56
57## 0.2.4 - 2016-04-29
58### Changed
59- automatically find webpack config with `interpret`-able extensions ([#287], thanks [@taion])
60
61## 0.2.3 - 2016-04-28
62### Fixed
63- `interpret` dependency was declared in the wrong `package.json`.
64 Thanks [@jonboiser] for sleuthing ([#286]) and fixing ([#289]).
65
66## 0.2.2 - 2016-04-27
67### Added
68- `interpret` configs (such as `.babel.js`).
69 Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
70
71[#572]: https://github.com/benmosher/eslint-plugin-import/pull/572
72[#569]: https://github.com/benmosher/eslint-plugin-import/pull/569
73[#533]: https://github.com/benmosher/eslint-plugin-import/pull/533
74[#413]: https://github.com/benmosher/eslint-plugin-import/pull/413
75[#377]: https://github.com/benmosher/eslint-plugin-import/pull/377
76[#363]: https://github.com/benmosher/eslint-plugin-import/pull/363
77[#289]: https://github.com/benmosher/eslint-plugin-import/pull/289
78[#287]: https://github.com/benmosher/eslint-plugin-import/pull/287
79[#278]: https://github.com/benmosher/eslint-plugin-import/pull/278
80[#181]: https://github.com/benmosher/eslint-plugin-import/pull/181
81[#164]: https://github.com/benmosher/eslint-plugin-import/pull/164
82
83[#435]: https://github.com/benmosher/eslint-plugin-import/issues/435
84[#411]: https://github.com/benmosher/eslint-plugin-import/issues/411
85[#357]: https://github.com/benmosher/eslint-plugin-import/issues/357
86[#286]: https://github.com/benmosher/eslint-plugin-import/issues/286
87[#283]: https://github.com/benmosher/eslint-plugin-import/issues/283
88
89[@gausie]: https://github.com/gausie
90[@jquense]: https://github.com/jquense
91[@taion]: https://github.com/taion
92[@GreenGremlin]: https://github.com/GreenGremlin
93[@daltones]: https://github.com/daltones
94[@kesne]: https://github.com/kesne
95[@Satyam]: https://github.com/Satyam
96[@Rogeres]: https://github.com/Rogeres
97[@Kovensky]: https://github.com/Kovensky
98[@grahamb]: https://github.com/grahamb
99[@jameslnewell]: https://github.com/jameslnewell
100[@toshafed]: https://github.com/toshafed