Skip to content

Commit 12cc73f

Browse files
committed
fix: eslint and typescript issues after upgrade
1 parent 2e4f6e1 commit 12cc73f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+571
-403
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"build": "lerna run build",
4040
"plop": "plop",
4141
"lerna": "lerna",
42-
"nuke": "rm -r node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done"
42+
"nuke": "rm -r node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done",
43+
"format": "lerna run format"
4344
},
4445
"resolutions": {
4546
"@types/webpack": "^4.41.0"

packages/babel-preset-base/@types/babel-helper-plugin-utils.d.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,7 @@ declare module '@babel/helper-plugin-utils' {
1010
interface Options {
1111
[x: string]: string | Options[] | Options;
1212
}
13-
type declareHandler = (
14-
api: Api,
15-
opts: Options,
16-
dirname?: string
17-
) => any;
13+
type declareHandler = (api: Api, opts: Options, dirname?: string) => any;
1814
function declare(
1915
builder: declareHandler
2016
): (api: Api, options: Options, dirname?: string) => any;

packages/babel-preset-base/__mocks__/@babel/helper-plugin-utils.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ export interface Api {
1111
// tslint:disable: no-any
1212
export type Options = { [x: string]: string | Options[] | Options };
1313
export type declareHandler = (api: Api, opts: Options, dirname: string) => any;
14-
export const declare = (builder: declareHandler) => (
15-
api: Api,
16-
options: Options,
17-
dirname: string
18-
) => {
19-
// override api with jest mock
20-
return builder(mockedApi as Api, options || {}, dirname);
21-
};
14+
export const declare =
15+
(builder: declareHandler) =>
16+
(api: Api, options: Options, dirname: string) => {
17+
// override api with jest mock
18+
return builder(mockedApi as Api, options || {}, dirname);
19+
};

packages/babel-preset-base/__tests__/preset.spec.ts

Lines changed: 11 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ describe('preset in module', () => {
3232
const babelConfig = preset();
3333
const presetReact = babelConfig.presets.filter(
3434
ps =>
35-
Array.isArray(ps) &&
36-
ps[0] === require.resolve('@babel/preset-react')
35+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
3736
);
3837
expect(presetReact).toHaveLength(1);
3938
});
@@ -42,8 +41,7 @@ describe('preset in module', () => {
4241
const babelConfig = preset({ hasReact: false });
4342
const presetReact = babelConfig.presets.filter(
4443
ps =>
45-
Array.isArray(ps) &&
46-
ps[0] === require.resolve('@babel/preset-react')
44+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
4745
);
4846
expect(presetReact).toHaveLength(0);
4947
});
@@ -88,8 +86,7 @@ describe('preset in module', () => {
8886
const babelConfig = preset();
8987
const presetEnv = babelConfig.presets.filter(
9088
ps =>
91-
Array.isArray(ps) &&
92-
ps[0] === require.resolve('@babel/preset-env')
89+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-env')
9390
);
9491
expect(presetEnv).toHaveLength(1);
9592
});
@@ -107,9 +104,7 @@ describe('preset in module', () => {
107104
expect(config.presets).toBeInstanceOf(Array);
108105
// Now find the one with preset-env
109106
const presetEnv = config.presets.find(
110-
p =>
111-
Array.isArray(p) &&
112-
p[0] === require.resolve('@babel/preset-env')
107+
p => Array.isArray(p) && p[0] === require.resolve('@babel/preset-env')
113108
) as babelPreset;
114109
expect(presetEnv).toHaveLength(2);
115110
Object.keys(envOptions.presetEnv).forEach(key => {
@@ -134,8 +129,7 @@ describe('preset in module', () => {
134129
const babelConfig = preset({ presetReact });
135130
const presetReactConfig = babelConfig.presets.find(
136131
ps =>
137-
Array.isArray(ps) &&
138-
ps[0] === require.resolve('@babel/preset-react')
132+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
139133
) as babelPreset;
140134
Object.keys(presetReact).forEach(pKey => {
141135
if (typeof presetReactConfig[1] === 'object') {
@@ -158,13 +152,10 @@ describe('preset in module', () => {
158152
presetReact,
159153
}).presets.find(
160154
ps =>
161-
Array.isArray(ps) &&
162-
ps[0] === require.resolve('@babel/preset-react')
155+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
163156
) as babelPreset;
164157
if (typeof presetReactConfigWithProduction[1] === 'object') {
165-
expect(presetReactConfigWithProduction[1].development).toBe(
166-
false
167-
);
158+
expect(presetReactConfigWithProduction[1].development).toBe(false);
168159
} else {
169160
throw new Error(
170161
'preset does not produce development config for react.'
@@ -176,13 +167,10 @@ describe('preset in module', () => {
176167
presetReact,
177168
}).presets.find(
178169
ps =>
179-
Array.isArray(ps) &&
180-
ps[0] === require.resolve('@babel/preset-react')
170+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
181171
) as babelPreset;
182172
if (typeof presetReactConfigWithDevelopment[1] === 'object') {
183-
expect(presetReactConfigWithDevelopment[1].development).toBe(
184-
true
185-
);
173+
expect(presetReactConfigWithDevelopment[1].development).toBe(true);
186174
} else {
187175
throw new Error(
188176
'preset does not produce development config for react.'
@@ -199,13 +187,10 @@ describe('preset in module', () => {
199187
presetReact,
200188
}).presets.find(
201189
ps =>
202-
Array.isArray(ps) &&
203-
ps[0] === require.resolve('@babel/preset-react')
190+
Array.isArray(ps) && ps[0] === require.resolve('@babel/preset-react')
204191
) as babelPreset;
205192
if (typeof presetReactConfigWithDevelopment[1] === 'object') {
206-
expect(presetReactConfigWithDevelopment[1].development).toBe(
207-
false
208-
);
193+
expect(presetReactConfigWithDevelopment[1].development).toBe(false);
209194
} else {
210195
throw new Error(
211196
'preset does not produce development config for react.'

packages/babel-preset-base/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"build": "yarn clean && yarn build:types && yarn build:js",
4949
"lint": "eslint src --ext='.ts,.js'",
5050
"test": "jest --color",
51-
"prepare": "cross-env NODE_ENV=production yarn build"
51+
"prepare": "cross-env NODE_ENV=production yarn build",
52+
"format": "prettier --write ./src ./__tests__ ./@types ./__mocks__"
5253
},
5354
"publishConfig": {
5455
"access": "public"

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"build": "yarn clean && yarn build:types && yarn build:js",
4040
"build:watch": "yarn clean && yarn build:js --watch",
4141
"lint": "eslint src --ext='.ts,.js'",
42-
"prepare": "cross-env NODE_ENV=production yarn build"
42+
"prepare": "cross-env NODE_ENV=production yarn build",
43+
"format": "prettier --write ./src"
4344
},
4445
"publishConfig": {
4546
"access": "public"

packages/cli/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ interface Package {
7070
scripts?: { [x: string]: string };
7171
}
7272

73-
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires
73+
// eslint-disable-next-line global-require, @typescript-eslint/no-var-requires, import/extensions
7474
const pkg = require('../package.json') as Package;
7575

7676
program

packages/entrypoint/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"build": "yarn clean && yarn build:types && yarn build:js",
3838
"lint": "eslint src --ext='.ts,.js'",
3939
"test": "jest --color",
40-
"prepare": "cross-env NODE_ENV=production yarn build"
40+
"prepare": "cross-env NODE_ENV=production yarn build",
41+
"format": "prettier --write ./src ./__tests__"
4142
},
4243
"publishConfig": {
4344
"access": "public"

packages/eslint-config/CHANGELOG.md

Lines changed: 38 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -5,164 +5,106 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
55

66
# [6.3.0](https://github.com/swashata/wp-webpack-script/compare/v6.2.0...v6.3.0) (2021-05-26)
77

8-
98
### Bug Fixes
109

11-
* babel plugin not being configured properly for ts ([2b8b2df](https://github.com/swashata/wp-webpack-script/commit/2b8b2dfbc35b9b31f10ef4851add069d611ca1d7))
12-
13-
14-
15-
10+
- babel plugin not being configured properly for ts ([2b8b2df](https://github.com/swashata/wp-webpack-script/commit/2b8b2dfbc35b9b31f10ef4851add069d611ca1d7))
1611

1712
## [6.0.1](https://github.com/swashata/wp-webpack-script/compare/v6.0.0...v6.0.1) (2021-04-27)
1813

19-
2014
### Bug Fixes
2115

22-
* eslint typescript issue with no-use-before-define ([bce027a](https://github.com/swashata/wp-webpack-script/commit/bce027ad2f3d5571eda2e9d180c488b0955e6a8b)), closes [typescript-eslint/typescript-eslint#2502](https://github.com/typescript-eslint/typescript-eslint/issues/2502)
23-
24-
25-
26-
16+
- eslint typescript issue with no-use-before-define ([bce027a](https://github.com/swashata/wp-webpack-script/commit/bce027ad2f3d5571eda2e9d180c488b0955e6a8b)), closes [typescript-eslint/typescript-eslint#2502](https://github.com/typescript-eslint/typescript-eslint/issues/2502)
2717

2818
# [6.0.0](https://github.com/swashata/wp-webpack-script/compare/v5.0.0...v6.0.0) (2021-04-26)
2919

30-
3120
### Bug Fixes
3221

33-
* **deps:** update dependency eslint-import-resolver-typescript to v2.2.1 ([144d55f](https://github.com/swashata/wp-webpack-script/commit/144d55f2f5a01e9467383b3797a2a886f1f1c992))
34-
* **deps:** update dependency eslint-import-resolver-typescript to v2.3.0 ([e9d4c04](https://github.com/swashata/wp-webpack-script/commit/e9d4c04a758f0996b7627d98992cc5e6731a293b))
35-
* **deps:** update typescript-eslint monorepo to v3.10.0 ([7401373](https://github.com/swashata/wp-webpack-script/commit/74013737c6d4d3fce44e9d055a573f998ee5687f))
36-
* **deps:** update typescript-eslint monorepo to v3.10.1 ([637aec0](https://github.com/swashata/wp-webpack-script/commit/637aec0ffb98a0bb4cb3945a8909805f0afeab11))
37-
* **deps:** update typescript-eslint monorepo to v3.9.0 ([e5ab0c7](https://github.com/swashata/wp-webpack-script/commit/e5ab0c7180e72b7c960a5af1a04ca0bd96f60473))
38-
* **deps:** update typescript-eslint monorepo to v3.9.1 ([ee659ec](https://github.com/swashata/wp-webpack-script/commit/ee659ecca4f846c3e5215eb2ee29ab876a435335))
39-
22+
- **deps:** update dependency eslint-import-resolver-typescript to v2.2.1 ([144d55f](https://github.com/swashata/wp-webpack-script/commit/144d55f2f5a01e9467383b3797a2a886f1f1c992))
23+
- **deps:** update dependency eslint-import-resolver-typescript to v2.3.0 ([e9d4c04](https://github.com/swashata/wp-webpack-script/commit/e9d4c04a758f0996b7627d98992cc5e6731a293b))
24+
- **deps:** update typescript-eslint monorepo to v3.10.0 ([7401373](https://github.com/swashata/wp-webpack-script/commit/74013737c6d4d3fce44e9d055a573f998ee5687f))
25+
- **deps:** update typescript-eslint monorepo to v3.10.1 ([637aec0](https://github.com/swashata/wp-webpack-script/commit/637aec0ffb98a0bb4cb3945a8909805f0afeab11))
26+
- **deps:** update typescript-eslint monorepo to v3.9.0 ([e5ab0c7](https://github.com/swashata/wp-webpack-script/commit/e5ab0c7180e72b7c960a5af1a04ca0bd96f60473))
27+
- **deps:** update typescript-eslint monorepo to v3.9.1 ([ee659ec](https://github.com/swashata/wp-webpack-script/commit/ee659ecca4f846c3e5215eb2ee29ab876a435335))
4028

4129
### Features
4230

43-
* upgrade all eslint related dependencies ([42cd20b](https://github.com/swashata/wp-webpack-script/commit/42cd20ba62c8cef69909c08c648180c9083e1f1d))
44-
45-
46-
47-
31+
- upgrade all eslint related dependencies ([42cd20b](https://github.com/swashata/wp-webpack-script/commit/42cd20ba62c8cef69909c08c648180c9083e1f1d))
4832

4933
# [5.0.0](https://github.com/swashata/wp-webpack-script/compare/v4.4.1...v5.0.0) (2020-08-07)
5034

51-
5235
### Features
5336

54-
* add react refresh support ([1f4cb57](https://github.com/swashata/wp-webpack-script/commit/1f4cb579a0191dbcdc5a277d41944ad5acdf520f))
55-
* make fork-ts plugin 5 compatible and remove react-dev-utils ([a6f414d](https://github.com/swashata/wp-webpack-script/commit/a6f414d644dc9552942b9b23172ff35c49b5ea78))
56-
57-
58-
59-
37+
- add react refresh support ([1f4cb57](https://github.com/swashata/wp-webpack-script/commit/1f4cb579a0191dbcdc5a277d41944ad5acdf520f))
38+
- make fork-ts plugin 5 compatible and remove react-dev-utils ([a6f414d](https://github.com/swashata/wp-webpack-script/commit/a6f414d644dc9552942b9b23172ff35c49b5ea78))
6039

6140
## [4.4.1](https://github.com/swashata/wp-webpack-script/compare/v4.4.0...v4.4.1) (2020-03-21)
6241

6342
**Note:** Version bump only for package @wpackio/eslint-config
6443

65-
66-
67-
68-
6944
# [4.4.0](https://github.com/swashata/wp-webpack-script/compare/v4.3.0...v4.4.0) (2020-03-17)
7045

71-
7246
### Bug Fixes
7347

74-
* **deps:** update typescript-eslint monorepo to v2.14.0 ([dd84488](https://github.com/swashata/wp-webpack-script/commit/dd844889b6862d7693ecf92778faa5724e865553))
75-
* **deps:** update typescript-eslint monorepo to v2.15.0 ([395edd1](https://github.com/swashata/wp-webpack-script/commit/395edd16fab781d4415e226829c4e071c4ed6d32))
76-
* **deps:** update typescript-eslint monorepo to v2.16.0 ([0b22306](https://github.com/swashata/wp-webpack-script/commit/0b22306b516eb707126def8fa7a658c4d7531ef7))
77-
* **deps:** update typescript-eslint monorepo to v2.17.0 ([8a73f52](https://github.com/swashata/wp-webpack-script/commit/8a73f52db06334b81c2a430c0c76721f3d7e056d))
78-
* **deps:** update typescript-eslint monorepo to v2.18.0 ([9b55d96](https://github.com/swashata/wp-webpack-script/commit/9b55d96b330d051b2cc82bdba25443a3f23811e5))
79-
* **deps:** update typescript-eslint monorepo to v2.19.0 ([b820955](https://github.com/swashata/wp-webpack-script/commit/b820955cc688b2963f08a3170e5596418de976eb))
80-
* **deps:** update typescript-eslint monorepo to v2.19.2 ([ca47d4d](https://github.com/swashata/wp-webpack-script/commit/ca47d4d83ca583198702debf072120609d9801f6))
81-
* **deps:** update typescript-eslint monorepo to v2.20.0 ([33f3476](https://github.com/swashata/wp-webpack-script/commit/33f347631be6794d511b0d6b385e567cd53fff3f))
82-
* **deps:** update typescript-eslint monorepo to v2.21.0 ([7089dc0](https://github.com/swashata/wp-webpack-script/commit/7089dc0d54d406292d48297e7578dfb62588fbcf))
83-
* **deps:** update typescript-eslint monorepo to v2.22.0 ([ab188ca](https://github.com/swashata/wp-webpack-script/commit/ab188caa450dd08c7139b2a6659b1d5080f8015a))
84-
* **deps:** update typescript-eslint monorepo to v2.23.0 ([39c1bd2](https://github.com/swashata/wp-webpack-script/commit/39c1bd22ccd5a7b09b172648d1195619ca9d7bdd))
85-
* **deps:** update typescript-eslint monorepo to v2.24.0 ([be3fabf](https://github.com/swashata/wp-webpack-script/commit/be3fabf08fb6b23e5fa398625d2964732ecd17b2))
86-
87-
88-
89-
48+
- **deps:** update typescript-eslint monorepo to v2.14.0 ([dd84488](https://github.com/swashata/wp-webpack-script/commit/dd844889b6862d7693ecf92778faa5724e865553))
49+
- **deps:** update typescript-eslint monorepo to v2.15.0 ([395edd1](https://github.com/swashata/wp-webpack-script/commit/395edd16fab781d4415e226829c4e071c4ed6d32))
50+
- **deps:** update typescript-eslint monorepo to v2.16.0 ([0b22306](https://github.com/swashata/wp-webpack-script/commit/0b22306b516eb707126def8fa7a658c4d7531ef7))
51+
- **deps:** update typescript-eslint monorepo to v2.17.0 ([8a73f52](https://github.com/swashata/wp-webpack-script/commit/8a73f52db06334b81c2a430c0c76721f3d7e056d))
52+
- **deps:** update typescript-eslint monorepo to v2.18.0 ([9b55d96](https://github.com/swashata/wp-webpack-script/commit/9b55d96b330d051b2cc82bdba25443a3f23811e5))
53+
- **deps:** update typescript-eslint monorepo to v2.19.0 ([b820955](https://github.com/swashata/wp-webpack-script/commit/b820955cc688b2963f08a3170e5596418de976eb))
54+
- **deps:** update typescript-eslint monorepo to v2.19.2 ([ca47d4d](https://github.com/swashata/wp-webpack-script/commit/ca47d4d83ca583198702debf072120609d9801f6))
55+
- **deps:** update typescript-eslint monorepo to v2.20.0 ([33f3476](https://github.com/swashata/wp-webpack-script/commit/33f347631be6794d511b0d6b385e567cd53fff3f))
56+
- **deps:** update typescript-eslint monorepo to v2.21.0 ([7089dc0](https://github.com/swashata/wp-webpack-script/commit/7089dc0d54d406292d48297e7578dfb62588fbcf))
57+
- **deps:** update typescript-eslint monorepo to v2.22.0 ([ab188ca](https://github.com/swashata/wp-webpack-script/commit/ab188caa450dd08c7139b2a6659b1d5080f8015a))
58+
- **deps:** update typescript-eslint monorepo to v2.23.0 ([39c1bd2](https://github.com/swashata/wp-webpack-script/commit/39c1bd22ccd5a7b09b172648d1195619ca9d7bdd))
59+
- **deps:** update typescript-eslint monorepo to v2.24.0 ([be3fabf](https://github.com/swashata/wp-webpack-script/commit/be3fabf08fb6b23e5fa398625d2964732ecd17b2))
9060

9161
# [4.3.0](https://github.com/swashata/wp-webpack-script/compare/v4.2.0...v4.3.0) (2019-12-26)
9262

93-
9463
### Bug Fixes
9564

96-
* **deps:** update typescript-eslint monorepo to v2.10.0 ([ca04d6e](https://github.com/swashata/wp-webpack-script/commit/ca04d6e))
97-
* **deps:** update typescript-eslint monorepo to v2.11.0 ([7279e02](https://github.com/swashata/wp-webpack-script/commit/7279e02))
98-
* **deps:** update typescript-eslint monorepo to v2.12.0 ([a97f702](https://github.com/swashata/wp-webpack-script/commit/a97f702))
99-
* **deps:** update typescript-eslint monorepo to v2.13.0 ([d9b9e58](https://github.com/swashata/wp-webpack-script/commit/d9b9e58))
100-
* **deps:** update typescript-eslint monorepo to v2.7.0 ([a855ea8](https://github.com/swashata/wp-webpack-script/commit/a855ea8))
101-
* **deps:** update typescript-eslint monorepo to v2.8.0 ([777747b](https://github.com/swashata/wp-webpack-script/commit/777747b))
102-
* **deps:** update typescript-eslint monorepo to v2.9.0 ([e76beed](https://github.com/swashata/wp-webpack-script/commit/e76beed))
103-
104-
105-
106-
65+
- **deps:** update typescript-eslint monorepo to v2.10.0 ([ca04d6e](https://github.com/swashata/wp-webpack-script/commit/ca04d6e))
66+
- **deps:** update typescript-eslint monorepo to v2.11.0 ([7279e02](https://github.com/swashata/wp-webpack-script/commit/7279e02))
67+
- **deps:** update typescript-eslint monorepo to v2.12.0 ([a97f702](https://github.com/swashata/wp-webpack-script/commit/a97f702))
68+
- **deps:** update typescript-eslint monorepo to v2.13.0 ([d9b9e58](https://github.com/swashata/wp-webpack-script/commit/d9b9e58))
69+
- **deps:** update typescript-eslint monorepo to v2.7.0 ([a855ea8](https://github.com/swashata/wp-webpack-script/commit/a855ea8))
70+
- **deps:** update typescript-eslint monorepo to v2.8.0 ([777747b](https://github.com/swashata/wp-webpack-script/commit/777747b))
71+
- **deps:** update typescript-eslint monorepo to v2.9.0 ([e76beed](https://github.com/swashata/wp-webpack-script/commit/e76beed))
10772

10873
# [4.2.0](https://github.com/swashata/wp-webpack-script/compare/v4.1.0...v4.2.0) (2019-10-29)
10974

110-
11175
### Bug Fixes
11276

113-
* **deps:** update typescript-eslint monorepo to v2.6.0 ([9ddf114](https://github.com/swashata/wp-webpack-script/commit/9ddf114))
114-
115-
116-
117-
77+
- **deps:** update typescript-eslint monorepo to v2.6.0 ([9ddf114](https://github.com/swashata/wp-webpack-script/commit/9ddf114))
11878

11979
# [4.0.0](https://github.com/swashata/wp-webpack-script/compare/v3.5.0...v4.0.0) (2019-10-28)
12080

121-
12281
### Bug Fixes
12382

124-
* issue with eslint, updated deps and typescript ([2625e7d](https://github.com/swashata/wp-webpack-script/commit/2625e7d))
125-
83+
- issue with eslint, updated deps and typescript ([2625e7d](https://github.com/swashata/wp-webpack-script/commit/2625e7d))
12684

12785
### Features
12886

129-
* update eslint-config for eslint 6 ([46a3554](https://github.com/swashata/wp-webpack-script/commit/46a3554))
130-
131-
132-
133-
87+
- update eslint-config for eslint 6 ([46a3554](https://github.com/swashata/wp-webpack-script/commit/46a3554))
13488

13589
# [3.5.0](https://github.com/swashata/wp-webpack-script/compare/v3.4.0...v3.5.0) (2019-05-04)
13690

137-
13891
### Bug Fixes
13992

140-
* **deps:** update dependencies ([01711b0](https://github.com/swashata/wp-webpack-script/commit/01711b0))
141-
142-
143-
144-
93+
- **deps:** update dependencies ([01711b0](https://github.com/swashata/wp-webpack-script/commit/01711b0))
14594

14695
# [3.2.0](https://github.com/swashata/wp-webpack-script/compare/v3.1.0...v3.2.0) (2019-04-28)
14796

148-
14997
### Bug Fixes
15098

151-
* **deps:** update dependencies ([1146e63](https://github.com/swashata/wp-webpack-script/commit/1146e63))
152-
* **deps:** update typescript-eslint monorepo to v1.7.0 ([56967d9](https://github.com/swashata/wp-webpack-script/commit/56967d9))
153-
154-
155-
156-
99+
- **deps:** update dependencies ([1146e63](https://github.com/swashata/wp-webpack-script/commit/1146e63))
100+
- **deps:** update typescript-eslint monorepo to v1.7.0 ([56967d9](https://github.com/swashata/wp-webpack-script/commit/56967d9))
157101

158102
# [3.0.0](https://github.com/swashata/wp-webpack-script/compare/v2.13.0...v3.0.0) (2019-04-16)
159103

160-
161104
### Bug Fixes
162105

163-
* **eslint-config:** issues within ts and js config ([33c0661](https://github.com/swashata/wp-webpack-script/commit/33c0661))
164-
106+
- **eslint-config:** issues within ts and js config ([33c0661](https://github.com/swashata/wp-webpack-script/commit/33c0661))
165107

166108
### Features
167109

168-
* add sharable eslint config ([9eb1e2c](https://github.com/swashata/wp-webpack-script/commit/9eb1e2c)), closes [#434](https://github.com/swashata/wp-webpack-script/issues/434)
110+
- add sharable eslint config ([9eb1e2c](https://github.com/swashata/wp-webpack-script/commit/9eb1e2c)), closes [#434](https://github.com/swashata/wp-webpack-script/issues/434)

0 commit comments

Comments
 (0)