Skip to content

Commit 6f6f414

Browse files
committed
[resolvers/webpack] v0.13.3
1 parent 95f9f00 commit 6f6f414

File tree

2 files changed

+67
-62
lines changed

2 files changed

+67
-62
lines changed

resolvers/webpack/CHANGELOG.md

+66-61
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
55

66
## Unreleased
77

8+
## 0.13.3 - 2023-08-05
9+
- [deps] update `is-core-module`, `resolve`, `semver`
10+
- [eslint] tighten up rules
11+
- [Tests] consolidate eslint config
12+
- [Docs] HTTP => HTTPS ([#2287], thanks [@Schweinepriester])
13+
814
## 0.13.2 - 2021-10-20
915

1016
### Changed
@@ -13,35 +19,35 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
1319
## 0.13.1 - 2021-05-13
1420

1521
### Added
16-
- add support for webpack5 'externals function' ([#2023], thanks [@jet2jet])
22+
- add support for webpack5 'externals function' ([#2023], thanks [@jet2jet])
1723

1824
### Changed
19-
- Add warning about async Webpack configs ([#1962], thanks [@ogonkov])
20-
- Replace `node-libs-browser` with `is-core-module` ([#1967], thanks [@andersk])
21-
- [meta] add "engines" field to document existing requirements
22-
- [Refactor] use `is-regex` instead of `instanceof RegExp`
23-
- [Refactor] use `Array.isArray` instead of `instanceof Array`
24-
- [deps] update `debug`, `interpret`, `is-core-module`, `lodash`, `resolve`
25+
- Add warning about async Webpack configs ([#1962], thanks [@ogonkov])
26+
- Replace `node-libs-browser` with `is-core-module` ([#1967], thanks [@andersk])
27+
- [meta] add "engines" field to document existing requirements
28+
- [Refactor] use `is-regex` instead of `instanceof RegExp`
29+
- [Refactor] use `Array.isArray` instead of `instanceof Array`
30+
- [deps] update `debug`, `interpret`, `is-core-module`, `lodash`, `resolve`
2531

2632
## 0.13.0 - 2020-09-27
2733

2834
### Breaking
29-
- [Breaking] Allow to resolve config path relative to working directory (#1276)
35+
- [Breaking] Allow to resolve config path relative to working directory (#1276)
3036

3137
## 0.12.2 - 2020-06-16
3238

3339
### Fixed
34-
- [fix] provide config fallback ([#1705], thanks [@migueloller])
40+
- [fix] provide config fallback ([#1705], thanks [@migueloller])
3541

3642
## 0.12.1 - 2020-01-10
3743

3844
### Changed
39-
- [meta] copy LICENSE file to all npm packages on prepublish ([#1595], thanks [@opichals])
45+
- [meta] copy LICENSE file to all npm packages on prepublish ([#1595], thanks [@opichals])
4046

4147
## 0.12.0 - 2019-12-07
4248

4349
### Added
44-
- [New] enable passing cwd as an option to `eslint-import-resolver-webpack` ([#1503], thanks [@Aghassi])
50+
- [New] enable passing cwd as an option to `eslint-import-resolver-webpack` ([#1503], thanks [@Aghassi])
4551

4652
## 0.11.1 - 2019-04-13
4753

@@ -51,110 +57,108 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
5157
## 0.11.0 - 2018-01-22
5258

5359
### Added
54-
- support for `argv` parameter when config is a function. ([#1261], thanks [@keann])
60+
- support for `argv` parameter when config is a function. ([#1261], thanks [@keann])
5561

5662
### Fixed
57-
- crash when webpack config is an array of functions ([#1219]/[#1220] by [@idudinov])
63+
- crash when webpack config is an array of functions ([#1219]/[#1220] by [@idudinov])
5864

5965
## 0.10.1 - 2018-06-24
6066
### Fixed
61-
- log a useful error in a module bug arises ([#768]/[#767], thanks [@mattkrick])
67+
- log a useful error in a module bug arises ([#768]/[#767], thanks [@mattkrick])
6268

6369
## 0.10.0 - 2018-05-17
6470
### Changed
65-
- cache webpack resolve function, for performance ([#788]/[#1091])
71+
- cache webpack resolve function, for performance ([#788]/[#1091])
6672

6773
## 0.9.0 - 2018-03-29
6874
### Breaking
69-
- Fix with `pnpm` by bumping `resolve` ([#968])
75+
- Fix with `pnpm` by bumping `resolve` ([#968])
7076

7177
## 0.8.4 - 2018-01-05
7278
### Changed
73-
- allow newer version of node-libs-browser ([#969])
79+
- allow newer version of node-libs-browser ([#969])
7480

7581
## 0.8.3 - 2017-06-23
7682
### Changed
77-
- `debug` bumped to match others
83+
- `debug` bumped to match others
7884

7985
## 0.8.2 - 2017-06-22
8086
### Changed
81-
- `webpack` peer dep updated to >= 1.11 (works fine with webpack 3 AFAICT)
87+
- `webpack` peer dep updated to >= 1.11 (works fine with webpack 3 AFAICT)
8288

8389
## 0.8.1 - 2017-01-19
8490
### Changed
85-
- official support for Webpack 2.2.0 (RC), thanks [@graingert]
91+
- official support for Webpack 2.2.0 (RC), thanks [@graingert]
8692

8793
## 0.8.0 - 2016-12-15
8894
### Changed
89-
- bumped `resolve` to fix issues with Node builtins (thanks [@SkeLLLa] and [@ljharb])
90-
- allow `enhanced-resolve` to be version `>= 2` (thanks [@Kovensky])
95+
- bumped `resolve` to fix issues with Node builtins (thanks [@SkeLLLa] and [@ljharb])
96+
- allow `enhanced-resolve` to be version `>= 2` (thanks [@Kovensky])
9197

9298
## 0.7.1
9399
### Fixed
94-
- missing `has` dependency ([#681] + [#683], thanks [@benmvp] + [@ljharb])
100+
- missing `has` dependency ([#681] + [#683], thanks [@benmvp] + [@ljharb])
95101

96102
## 0.7.0
97103
### Added
98-
- Support for explicit Webpack config object in `.eslintrc.*`. ([#572], thanks [@jameslnewell])
99-
- Added `resolve.modules` to configs for webpack2 support ([#569], thanks [@toshafed])
104+
- Support for explicit Webpack config object in `.eslintrc.*`. ([#572], thanks [@jameslnewell])
105+
- Added `resolve.modules` to configs for webpack2 support ([#569], thanks [@toshafed])
100106

101107
## 0.6.0 - 2016-09-13
102108
### Added
103-
- support for config-as-function ([#533], thanks [@grahamb])
109+
- support for config-as-function ([#533], thanks [@grahamb])
104110

105111
## 0.5.1 - 2016-08-11
106112
### Fixed
107-
- don't throw and die if no webpack config is found
113+
- don't throw and die if no webpack config is found
108114

109115
## 0.5.0 - 2016-08-11
110116
### Added
111-
- support for Webpack 2 + `module` package.json key! ([#475], thanks [@taion])
117+
- support for Webpack 2 + `module` package.json key! ([#475], thanks [@taion])
112118

113119
### Changed
114-
- don't swallow errors, assume config exists ([#435], thanks [@Kovensky])
120+
- don't swallow errors, assume config exists ([#435], thanks [@Kovensky])
115121

116122
## 0.4.0 - 2016-07-17
117123
### Added
118-
- support for `webpack.ResolverPlugin` ([#377], thanks [@Rogeres])
124+
- support for `webpack.ResolverPlugin` ([#377], thanks [@Rogeres])
119125

120126
### Fixed
121-
- provide string `context` to `externals` functions ([#411] + [#413], thanks [@Satyam])
127+
- provide string `context` to `externals` functions ([#411] + [#413], thanks [@Satyam])
122128

123129
## 0.3.2 - 2016-06-30
124130
### Added
125-
- shared config ([config.js](./config.js)) with barebones settings needed to use this resolver. ([#283])
131+
- shared config ([config.js](./config.js)) with barebones settings needed to use this resolver. ([#283])
126132

127133
### Fixed
128-
- strip resource query ([#357], thanks [@daltones])
129-
- allow `externals` to be defined as a function ([#363], thanks [@kesne])
134+
- strip resource query ([#357], thanks [@daltones])
135+
- allow `externals` to be defined as a function ([#363], thanks [@kesne])
130136

131137
## 0.3.1 - 2016-06-02
132138
### Added
133-
- debug logging. run with `DEBUG=eslint-plugin-import:*` to see log output.
139+
- debug logging. run with `DEBUG=eslint-plugin-import:*` to see log output.
134140

135141
## 0.3.0 - 2016-06-01
136142
### Changed
137-
- use `enhanced-resolve` to support additional plugins instead of re-implementing
138-
aliases, etc.
143+
- use `enhanced-resolve` to support additional plugins instead of re-implementing aliases, etc.
139144

140145
## 0.2.5 - 2016-05-23
141146
### Added
142-
- Added support for multiple webpack configs ([#181], thanks [@GreenGremlin])
147+
- Added support for multiple webpack configs ([#181], thanks [@GreenGremlin])
143148

144149
## 0.2.4 - 2016-04-29
145150
### Changed
146-
- automatically find webpack config with `interpret`-able extensions ([#287], thanks [@taion])
151+
- automatically find webpack config with `interpret`-able extensions ([#287], thanks [@taion])
147152

148153
## 0.2.3 - 2016-04-28
149154
### Fixed
150-
- `interpret` dependency was declared in the wrong `package.json`.
151-
Thanks [@jonboiser] for sleuthing ([#286]) and fixing ([#289]).
155+
- `interpret` dependency was declared in the wrong `package.json`. Thanks [@jonboiser] for sleuthing ([#286]) and fixing ([#289]).
152156

153157
## 0.2.2 - 2016-04-27
154158
### Added
155-
- `interpret` configs (such as `.babel.js`).
156-
Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
159+
- `interpret` configs (such as `.babel.js`). Thanks to [@gausie] for the initial PR ([#164], ages ago! 😅) and [@jquense] for tests ([#278]).
157160

161+
[#2287]: https://github.com/import-js/eslint-plugin-import/pull/2287
158162
[#2023]: https://github.com/import-js/eslint-plugin-import/pull/2023
159163
[#1967]: https://github.com/import-js/eslint-plugin-import/pull/1967
160164
[#1962]: https://github.com/import-js/eslint-plugin-import/pull/1962
@@ -192,29 +196,30 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
192196
[#286]: https://github.com/import-js/eslint-plugin-import/issues/286
193197
[#283]: https://github.com/import-js/eslint-plugin-import/issues/283
194198

199+
[@Aghassi]: https://github.com/Aghassi
200+
[@andersk]: https://github.com/andersk
201+
[@benmvp]: https://github.com/benmvp
202+
[@daltones]: https://github.com/daltones
203+
[@echenley]: https://github.com/echenley
195204
[@gausie]: https://github.com/gausie
196-
[@jquense]: https://github.com/jquense
197-
[@taion]: https://github.com/taion
205+
[@grahamb]: https://github.com/grahamb
206+
[@graingert]: https://github.com/graingert
198207
[@GreenGremlin]: https://github.com/GreenGremlin
199-
[@daltones]: https://github.com/daltones
208+
[@idudinov]: https://github.com/idudinov
209+
[@jameslnewell]: https://github.com/jameslnewell
210+
[@jet2jet]: https://github.com/jet2jet
211+
[@jquense]: https://github.com/jquense
212+
[@keann]: https://github.com/keann
200213
[@kesne]: https://github.com/kesne
201-
[@Satyam]: https://github.com/Satyam
202-
[@Rogeres]: https://github.com/Rogeres
203214
[@Kovensky]: https://github.com/Kovensky
204-
[@grahamb]: https://github.com/grahamb
205-
[@jameslnewell]: https://github.com/jameslnewell
206-
[@toshafed]: https://github.com/toshafed
207-
[@benmvp]: https://github.com/benmvp
208215
[@ljharb]: https://github.com/ljharb
209-
[@SkeLLLa]: https://github.com/SkeLLLa
210-
[@graingert]: https://github.com/graingert
211216
[@mattkrick]: https://github.com/mattkrick
212-
[@idudinov]: https://github.com/idudinov
213-
[@keann]: https://github.com/keann
214-
[@echenley]: https://github.com/echenley
215-
[@Aghassi]: https://github.com/Aghassi
216217
[@migueloller]: https://github.com/migueloller
217-
[@opichals]: https://github.com/opichals
218-
[@andersk]: https://github.com/andersk
219218
[@ogonkov]: https://github.com/ogonkov
220-
[@jet2jet]: https://github.com/jet2jet
219+
[@opichals]: https://github.com/opichals
220+
[@Rogeres]: https://github.com/Rogeres
221+
[@Satyam]: https://github.com/Satyam
222+
[@Schweinepriester]: https://github.com/Schweinepriester
223+
[@SkeLLLa]: https://github.com/SkeLLLa
224+
[@taion]: https://github.com/taion
225+
[@toshafed]: https://github.com/toshafed

resolvers/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-import-resolver-webpack",
3-
"version": "0.13.2",
3+
"version": "0.13.3",
44
"description": "Resolve paths to dependencies, given a webpack.config.js. Plugin for eslint-plugin-import.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)