@procore/core-scripts 11.13.1 → 11.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1064 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## 11.13.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8829abb: Updated Webpack configuration to include .cjs files.
|
|
8
|
+
|
|
9
|
+
## 11.13.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [65d84c2]
|
|
14
|
+
- @procore/eslint-config@14.6.0
|
|
15
|
+
|
|
16
|
+
## 11.13.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [1d09e6c]
|
|
21
|
+
- @procore/eslint-config@14.5.0
|
|
22
|
+
|
|
23
|
+
## 11.13.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- ed209b1: Babel config changes:
|
|
28
|
+
|
|
29
|
+
- Replaced `babel-preset-react-app` with presets and plugins from its source code. Because `babel-preset-react-app` is not maintained anymore.
|
|
30
|
+
- Deleted plugins that are included in `@babel/preset-env`
|
|
31
|
+
- Set `targets` to `default`. `default` is a shortcut for `> 0.5%, last 2 versions, Firefox ESR, not dead` for application configs.
|
|
32
|
+
|
|
33
|
+
- cac182a: Adjusts core-scripts optimization on splitchunks configuration.
|
|
34
|
+
- 6334d54: add `@babel/plugin-transform-runtime` plugin to babel lib config to make storybook work with mjs files
|
|
35
|
+
|
|
36
|
+
## 11.12.0
|
|
37
|
+
|
|
38
|
+
### Minor Changes
|
|
39
|
+
|
|
40
|
+
- c86960a: Enable Webpack SplitChunksPlugin
|
|
41
|
+
|
|
42
|
+
## 11.11.0
|
|
43
|
+
|
|
44
|
+
### Minor Changes
|
|
45
|
+
|
|
46
|
+
- 23b9990: Upgrades package dependencies.
|
|
47
|
+
|
|
48
|
+
### Patch Changes
|
|
49
|
+
|
|
50
|
+
- Updated dependencies [23b9990]
|
|
51
|
+
- @procore/eslint-config@14.4.0
|
|
52
|
+
|
|
53
|
+
## 11.10.6
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- 8c3442f: eslint - added check if `@procore/eslint-config` present in root `package.json`
|
|
58
|
+
eslint - fixed issue for `package.json` without `devDependencies` and `dependencies`
|
|
59
|
+
|
|
60
|
+
## 11.10.5
|
|
61
|
+
|
|
62
|
+
### Patch Changes
|
|
63
|
+
|
|
64
|
+
- 64da1ca: fix ESLint being unable to sometimes resolve the packaged ESLint configuration and load custom plugins or configuration
|
|
65
|
+
|
|
66
|
+
## 11.10.4
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- Handles JSON files correctly when running lib:build.
|
|
71
|
+
|
|
72
|
+
## 11.10.3
|
|
73
|
+
|
|
74
|
+
### Patch Changes
|
|
75
|
+
|
|
76
|
+
- 804cb23: Fixes issue where externals were not webpack 5 compatible.
|
|
77
|
+
- 0f1691a: Fixes issue where some babel plugins have mismatched "loose" mode definitions (library builds only).
|
|
78
|
+
|
|
79
|
+
## 11.10.2
|
|
80
|
+
|
|
81
|
+
### Patch Changes
|
|
82
|
+
|
|
83
|
+
- 0e695a1: Fixes and issue where the `@babel/plugin-transform-class-properties` babel plugin is incorrectly specified in the babel library configuration.
|
|
84
|
+
|
|
85
|
+
## 11.10.1
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- a098b0c: Adds obsolete `@babel/plugin-proposal-private-property-in-object` package to eliminate warning that appears for people using core-scripts.
|
|
90
|
+
|
|
91
|
+
## 11.10.0
|
|
92
|
+
|
|
93
|
+
### Minor Changes
|
|
94
|
+
|
|
95
|
+
- 3c43055: Removes the `babel-plugin-transform-builtin-extend` Babel plugin.
|
|
96
|
+
|
|
97
|
+
According to several resources, this is no longer needed as of Babel 7 (which this project has been on for awhile).
|
|
98
|
+
This is also triggering some Snyk issues, without the ability to resolve them.
|
|
99
|
+
Note there should be no degradation of functionality or breaking changes by removing this plugin.
|
|
100
|
+
|
|
101
|
+
Reference: [Babel 7 announcement](https://babeljs.io/blog/2018/08/27/7.0.0#class-c-extends-htmlelement-)
|
|
102
|
+
|
|
103
|
+
- a1f4672: Replaces the babel 6 `babel-plugin-transform-class-properties` and deprecated `@babel/plugin-proposal-class-properties` plugins, replacing them with `@babel/plugin-transform-class-properties`.
|
|
104
|
+
|
|
105
|
+
## 11.9.0
|
|
106
|
+
|
|
107
|
+
### Minor Changes
|
|
108
|
+
|
|
109
|
+
- 2e7a431: Upgrades webpack-dev-server to 4.x, and improves several internal type definitions.
|
|
110
|
+
While consumers may see some minor user interface differences when running core-scripts start, it should work without any configuration changes.
|
|
111
|
+
|
|
112
|
+
Additionally, it addresses any Snyk issues that were the result of using webpack-dev-server 3.x.
|
|
113
|
+
|
|
114
|
+
- 438e029: Upgrades package dependencies.
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- Updated dependencies [438e029]
|
|
119
|
+
- @procore/eslint-config@14.3.0
|
|
120
|
+
|
|
121
|
+
## 11.8.0
|
|
122
|
+
|
|
123
|
+
### Minor Changes
|
|
124
|
+
|
|
125
|
+
- b5b0510: Upgrades dependencies, and fixes versions in package.json file.
|
|
126
|
+
|
|
127
|
+
### Patch Changes
|
|
128
|
+
|
|
129
|
+
- Updated dependencies [b5b0510]
|
|
130
|
+
- @procore/eslint-config@14.2.0
|
|
131
|
+
|
|
132
|
+
## 11.7.0
|
|
133
|
+
|
|
134
|
+
### Minor Changes
|
|
135
|
+
|
|
136
|
+
- 6bdb9c8: Added --inspect flag to lib:build to help with config analysis
|
|
137
|
+
|
|
138
|
+
## 11.6.0
|
|
139
|
+
|
|
140
|
+
### Minor Changes
|
|
141
|
+
|
|
142
|
+
- 2ca646b: Updates dependencies.
|
|
143
|
+
|
|
144
|
+
### Patch Changes
|
|
145
|
+
|
|
146
|
+
- Updated dependencies [2ca646b]
|
|
147
|
+
- @procore/eslint-config@14.1.0
|
|
148
|
+
|
|
149
|
+
## 11.5.0
|
|
150
|
+
|
|
151
|
+
### Minor Changes
|
|
152
|
+
|
|
153
|
+
- 311e3e2: Upgrades react-dev-utils to 12.0.1. Adjusts the code that integrates with react-dev-utils to be compatible with the build scripts.
|
|
154
|
+
|
|
155
|
+
### Patch Changes
|
|
156
|
+
|
|
157
|
+
- 311e3e2: Updates packages dependencies.
|
|
158
|
+
- Updated dependencies [311e3e2]
|
|
159
|
+
- @procore/eslint-config@14.0.1
|
|
160
|
+
|
|
161
|
+
## 11.4.5
|
|
162
|
+
|
|
163
|
+
### Patch Changes
|
|
164
|
+
|
|
165
|
+
- 8916a57: revert workbox-webpack-plugin a version as it's actually breaking
|
|
166
|
+
|
|
167
|
+
## 11.4.4
|
|
168
|
+
|
|
169
|
+
### Patch Changes
|
|
170
|
+
|
|
171
|
+
- Updated dependencies
|
|
172
|
+
- @procore/eslint-config@14.0.0
|
|
173
|
+
|
|
174
|
+
## 11.4.3
|
|
175
|
+
|
|
176
|
+
### Patch Changes
|
|
177
|
+
|
|
178
|
+
- Updated dependencies
|
|
179
|
+
- @procore/eslint-config@13.0.0
|
|
180
|
+
|
|
181
|
+
## 11.4.2
|
|
182
|
+
|
|
183
|
+
### Patch Changes
|
|
184
|
+
|
|
185
|
+
- e845b5e: core-scripts transformIgnorePatterns regex fix for nested core-react
|
|
186
|
+
|
|
187
|
+
## 11.4.1
|
|
188
|
+
|
|
189
|
+
### Patch Changes
|
|
190
|
+
|
|
191
|
+
- Updated dependencies [630c6b9]
|
|
192
|
+
- Updated dependencies [0847a32]
|
|
193
|
+
- @procore/eslint-config@12.0.0
|
|
194
|
+
|
|
195
|
+
## 11.4.0
|
|
196
|
+
|
|
197
|
+
### Minor Changes
|
|
198
|
+
|
|
199
|
+
- 1c2b3bd: Embeds `eslint-config` dependencies into `eslint-config`.
|
|
200
|
+
|
|
201
|
+
### Patch Changes
|
|
202
|
+
|
|
203
|
+
- Updated dependencies [1c2b3bd]
|
|
204
|
+
- @procore/eslint-config@11.0.0
|
|
205
|
+
|
|
206
|
+
## 11.3.1
|
|
207
|
+
|
|
208
|
+
### Patch Changes
|
|
209
|
+
|
|
210
|
+
- 150801d: Fixes some minor dependency issues between oclif dependencies.
|
|
211
|
+
|
|
212
|
+
## 11.3.0
|
|
213
|
+
|
|
214
|
+
### Minor Changes
|
|
215
|
+
|
|
216
|
+
- e4fbae8: updating webpack to current latest version to support xxhash64 option
|
|
217
|
+
- 25ea1d7: Update typescript version to latest
|
|
218
|
+
|
|
219
|
+
## 11.2.1
|
|
220
|
+
|
|
221
|
+
### Patch Changes
|
|
222
|
+
|
|
223
|
+
- 9cdae55: fixing a prettier config
|
|
224
|
+
|
|
225
|
+
## 11.2.0
|
|
226
|
+
|
|
227
|
+
### Minor Changes
|
|
228
|
+
|
|
229
|
+
- 5023091: Updates several Webpack dependencies.
|
|
230
|
+
- f2d3370: Updates all oclif dependencies.
|
|
231
|
+
|
|
232
|
+
### Patch Changes
|
|
233
|
+
|
|
234
|
+
- 77e2d1c: Upgrades babel dependencies.
|
|
235
|
+
- d5eb528: Updates stylelint dependencies.
|
|
236
|
+
- b767b61: Switches to built-in `jest-environment-jsdom`, rather than `jest-environment-jsdom-sixteen`.
|
|
237
|
+
- aa2c742: Removes unused dependencies.
|
|
238
|
+
- Updated dependencies [4ff60d7]
|
|
239
|
+
- @procore/eslint-config@10.3.1
|
|
240
|
+
|
|
241
|
+
## 11.1.1
|
|
242
|
+
|
|
243
|
+
### Patch Changes
|
|
244
|
+
|
|
245
|
+
- Updated dependencies
|
|
246
|
+
- @procore/eslint-config@10.3.0
|
|
247
|
+
|
|
248
|
+
## 11.1.0
|
|
249
|
+
|
|
250
|
+
### Minor Changes
|
|
251
|
+
|
|
252
|
+
- f85f9b0: version bump of procore/eslint-config
|
|
253
|
+
|
|
254
|
+
All notable changes to this project will be documented in this file.
|
|
255
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
256
|
+
|
|
257
|
+
# [11.0.0](https://github.com/procore/frontend-tooling/compare/@procore/core-scripts@11.0.0-rc.4...@procore/core-scripts@11.0.0) (2022-08-15)
|
|
258
|
+
|
|
259
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
260
|
+
|
|
261
|
+
# [10.2.0](https://github.com/procore/frontend-tooling/compare/v10.1.0...v10.2.0) (2022-02-07)
|
|
262
|
+
|
|
263
|
+
### Features
|
|
264
|
+
|
|
265
|
+
- changing to using dart sass instead of node sass ([#871](https://github.com/procore/frontend-tooling/issues/871)) ([b1e211f](https://github.com/procore/frontend-tooling/commit/b1e211ff188206d0127ca5d4a17d45fba585d634))
|
|
266
|
+
|
|
267
|
+
# [10.1.0](https://github.com/procore/frontend-tooling/compare/v10.0.2...v10.1.0) (2021-09-28)
|
|
268
|
+
|
|
269
|
+
### Bug Fixes
|
|
270
|
+
|
|
271
|
+
- packages/core-scripts/package.json to reduce vulnerabilities ([f5e40c0](https://github.com/procore/frontend-tooling/commit/f5e40c0fdbec23c75b4f9d28d40951ae646b1c4a))
|
|
272
|
+
|
|
273
|
+
### Features
|
|
274
|
+
|
|
275
|
+
- switch to CSSMinimizerWebpackPlugin ([#699](https://github.com/procore/frontend-tooling/issues/699)) ([9242b12](https://github.com/procore/frontend-tooling/commit/9242b12aec887271470c58178f8e1910a61c3e34))
|
|
276
|
+
|
|
277
|
+
## [10.0.3](https://github.com/procore/frontend-tooling/compare/v10.0.2...v10.0.3) (2021-09-27)
|
|
278
|
+
|
|
279
|
+
\*\*### chore
|
|
280
|
+
|
|
281
|
+
- upgrade to JSDOM 16 via `jest-environment-jsdom-sixteen` to allow for testing of HTML custom elements
|
|
282
|
+
|
|
283
|
+
## [10.0.2](https://github.com/procore/frontend-tooling/compare/v10.0.1...v10.0.2) (2021-09-03)
|
|
284
|
+
|
|
285
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
286
|
+
|
|
287
|
+
## [10.0.1](https://github.com/procore/frontend-tooling/compare/v10.0.0...v10.0.1) (2021-08-31)
|
|
288
|
+
|
|
289
|
+
### Bug Fixes
|
|
290
|
+
|
|
291
|
+
- Cross origin loading false ([#408](https://github.com/procore/frontend-tooling/issues/408)) ([a99bd6d](https://github.com/procore/frontend-tooling/commit/a99bd6d4abd1ed9f096baf4f42eeac18a4b93eb5))
|
|
292
|
+
- fixing global for web context ([#383](https://github.com/procore/frontend-tooling/issues/383)) ([6083886](https://github.com/procore/frontend-tooling/commit/60838868a5b41a17517ba511e95cb6a510157ba8))
|
|
293
|
+
|
|
294
|
+
### Reverts
|
|
295
|
+
|
|
296
|
+
- Revert "chore: publish v10.0.1 [ci skip]" ([19c6447](https://github.com/procore/frontend-tooling/commit/19c644710a9e44266f366a15d46c20595ccf9206))
|
|
297
|
+
|
|
298
|
+
# [10.0.0](https://github.com/procore/frontend-tooling/compare/v9.6.2...v10.0.0) (2021-05-11)
|
|
299
|
+
|
|
300
|
+
### chore
|
|
301
|
+
|
|
302
|
+
- fix dep versions ([57e39f3](https://github.com/procore/frontend-tooling/commit/57e39f3a7fd8376c28f3667b6cd6f6b6bc167ef5))
|
|
303
|
+
|
|
304
|
+
### Features
|
|
305
|
+
|
|
306
|
+
- add bugsnag sourcemap uploading ([#255](https://github.com/procore/frontend-tooling/issues/255)) ([59dfba4](https://github.com/procore/frontend-tooling/commit/59dfba4dd9d18b66c79596e510a7e59f53f83453))
|
|
307
|
+
- Webpack 5 ([1353385](https://github.com/procore/frontend-tooling/commit/1353385fbbcda136f002d9e2482d936d58e28714))
|
|
308
|
+
|
|
309
|
+
### BREAKING CHANGES
|
|
310
|
+
|
|
311
|
+
- Bumping a bunch of deps to breaking versions
|
|
312
|
+
|
|
313
|
+
## [9.6.2](https://github.com/procore/core-scripts/compare/v9.6.0...v9.6.2) (2021-03-24)
|
|
314
|
+
|
|
315
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
316
|
+
|
|
317
|
+
## [9.6.1](https://github.com/procore/core-scripts/compare/v9.6.0...v9.6.1) (2021-03-24)
|
|
318
|
+
|
|
319
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
320
|
+
|
|
321
|
+
# 9.6.0 (2021-02-23)
|
|
322
|
+
|
|
323
|
+
### Bug Fixes
|
|
324
|
+
|
|
325
|
+
- adding proper tool version and updating package json ([17b1607](https://github.com/procore/frontend-tooling/commit/17b1607050992f729626439a0a2717a4213e61eb))
|
|
326
|
+
- app:gen generates apps that do not gitignore eslintrc ([f76bbbd](https://github.com/procore/frontend-tooling/commit/f76bbbda0632dd3ca47c8224c70cdacea3f9f970))
|
|
327
|
+
- app:gen generates apps that do not gitignore stylelintrc ([e526659](https://github.com/procore/frontend-tooling/commit/e526659774ad1b8153abf089d45fd3e42589aed3))
|
|
328
|
+
- update webpack externals to use full path of import ([504fc14](https://github.com/procore/frontend-tooling/commit/504fc145ea785186d252bb9ea7bde0a67f4b7cd9))
|
|
329
|
+
|
|
330
|
+
### Features
|
|
331
|
+
|
|
332
|
+
- bumping version to help circle scripts ([#16](https://github.com/procore/frontend-tooling/issues/16)) ([956948d](https://github.com/procore/frontend-tooling/commit/956948d7277bd7b0f52cc3c55ab58a23e4f25530))
|
|
333
|
+
- **core-scripts:** add the ability to log browser and cypress command logging to a log file and to ([c4c9760](https://github.com/procore/frontend-tooling/commit/c4c97602ea6196a9c981e6df810d84a163676a42))
|
|
334
|
+
- **core-scripts:** docs ([5c75d48](https://github.com/procore/frontend-tooling/commit/5c75d48a78ec3ee9b58f7e1a0eff6ec57afce67e))
|
|
335
|
+
|
|
336
|
+
# [9.5.0](https://github.com/procore/core/compare/v9.4.0...v9.5.0) (2020-12-14)
|
|
337
|
+
|
|
338
|
+
### Features
|
|
339
|
+
|
|
340
|
+
- Adds Cypress browser console logging support via the `cypress-terminal-report` plugin
|
|
341
|
+
|
|
342
|
+
# [9.4.0](https://github.com/procore/core/compare/v9.3.0...v9.4.0) (2020-11-23)
|
|
343
|
+
|
|
344
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
345
|
+
|
|
346
|
+
# [9.3.0](https://github.com/procore/core/compare/v9.2.2...v9.3.0) (2020-11-06)
|
|
347
|
+
|
|
348
|
+
### Bug Fixes
|
|
349
|
+
|
|
350
|
+
- Follow-up fixes for Pill Select component ([#7749](https://github.com/procore/core/issues/7749)) ([117c4fe](https://github.com/procore/core/commit/117c4fe3cc8c6c2f285a5ac739789795d78b4755))
|
|
351
|
+
|
|
352
|
+
### Features
|
|
353
|
+
|
|
354
|
+
- ensure core-scripts runs coverage command with maxWorkers=1 in CI ([549f5f7](https://github.com/procore/core/commit/549f5f797ddccbbcb061c7d9444c2661f0a0f9a5))
|
|
355
|
+
|
|
356
|
+
## [9.2.1](https://github.com/procore/core/compare/v9.2.0...v9.2.1) (2020-10-29)
|
|
357
|
+
|
|
358
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
359
|
+
|
|
360
|
+
# [9.2.0](https://github.com/procore/core/compare/v9.1.0...v9.2.0) (2020-10-27)
|
|
361
|
+
|
|
362
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
363
|
+
|
|
364
|
+
# [9.1.0](https://github.com/procore/core/compare/v9.0.0...v9.1.0) (2020-10-23)
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
- jest needs to transform/transpile date-fns ([6a3ce09](https://github.com/procore/core/commit/6a3ce094cc590955902d10b2ba0bf71d5a2585e3))
|
|
369
|
+
|
|
370
|
+
### Features
|
|
371
|
+
|
|
372
|
+
- Adding a README file to generated hydra client folders ([#7662](https://github.com/procore/core/issues/7662)) ([c9b2dd2](https://github.com/procore/core/commit/c9b2dd2d9e990fc97ac28933944a82362005c6bb))
|
|
373
|
+
|
|
374
|
+
# [9.0.0](https://github.com/procore/core/compare/v8.25.0...v9.0.0) (2020-10-09)
|
|
375
|
+
|
|
376
|
+
### Bug Fixes
|
|
377
|
+
|
|
378
|
+
- **deps:** update dependency tslib to v2 ([600c1d8](https://github.com/procore/core/commit/600c1d8ec08a001128ee74d008e5e5642ed48839))
|
|
379
|
+
- **deps:** update jest monorepo to v26 (major) ([#6477](https://github.com/procore/core/issues/6477)) ([2d07c50](https://github.com/procore/core/commit/2d07c50818a9baa0388d3f38b720fc63cc8b090c)), closes [#6460](https://github.com/procore/core/issues/6460) [#6459](https://github.com/procore/core/issues/6459) [#6458](https://github.com/procore/core/issues/6458) [#6461](https://github.com/procore/core/issues/6461) [#6449](https://github.com/procore/core/issues/6449) [#6462](https://github.com/procore/core/issues/6462) [#6450](https://github.com/procore/core/issues/6450) [#6457](https://github.com/procore/core/issues/6457) [#6434](https://github.com/procore/core/issues/6434) [#6464](https://github.com/procore/core/issues/6464) [#6463](https://github.com/procore/core/issues/6463) [#6402](https://github.com/procore/core/issues/6402) [#6470](https://github.com/procore/core/issues/6470) [#6469](https://github.com/procore/core/issues/6469) [#6467](https://github.com/procore/core/issues/6467) [#6466](https://github.com/procore/core/issues/6466) [#6465](https://github.com/procore/core/issues/6465) [#6483](https://github.com/procore/core/issues/6483) [#6482](https://github.com/procore/core/issues/6482) [#6479](https://github.com/procore/core/issues/6479) [#6481](https://github.com/procore/core/issues/6481) [#6474](https://github.com/procore/core/issues/6474) [#6472](https://github.com/procore/core/issues/6472) [#6476](https://github.com/procore/core/issues/6476) [#6473](https://github.com/procore/core/issues/6473) [#6480](https://github.com/procore/core/issues/6480) [#6486](https://github.com/procore/core/issues/6486) [#6485](https://github.com/procore/core/issues/6485) [#6484](https://github.com/procore/core/issues/6484) [#6487](https://github.com/procore/core/issues/6487) [#6471](https://github.com/procore/core/issues/6471) [#6468](https://github.com/procore/core/issues/6468)
|
|
380
|
+
|
|
381
|
+
### chore
|
|
382
|
+
|
|
383
|
+
- bumping Typescript to latest version ([f82e5d9](https://github.com/procore/core/commit/f82e5d9b0297beaff343ced8321ac11dda0b5208))
|
|
384
|
+
|
|
385
|
+
### BREAKING CHANGES
|
|
386
|
+
|
|
387
|
+
- Core-scripts Type-checking Breaking Changes
|
|
388
|
+
|
|
389
|
+
# [8.25.0](https://github.com/procore/core/compare/v8.24.0...v8.25.0) (2020-10-01)
|
|
390
|
+
|
|
391
|
+
### Bug Fixes
|
|
392
|
+
|
|
393
|
+
- revert "chore: remove duplicate deps from core-scripts ([#7576](https://github.com/procore/core/issues/7576))" ([832cb98](https://github.com/procore/core/commit/832cb98c73b724926e0cc44ba69da2b5d9e88b25))
|
|
394
|
+
|
|
395
|
+
# [8.24.0](https://github.com/procore/core/compare/v8.23.1...v8.24.0) (2020-09-28)
|
|
396
|
+
|
|
397
|
+
### Features
|
|
398
|
+
|
|
399
|
+
- introduce FileSelect component ([#7137](https://github.com/procore/core/issues/7137)) ([7325ab4](https://github.com/procore/core/commit/7325ab403c61633062daecda024d8b76ea0e524a))
|
|
400
|
+
|
|
401
|
+
## [8.23.1](https://github.com/procore/core/compare/v8.23.0...v8.23.1) (2020-09-14)
|
|
402
|
+
|
|
403
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
404
|
+
|
|
405
|
+
# [8.23.0](https://github.com/procore/core/compare/v8.22.0...v8.23.0) (2020-09-10)
|
|
406
|
+
|
|
407
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
408
|
+
|
|
409
|
+
# [8.22.0](https://github.com/procore/core/compare/v8.21.0...v8.22.0) (2020-08-28)
|
|
410
|
+
|
|
411
|
+
### Bug Fixes
|
|
412
|
+
|
|
413
|
+
- **core-scripts:** fix eslint command ([24b392c](https://github.com/procore/core/commit/24b392c4ffa9a9e681f205119b1d36ae1f1afb21))
|
|
414
|
+
|
|
415
|
+
# [8.21.0](https://github.com/procore/core/compare/v8.20.0...v8.21.0) (2020-08-13)
|
|
416
|
+
|
|
417
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
418
|
+
|
|
419
|
+
# [8.20.0](https://github.com/procore/core/compare/v8.19.0...v8.20.0) (2020-07-31)
|
|
420
|
+
|
|
421
|
+
### Bug Fixes
|
|
422
|
+
|
|
423
|
+
- Core Scripts External PeerDeps Regex ([#7201](https://github.com/procore/core/issues/7201)) ([282e399](https://github.com/procore/core/commit/282e39986421234d3cf1232dd005d3e1f7ae0ecf))
|
|
424
|
+
|
|
425
|
+
# [8.19.0](https://github.com/procore/core/compare/v8.18.3...v8.19.0) (2020-07-21)
|
|
426
|
+
|
|
427
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
428
|
+
|
|
429
|
+
## [8.18.3](https://github.com/procore/core/compare/v8.18.2...v8.18.3) (2020-07-16)
|
|
430
|
+
|
|
431
|
+
### Bug Fixes
|
|
432
|
+
|
|
433
|
+
- [GLUE-2124] top left portal interrupts pointer events ([#7267](https://github.com/procore/core/issues/7267)) ([d272fe6](https://github.com/procore/core/commit/d272fe650d46251dbe99f4ccb20f4b90ecca473e))
|
|
434
|
+
|
|
435
|
+
# [8.18.0](https://github.com/procore/core/compare/v8.17.0...v8.18.0) (2020-07-13)
|
|
436
|
+
|
|
437
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
438
|
+
|
|
439
|
+
# [8.17.0](https://github.com/procore/core/compare/v8.16.1...v8.17.0) (2020-06-26)
|
|
440
|
+
|
|
441
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
442
|
+
|
|
443
|
+
## [8.16.1](https://github.com/procore/core/compare/v8.16.0...v8.16.1) (2020-06-25)
|
|
444
|
+
|
|
445
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
446
|
+
|
|
447
|
+
# [8.16.0](https://github.com/procore/core/compare/v8.15.0...v8.16.0) (2020-06-16)
|
|
448
|
+
|
|
449
|
+
### Features
|
|
450
|
+
|
|
451
|
+
- **core-react,core-docs,core-css:** introduce FileAttacher component ([66ee19d](https://github.com/procore/core/commit/66ee19db4f45a849760ac5bd6436d1b1bc321985))
|
|
452
|
+
|
|
453
|
+
# [8.15.0](https://github.com/procore/core/compare/v8.14.1...v8.15.0) (2020-06-04)
|
|
454
|
+
|
|
455
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
456
|
+
|
|
457
|
+
## [8.14.1](https://github.com/procore/core/compare/v8.14.0...v8.14.1) (2020-05-21)
|
|
458
|
+
|
|
459
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
460
|
+
|
|
461
|
+
# [8.14.0](https://github.com/procore/core/compare/v8.13.0...v8.14.0) (2020-05-21)
|
|
462
|
+
|
|
463
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
464
|
+
|
|
465
|
+
# [8.13.0](https://github.com/procore/core/compare/v8.12.0...v8.13.0) (2020-05-20)
|
|
466
|
+
|
|
467
|
+
### Bug Fixes
|
|
468
|
+
|
|
469
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.2.1 ([#6593](https://github.com/procore/core/issues/6593)) ([5efa19d](https://github.com/procore/core/commit/5efa19d47a145717f13a649bf3b2db20c7e1bbf9))
|
|
470
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.3.0 ([#6627](https://github.com/procore/core/issues/6627)) ([bb3ffb7](https://github.com/procore/core/commit/bb3ffb7e13ecdb7ab8a1c1b050cb84170bc004fa))
|
|
471
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.4.0 ([#6629](https://github.com/procore/core/issues/6629)) ([4471436](https://github.com/procore/core/commit/447143657cbb21912982f805cf754470f50ca63e))
|
|
472
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.4.1 ([14d984f](https://github.com/procore/core/commit/14d984f738641a53e7be82aa8edea4e79cac1662))
|
|
473
|
+
- **deps:** update dependency @oclif/plugin-help to v3.0.1 ([#6623](https://github.com/procore/core/issues/6623)) ([41314e3](https://github.com/procore/core/commit/41314e3f642ecd290d5da5ec2739c1d809e8ca28))
|
|
474
|
+
- **deps:** update dependency @types/jest to v25.2.2 ([#6578](https://github.com/procore/core/issues/6578)) ([183ac23](https://github.com/procore/core/commit/183ac23cd970266032e4aa1f87ff56df9158af22))
|
|
475
|
+
- **deps:** update dependency @types/jest to v25.2.3 ([#6641](https://github.com/procore/core/issues/6641)) ([3ae6d7a](https://github.com/procore/core/commit/3ae6d7a40f1dcf56ee4bdc191b78dbeb2b83433f))
|
|
476
|
+
- **deps:** update dependency @types/node to v12.12.39 ([#6570](https://github.com/procore/core/issues/6570)) ([c3711ed](https://github.com/procore/core/commit/c3711ed0986a900fb4d2588096a0108c3fd42587))
|
|
477
|
+
- **deps:** update dependency cli-ux to v5.4.6 ([#6597](https://github.com/procore/core/issues/6597)) ([39f631e](https://github.com/procore/core/commit/39f631e59d03da33140eb562dc69a4a0ec0d166a))
|
|
478
|
+
- **deps:** update dependency ejs to v3.1.3 ([de587fb](https://github.com/procore/core/commit/de587fb17eae290cf79fff4ab23d698dedd7e2e2))
|
|
479
|
+
- **deps:** update dependency eslint to v7 ([#6537](https://github.com/procore/core/issues/6537)) ([c46d565](https://github.com/procore/core/commit/c46d565df44c799db1a95ca757e0bfd3b0fbfa0b))
|
|
480
|
+
- **deps:** update dependency eslint-plugin-react to v7.20.0 ([#6572](https://github.com/procore/core/issues/6572)) ([f048a9a](https://github.com/procore/core/commit/f048a9aac2a1d05b8f7219338af1fed3b08f91db))
|
|
481
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v4.0.1 ([#6556](https://github.com/procore/core/issues/6556)) ([2c2a027](https://github.com/procore/core/commit/2c2a027ffb72cd333b1471346ada60521c8b41e2))
|
|
482
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v4.0.2 ([#6576](https://github.com/procore/core/issues/6576)) ([07246af](https://github.com/procore/core/commit/07246af72520d443d09c2d843dece5a0192dccd4))
|
|
483
|
+
- **deps:** update dependency stylelint to v13.4.0 ([#6626](https://github.com/procore/core/issues/6626)) ([acc4e28](https://github.com/procore/core/commit/acc4e287c995c492fee275067c03b3275dad10b6))
|
|
484
|
+
- **deps:** update dependency stylelint to v13.4.1 ([#6635](https://github.com/procore/core/issues/6635)) ([1006c01](https://github.com/procore/core/commit/1006c01c17920d71f25dc80a3aa72480e36667d5))
|
|
485
|
+
- **deps:** update dependency stylelint to v13.5.0 ([#6645](https://github.com/procore/core/issues/6645)) ([9c558aa](https://github.com/procore/core/commit/9c558aa1836595102437c764ade8ef086a982f7a))
|
|
486
|
+
- **deps:** update dependency tslib to v1.12.0 ([#6560](https://github.com/procore/core/issues/6560)) ([1d3154f](https://github.com/procore/core/commit/1d3154fb4a7a994da377582a713af4b524442f0d))
|
|
487
|
+
- **deps:** update dependency tslib to v1.13.0 ([#6585](https://github.com/procore/core/issues/6585)) ([86a7f85](https://github.com/procore/core/commit/86a7f85276cfad61b1b24d005dc67d92be582024))
|
|
488
|
+
- **deps:** update dependency webpack-bundle-analyzer to v3.8.0 ([067f169](https://github.com/procore/core/commit/067f16992313a2cbf291b8d4c8166011599b8fc2))
|
|
489
|
+
- **deps:** update dependency webpack-dev-server to v3.11.0 ([#6533](https://github.com/procore/core/issues/6533)) ([92cabd5](https://github.com/procore/core/commit/92cabd546fe14663e6e2bc23e692d874ad23280b))
|
|
490
|
+
- **deps:** update typescript-eslint monorepo to v2.32.0 ([#6549](https://github.com/procore/core/issues/6549)) ([10bd32b](https://github.com/procore/core/commit/10bd32b642eb377740d6554a29bd3b524a6636c4))
|
|
491
|
+
- **deps:** update typescript-eslint monorepo to v2.33.0 ([#6566](https://github.com/procore/core/issues/6566)) ([c07e068](https://github.com/procore/core/commit/c07e068abca2975d01dd24c4f4f6a32349d5b947))
|
|
492
|
+
- **deps:** update typescript-eslint monorepo to v2.34.0 ([#6636](https://github.com/procore/core/issues/6636)) ([cb4162c](https://github.com/procore/core/commit/cb4162cf3d324c21b8b18616435b219d516b82dd))
|
|
493
|
+
- revert jest-watch-typeahead upgrade ([#6583](https://github.com/procore/core/issues/6583)) ([65d87d5](https://github.com/procore/core/commit/65d87d5e1b0b65368af79eb15564a0d7dcc20527))
|
|
494
|
+
|
|
495
|
+
# [8.12.0](https://github.com/procore/core/compare/v8.11.0...v8.12.0) (2020-05-08)
|
|
496
|
+
|
|
497
|
+
### Bug Fixes
|
|
498
|
+
|
|
499
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.2.0 ([#6520](https://github.com/procore/core/issues/6520)) ([a8ab2cb](https://github.com/procore/core/commit/a8ab2cbfd70cda3dae65ec1bc09d6da6abe96e21))
|
|
500
|
+
- **deps:** update dependency @oclif/command to v1.6.0 ([#6467](https://github.com/procore/core/issues/6467)) ([d1e3d12](https://github.com/procore/core/commit/d1e3d12c7486aa27c67744198dc9973452a15359))
|
|
501
|
+
- **deps:** update dependency @oclif/command to v1.6.1 ([#6487](https://github.com/procore/core/issues/6487)) ([be3da67](https://github.com/procore/core/commit/be3da67e681418620843b2a4d1d9bc77e731a085))
|
|
502
|
+
- **deps:** update dependency @oclif/plugin-autocomplete to v0.2.0 ([#6490](https://github.com/procore/core/issues/6490)) ([b5b3d77](https://github.com/procore/core/commit/b5b3d77abbab5be6da14230b0566f5fb4dd590b7))
|
|
503
|
+
- **deps:** update dependency @oclif/plugin-help to v3 ([#6432](https://github.com/procore/core/issues/6432)) ([8177a71](https://github.com/procore/core/commit/8177a717770a241e8a244e4a83b927d4df08724e))
|
|
504
|
+
- **deps:** update dependency @svgr/webpack to v5.4.0 ([#6430](https://github.com/procore/core/issues/6430)) ([31710ab](https://github.com/procore/core/commit/31710abd4f18f4a39f046a3a92c65cec37c6a6b6))
|
|
505
|
+
- **deps:** update dependency @types/node to v12.12.38 ([#6491](https://github.com/procore/core/issues/6491)) ([d52a3cc](https://github.com/procore/core/commit/d52a3ccdf5b7b2f3bbaf49a70830eda8fedb3923))
|
|
506
|
+
- **deps:** update dependency cypress to v4.5.0 ([#6441](https://github.com/procore/core/issues/6441)) ([31b54ee](https://github.com/procore/core/commit/31b54ee7a68039bb600e9ee7778bebacc6b61e6d))
|
|
507
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v4 ([#6466](https://github.com/procore/core/issues/6466)) ([d5ea254](https://github.com/procore/core/commit/d5ea25495cac58364f15bb8865212c04eeb5d2b3))
|
|
508
|
+
- **deps:** update dependency execa to v4.0.1 ([#6529](https://github.com/procore/core/issues/6529)) ([cded1b4](https://github.com/procore/core/commit/cded1b4bd62664eb572beb4fc570ce0919623d9b))
|
|
509
|
+
- **deps:** update dependency html-webpack-plugin to v4.2.1 ([#6438](https://github.com/procore/core/issues/6438)) ([3123fff](https://github.com/procore/core/commit/3123ffffa6dc40a3a71ae0ee8f295b42115aa8ad))
|
|
510
|
+
- **deps:** update dependency html-webpack-plugin to v4.3.0 ([#6459](https://github.com/procore/core/issues/6459)) ([8b6ae63](https://github.com/procore/core/commit/8b6ae633b1e6c8f93b7c77a5017f42018da7514d))
|
|
511
|
+
- **deps:** update dependency is-wsl to v2.2.0 ([#6473](https://github.com/procore/core/issues/6473)) ([529d5bd](https://github.com/procore/core/commit/529d5bdd8a5cd4c80c7735d74b386be172ccabbb))
|
|
512
|
+
- **deps:** update dependency jest-watch-typeahead to v0.6.0 ([#6486](https://github.com/procore/core/issues/6486)) ([77aedf5](https://github.com/procore/core/commit/77aedf5a312c0b9d840cd1762354890fab85d0ff))
|
|
513
|
+
- **deps:** update dependency mocha to v7.1.2 ([#6412](https://github.com/procore/core/issues/6412)) ([b1f580f](https://github.com/procore/core/commit/b1f580f05b4ff5615ed87d56b7c0d41afb8e62a2))
|
|
514
|
+
- **deps:** update dependency node-sass to v4.14.1 ([#6482](https://github.com/procore/core/issues/6482)) ([77c2c4d](https://github.com/procore/core/commit/77c2c4da61e4fc089e0d80810a0ce42971c7a3e0))
|
|
515
|
+
- **deps:** update dependency npm-packlist to v2.1.2 ([#6515](https://github.com/procore/core/issues/6515)) ([f6be27f](https://github.com/procore/core/commit/f6be27f579f2e3800391c3e11fc07c42ebe015be))
|
|
516
|
+
- **deps:** update dependency postcss-flexbugs-fixes to v4.2.1 ([#6431](https://github.com/procore/core/issues/6431)) ([229a6e9](https://github.com/procore/core/commit/229a6e96958daf362f747ca5a8d3f98f20215c51))
|
|
517
|
+
- **deps:** update dependency style-loader to v1.2.1 ([#6437](https://github.com/procore/core/issues/6437)) ([21e2707](https://github.com/procore/core/commit/21e2707f83f32b66e5d6bb8d882f969517405547))
|
|
518
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.6 ([#6409](https://github.com/procore/core/issues/6409)) ([0e9449c](https://github.com/procore/core/commit/0e9449c1c1aaef6f86dcd9b05f6bf92f7e638403))
|
|
519
|
+
- **deps:** update dependency terser-webpack-plugin to v3 ([#6468](https://github.com/procore/core/issues/6468)) ([aa7e528](https://github.com/procore/core/commit/aa7e528dadf25280c933e1db725355472001504a))
|
|
520
|
+
- **deps:** update dependency terser-webpack-plugin to v3.0.1 ([#6504](https://github.com/procore/core/issues/6504)) ([7448d6d](https://github.com/procore/core/commit/7448d6d51cb5f156e7d7e4b1efcfd8234e4f0382))
|
|
521
|
+
- **deps:** update dependency tslib to v1.11.2 ([#6499](https://github.com/procore/core/issues/6499)) ([878a5df](https://github.com/procore/core/commit/878a5df98c8dda69ed1eb5fec78e898bda7dc0c3))
|
|
522
|
+
- **deps:** update jest monorepo to v25.5.0 ([#6440](https://github.com/procore/core/issues/6440)) ([204b2e4](https://github.com/procore/core/commit/204b2e491f154e71fa16f17e975624d1b121a7b6))
|
|
523
|
+
- **deps:** update jest monorepo to v25.5.1 ([#6443](https://github.com/procore/core/issues/6443)) ([e919c47](https://github.com/procore/core/commit/e919c4752de0c7e82346a1408c0e9278ee188c28))
|
|
524
|
+
- **deps:** update typescript-eslint monorepo to v2.30.0 ([#6424](https://github.com/procore/core/issues/6424)) ([a66670c](https://github.com/procore/core/commit/a66670c4f43aae7f8bade9a08176d3613b11a76d))
|
|
525
|
+
- **deps:** update typescript-eslint monorepo to v2.31.0 ([#6476](https://github.com/procore/core/issues/6476)) ([8c1b50f](https://github.com/procore/core/commit/8c1b50fba37c46211efcf4d145f870a8d711d51f))
|
|
526
|
+
|
|
527
|
+
# [8.11.0](https://github.com/procore/core/compare/v8.10.0...v8.11.0) (2020-04-27)
|
|
528
|
+
|
|
529
|
+
### Bug Fixes
|
|
530
|
+
|
|
531
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5.1.2 ([#6323](https://github.com/procore/core/issues/6323)) ([caca2cb](https://github.com/procore/core/commit/caca2cb671eff2bc992051e20f5e13d7d225ed41))
|
|
532
|
+
- **deps:** update dependency @oclif/command to v1.5.20 ([#6375](https://github.com/procore/core/issues/6375)) ([b4db0c1](https://github.com/procore/core/commit/b4db0c1fa46c198d42a83e8c4e8bc3aadf98b94d))
|
|
533
|
+
- **deps:** update dependency @oclif/config to v1.15.0 ([#6339](https://github.com/procore/core/issues/6339)) ([fe2fa5f](https://github.com/procore/core/commit/fe2fa5f21f062d3913c4681e5dcf20c77b20ba0f))
|
|
534
|
+
- **deps:** update dependency @oclif/config to v1.15.1 ([#6340](https://github.com/procore/core/issues/6340)) ([26e5d1b](https://github.com/procore/core/commit/26e5d1b2bf6c9467e02d605d2d52952b1b03c2a1))
|
|
535
|
+
- **deps:** update dependency @types/node to v12.12.36 ([#6362](https://github.com/procore/core/issues/6362)) ([c24a269](https://github.com/procore/core/commit/c24a2691ec702c7977944654b72c52edb807cd4a))
|
|
536
|
+
- **deps:** update dependency @types/node to v12.12.37 ([#6387](https://github.com/procore/core/issues/6387)) ([6c0c714](https://github.com/procore/core/commit/6c0c71458f17b5d130a1e69cb4ab4e8e9d1e5059))
|
|
537
|
+
- **deps:** update dependency css-loader to v3.5.3 ([#6405](https://github.com/procore/core/issues/6405)) ([2fa2124](https://github.com/procore/core/commit/2fa21245a170eaa996ceef8898af6846a5603305))
|
|
538
|
+
- **deps:** update dependency cypress to v4.4.0 ([#6328](https://github.com/procore/core/issues/6328)) ([875cd48](https://github.com/procore/core/commit/875cd48d974b4b19b33c7b10528db979284220f3))
|
|
539
|
+
- **deps:** update dependency cypress to v4.4.1 ([#6374](https://github.com/procore/core/issues/6374)) ([0ac8f38](https://github.com/procore/core/commit/0ac8f38b46a1ab44858921ec596287ae0932caef))
|
|
540
|
+
- **deps:** update dependency ejs to v3.1.2 ([#6403](https://github.com/procore/core/issues/6403)) ([ac470a0](https://github.com/procore/core/commit/ac470a00db77ca7824510ea42e03b8eb1a63ccc9))
|
|
541
|
+
- **deps:** update dependency envinfo to v7.5.1 ([#6416](https://github.com/procore/core/issues/6416)) ([0eee8d6](https://github.com/procore/core/commit/0eee8d650ad914621118bc4bddf06dc576fd002d))
|
|
542
|
+
- **deps:** update dependency eslint-config-prettier to v6.11.0 ([#6385](https://github.com/procore/core/issues/6385)) ([74ef8e8](https://github.com/procore/core/commit/74ef8e8ef2b9f93c84ec9ff76557c15c6de20855))
|
|
543
|
+
- **deps:** update dependency eslint-plugin-prettier to v3.1.3 ([#6321](https://github.com/procore/core/issues/6321)) ([cded30f](https://github.com/procore/core/commit/cded30fd3082a8fead64408f37be201282716a28))
|
|
544
|
+
- **deps:** update dependency make-dir to v3.1.0 ([#6390](https://github.com/procore/core/issues/6390)) ([5480a1b](https://github.com/procore/core/commit/5480a1bcbd86855c29790e568b072800afbaf514))
|
|
545
|
+
- **deps:** update dependency node-sass to v4.14.0 ([#6396](https://github.com/procore/core/issues/6396)) ([4bbc690](https://github.com/procore/core/commit/4bbc6904fea9da1f8cb472b6854d32284412e49c))
|
|
546
|
+
- **deps:** update dependency postcss-normalize to v9 ([#6320](https://github.com/procore/core/issues/6320)) ([a727ef0](https://github.com/procore/core/commit/a727ef08ba3f9fc25fac276c8635699cb915ec20))
|
|
547
|
+
- **deps:** update dependency prettier to v2.0.5 ([#6383](https://github.com/procore/core/issues/6383)) ([a240a75](https://github.com/procore/core/commit/a240a75b0405758e97053d820f18c8bbf8c554e9))
|
|
548
|
+
- **deps:** update dependency resolve to v1.16.0 ([#6348](https://github.com/procore/core/issues/6348)) ([b9e1c05](https://github.com/procore/core/commit/b9e1c055ebd1e734fb65911eadeba5b43a5c6ff8))
|
|
549
|
+
- **deps:** update dependency resolve to v1.16.1 ([#6363](https://github.com/procore/core/issues/6363)) ([d68b2d9](https://github.com/procore/core/commit/d68b2d99fa5ebd41d77555b43ff70d7f14c2ac75))
|
|
550
|
+
- **deps:** update dependency resolve to v1.17.0 ([#6395](https://github.com/procore/core/issues/6395)) ([12e9b20](https://github.com/procore/core/commit/12e9b206c3a4ee1c88866082481656fc89d91af5))
|
|
551
|
+
- **deps:** update dependency style-loader to v1.1.4 ([#6346](https://github.com/procore/core/issues/6346)) ([6c39c35](https://github.com/procore/core/commit/6c39c3581477773c1e64876ca8032b5d321c3db1))
|
|
552
|
+
- **deps:** update dependency style-loader to v1.2.0 ([#6406](https://github.com/procore/core/issues/6406)) ([952987e](https://github.com/procore/core/commit/952987efaa3d22077cc4571e5292636fb57a5186))
|
|
553
|
+
- **deps:** update dependency stylelint to v13.3.2 ([#6318](https://github.com/procore/core/issues/6318)) ([57aae1d](https://github.com/procore/core/commit/57aae1d12d042620bee0b25f2bd1fd7b1e67af24))
|
|
554
|
+
- **deps:** update dependency stylelint to v13.3.3 ([#6378](https://github.com/procore/core/issues/6378)) ([968c506](https://github.com/procore/core/commit/968c506f081f095eee40a2228c66968e62abcb08))
|
|
555
|
+
- **deps:** update dependency webpack-bundle-analyzer to v3.7.0 ([#6333](https://github.com/procore/core/issues/6333)) ([e380b65](https://github.com/procore/core/commit/e380b65612be0609b41ac10fc207cf9c9ea2552f))
|
|
556
|
+
- **deps:** update jest monorepo to v25.4.0 ([#6367](https://github.com/procore/core/issues/6367)) ([dfcdc0b](https://github.com/procore/core/commit/dfcdc0b3890fff37889cf5f63efa0628d0243130))
|
|
557
|
+
- **deps:** update typescript-eslint monorepo to v2.28.0 ([#6324](https://github.com/procore/core/issues/6324)) ([2953da0](https://github.com/procore/core/commit/2953da0c4b54f18f979f64a14f10defc64721ac2))
|
|
558
|
+
- **deps:** update typescript-eslint monorepo to v2.29.0 ([#6370](https://github.com/procore/core/issues/6370)) ([52af1e6](https://github.com/procore/core/commit/52af1e65474c94870a6c308d0633128f0911c6b5))
|
|
559
|
+
|
|
560
|
+
# [8.10.0](https://github.com/procore/core/compare/v8.9.1...v8.10.0) (2020-04-10)
|
|
561
|
+
|
|
562
|
+
### Bug Fixes
|
|
563
|
+
|
|
564
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v4.1.5 ([#6257](https://github.com/procore/core/issues/6257)) ([6561810](https://github.com/procore/core/commit/65618107850c4f8f5b9ca2e60d4c434e987d522c))
|
|
565
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v5 ([#6258](https://github.com/procore/core/issues/6258)) ([1ce35d6](https://github.com/procore/core/commit/1ce35d64c41994956ce5621296e8d258f3a01131))
|
|
566
|
+
- **deps:** update dependency @svgr/webpack to v5.3.1 ([#6249](https://github.com/procore/core/issues/6249)) ([3b03f2f](https://github.com/procore/core/commit/3b03f2f0fefa9f493d102c68d51656b3e6e6d4f9))
|
|
567
|
+
- **deps:** update dependency @types/jest to v25.1.5 ([#6230](https://github.com/procore/core/issues/6230)) ([ec93d82](https://github.com/procore/core/commit/ec93d824b41c746bb1b0f85aa0ecd80d27fada93))
|
|
568
|
+
- **deps:** update dependency @types/jest to v25.2.1 ([#6244](https://github.com/procore/core/issues/6244)) ([e60e8b3](https://github.com/procore/core/commit/e60e8b3eeddd6186c5b233cae82f1313610ba3d6))
|
|
569
|
+
- **deps:** update dependency @types/node to v12.12.32 ([#6160](https://github.com/procore/core/issues/6160)) ([2425963](https://github.com/procore/core/commit/2425963c4839358e2637bf0b3fbef2fd923c63e4))
|
|
570
|
+
- **deps:** update dependency @types/node to v12.12.33 ([#6184](https://github.com/procore/core/issues/6184)) ([172b4e5](https://github.com/procore/core/commit/172b4e5813f8fefc497fac4fd928d8de1a26ee38))
|
|
571
|
+
- **deps:** update dependency @types/node to v12.12.34 ([#6187](https://github.com/procore/core/issues/6187)) ([7f06ed6](https://github.com/procore/core/commit/7f06ed680e640c8133e8edbaaf54f9ed1b495359))
|
|
572
|
+
- **deps:** update dependency @types/node to v12.12.35 ([#6290](https://github.com/procore/core/issues/6290)) ([f3a211b](https://github.com/procore/core/commit/f3a211b42b8f7132e397ebfa0790c0389d29709d))
|
|
573
|
+
- **deps:** update dependency camelcase to v6 ([#6265](https://github.com/procore/core/issues/6265)) ([eb67e3f](https://github.com/procore/core/commit/eb67e3f8a32ceae727703d6f632747c805447cbb))
|
|
574
|
+
- **deps:** update dependency chalk to v4 ([#6223](https://github.com/procore/core/issues/6223)) ([fd9a0e5](https://github.com/procore/core/commit/fd9a0e5d306a8d70a1591f352d5106a38d0ee370))
|
|
575
|
+
- **deps:** update dependency cross-spawn to v7.0.2 ([#6247](https://github.com/procore/core/issues/6247)) ([3b1e33f](https://github.com/procore/core/commit/3b1e33f5800421012550b4ef00146a54f6ad0fba))
|
|
576
|
+
- **deps:** update dependency css-loader to v3.5.0 ([#6253](https://github.com/procore/core/issues/6253)) ([597f0be](https://github.com/procore/core/commit/597f0be0bb4791dec283cc689c01590299f44fe0))
|
|
577
|
+
- **deps:** update dependency css-loader to v3.5.1 ([#6268](https://github.com/procore/core/issues/6268)) ([4fe2ed0](https://github.com/procore/core/commit/4fe2ed0534cb91473e07adfbc45bffcb6b7a557e))
|
|
578
|
+
- **deps:** update dependency css-loader to v3.5.2 ([#6307](https://github.com/procore/core/issues/6307)) ([30a1fe6](https://github.com/procore/core/commit/30a1fe6e145944a77fb10d2058fb331f43794823))
|
|
579
|
+
- **deps:** update dependency cypress to v4.3.0 ([#6180](https://github.com/procore/core/issues/6180)) ([07f3962](https://github.com/procore/core/commit/07f39621afd5575a0ee4428b4ae3344efd2368ba))
|
|
580
|
+
- **deps:** update dependency ejs to v3.0.2 ([#6171](https://github.com/procore/core/issues/6171)) ([4103675](https://github.com/procore/core/commit/41036754c775f23dcd13eaa2cb3961f8297fb74d))
|
|
581
|
+
- **deps:** update dependency enquirer to v2.3.5 ([#6271](https://github.com/procore/core/issues/6271)) ([2f1081f](https://github.com/procore/core/commit/2f1081f3390d3bcfaf79d78189e2403d00631be1))
|
|
582
|
+
- **deps:** update dependency eslint-plugin-import to v2.20.2 ([#6169](https://github.com/procore/core/issues/6169)) ([55a5473](https://github.com/procore/core/commit/55a5473a325ddbacf9c1b4a211f6d78f5f596d3b))
|
|
583
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v3 ([#6155](https://github.com/procore/core/issues/6155)) ([eb384fa](https://github.com/procore/core/commit/eb384fa88f222219917b4bc709f9cfa330e87182))
|
|
584
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.3 ([#6168](https://github.com/procore/core/issues/6168)) ([ec5aee1](https://github.com/procore/core/commit/ec5aee1a4a0595e6100406857bea706d867df353))
|
|
585
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.4 ([#6210](https://github.com/procore/core/issues/6210)) ([e294e0f](https://github.com/procore/core/commit/e294e0fd38fa45210fd48f3d1acbc451058e35c6))
|
|
586
|
+
- **deps:** update dependency html-webpack-plugin to v4.1.0 ([#6299](https://github.com/procore/core/issues/6299)) ([83cea29](https://github.com/procore/core/commit/83cea2972c42560ee8db67e20e8c5c3b2c273d99))
|
|
587
|
+
- **deps:** update dependency html-webpack-plugin to v4.2.0 ([#6301](https://github.com/procore/core/issues/6301)) ([05686ab](https://github.com/procore/core/commit/05686aba7fad3f36a2ef04541e244822e27d2fd6))
|
|
588
|
+
- **deps:** update dependency jest-watch-typeahead to v0.5.0 ([#6209](https://github.com/procore/core/issues/6209)) ([7846212](https://github.com/procore/core/commit/7846212e20a4c17aecce4a416e6e52aa937217ac))
|
|
589
|
+
- **deps:** update dependency prettier to v2.0.3 ([#6251](https://github.com/procore/core/issues/6251)) ([37c8517](https://github.com/procore/core/commit/37c851793262f71f4a6a868b9cecafa31d035891))
|
|
590
|
+
- **deps:** update dependency prettier to v2.0.4 ([#6252](https://github.com/procore/core/issues/6252)) ([680f7ea](https://github.com/procore/core/commit/680f7eab16286796ffdc4781cdd895d4ff3658dc))
|
|
591
|
+
- **deps:** update dependency stylelint to v13.3.0 ([#6241](https://github.com/procore/core/issues/6241)) ([2077af8](https://github.com/procore/core/commit/2077af897e66a7c3f49b7713ad0e900fe27bbf9e))
|
|
592
|
+
- **deps:** update dependency stylelint to v13.3.1 ([#6297](https://github.com/procore/core/issues/6297)) ([f37e44a](https://github.com/procore/core/commit/f37e44a5f1505d8ac6647dc9bf4c2bb31537e5d7))
|
|
593
|
+
- **deps:** update dependency ts-pnp to v1.2.0 ([#6149](https://github.com/procore/core/issues/6149)) ([47d9602](https://github.com/procore/core/commit/47d9602be44705dbfe3f9fc9c6893687d9f23590))
|
|
594
|
+
- **deps:** update dependency url-loader to v4.1.0 ([#6284](https://github.com/procore/core/issues/6284)) ([8640511](https://github.com/procore/core/commit/86405114742de16cf8918e914dce56b4d53e17e8))
|
|
595
|
+
- **deps:** update jest monorepo to v25.2.3 ([#6156](https://github.com/procore/core/issues/6156)) ([7579f26](https://github.com/procore/core/commit/7579f2668ccf467bbdb8dfb2d1f34d835d632bda))
|
|
596
|
+
- **deps:** update jest monorepo to v25.2.4 ([#6172](https://github.com/procore/core/issues/6172)) ([8c45727](https://github.com/procore/core/commit/8c4572774d333e7bc6a7d499d949bb93f959bde7))
|
|
597
|
+
- **deps:** update jest monorepo to v25.2.6 ([#6224](https://github.com/procore/core/issues/6224)) ([78a1e06](https://github.com/procore/core/commit/78a1e064139a45ddb8d0230da364e323fa658292))
|
|
598
|
+
- **deps:** update jest monorepo to v25.3.0 ([#6280](https://github.com/procore/core/issues/6280)) ([0ddc629](https://github.com/procore/core/commit/0ddc6295383173681154d9c7e26a8e58efb86605))
|
|
599
|
+
- **deps:** update typescript-eslint monorepo to v2.27.0 ([#6254](https://github.com/procore/core/issues/6254)) ([defbfde](https://github.com/procore/core/commit/defbfde80042f9b246f9e84ee25a97a1414b6801))
|
|
600
|
+
- use suffix in localidentname for core-css css-modules ([#6205](https://github.com/procore/core/issues/6205)) ([b2cb4c7](https://github.com/procore/core/commit/b2cb4c796875b7114f7fc9a049404bd13e10c356))
|
|
601
|
+
- **deps:** update typescript-eslint monorepo to v2.26.0 ([#6177](https://github.com/procore/core/issues/6177)) ([7bfe953](https://github.com/procore/core/commit/7bfe953fd5a89187d1856a424b70a9a7abd007ed))
|
|
602
|
+
|
|
603
|
+
### Features
|
|
604
|
+
|
|
605
|
+
- add sc babel plugin ([#5726](https://github.com/procore/core/issues/5726)) ([6f41cd2](https://github.com/procore/core/commit/6f41cd236997b3c07f84155def8eff557ad9422e))
|
|
606
|
+
|
|
607
|
+
## [8.9.1](https://github.com/procore/core/compare/v8.9.0...v8.9.1) (2020-03-31)
|
|
608
|
+
|
|
609
|
+
### Bug Fixes
|
|
610
|
+
|
|
611
|
+
- move babel-plugin-transform-builtin-extend from presets to plugins ([139b55c](https://github.com/procore/core/commit/139b55cb76413d1127d99199bee3ac38e156e89e))
|
|
612
|
+
|
|
613
|
+
# [8.9.0](https://github.com/procore/core/compare/v8.8.1...v8.9.0) (2020-03-26)
|
|
614
|
+
|
|
615
|
+
### Bug Fixes
|
|
616
|
+
|
|
617
|
+
- **deps:** update dependency @svgr/webpack to v5.3.0 ([#6117](https://github.com/procore/core/issues/6117)) ([89a3049](https://github.com/procore/core/commit/89a3049b30a917482f535a89edc2d0496c3af7a0))
|
|
618
|
+
- **deps:** update dependency @types/jest to v25.1.4 ([#6028](https://github.com/procore/core/issues/6028)) ([df7dbeb](https://github.com/procore/core/commit/df7dbeb1360314ab030bc51712664fbd220f13be))
|
|
619
|
+
- **deps:** update dependency @types/node to v12.12.30 ([#6066](https://github.com/procore/core/issues/6066)) ([9f828f4](https://github.com/procore/core/commit/9f828f4d61ef084548156ee56c61468e9063d781))
|
|
620
|
+
- **deps:** update dependency @types/node to v12.12.31 ([#6136](https://github.com/procore/core/issues/6136)) ([196be02](https://github.com/procore/core/commit/196be0228f837b87e579e7453efff82294afe15c))
|
|
621
|
+
- **deps:** update dependency babel-preset-react-app to v9.1.2 ([#6110](https://github.com/procore/core/issues/6110)) ([5a02d56](https://github.com/procore/core/commit/5a02d562b0c2226643eb4a47aa5801b5846ff7a0))
|
|
622
|
+
- **deps:** update dependency cypress to v4.2.0 ([#6082](https://github.com/procore/core/issues/6082)) ([ff14ebc](https://github.com/procore/core/commit/ff14ebc1ddcefbacc8ae86ace7ba1c8d3a134fc2))
|
|
623
|
+
- **deps:** update dependency eslint-config-airbnb to v18.1.0 ([#6067](https://github.com/procore/core/issues/6067)) ([8b97a32](https://github.com/procore/core/commit/8b97a3223b7bc5b3374fef0e64ac5bd533076c38))
|
|
624
|
+
- **deps:** update dependency eslint-config-prettier to v6.10.1 ([#6114](https://github.com/procore/core/issues/6114)) ([e908055](https://github.com/procore/core/commit/e908055b64393b6ac9c5e605e635b9dc4649448e))
|
|
625
|
+
- **deps:** update dependency eslint-plugin-react to v7.19.0 ([#6025](https://github.com/procore/core/issues/6025)) ([0c14f3f](https://github.com/procore/core/commit/0c14f3fb8c50b6e2c38d194593894d9d1831d5ae))
|
|
626
|
+
- **deps:** update dependency file-loader to v6 ([#6084](https://github.com/procore/core/issues/6084)) ([fb08637](https://github.com/procore/core/commit/fb0863705193739b456ce2e59a8bdd01e9e78200))
|
|
627
|
+
- **deps:** update dependency fs-extra to v9 ([#6097](https://github.com/procore/core/issues/6097)) ([fb44e64](https://github.com/procore/core/commit/fb44e64c03d3005f9cc2e2da85a768be82713426))
|
|
628
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0 ([#6121](https://github.com/procore/core/issues/6121)) ([a698947](https://github.com/procore/core/commit/a698947e1ad14bd30a290a3628bbebff61a31d3c))
|
|
629
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0-beta.12 ([#6086](https://github.com/procore/core/issues/6086)) ([b8ab85f](https://github.com/procore/core/commit/b8ab85f6d0ca4442476c57d5287e1e712d83da63))
|
|
630
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0-beta.13 ([#6087](https://github.com/procore/core/issues/6087)) ([8fbbc13](https://github.com/procore/core/commit/8fbbc136679479d8f13a2af8531eb4c199dad6dd))
|
|
631
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0-beta.14 ([#6089](https://github.com/procore/core/issues/6089)) ([45b0433](https://github.com/procore/core/commit/45b04337bf9a595c73c9a5e31e07ba4c6480e1c1))
|
|
632
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.1 ([#6124](https://github.com/procore/core/issues/6124)) ([5ccced3](https://github.com/procore/core/commit/5ccced32b83eb193631252d27ff25503f637f46f))
|
|
633
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.2 ([bdedaef](https://github.com/procore/core/commit/bdedaef6859b3480099dbed25620ae3a0de335a4))
|
|
634
|
+
- **deps:** update dependency mocha to v7.1.1 ([#6091](https://github.com/procore/core/issues/6091)) ([2fd1e3e](https://github.com/procore/core/commit/2fd1e3ee26530f5795cee58f434748174db8f69f))
|
|
635
|
+
- **deps:** update dependency npm-packlist to v2.1.1 ([#6060](https://github.com/procore/core/issues/6060)) ([d8d58bc](https://github.com/procore/core/commit/d8d58bcce6acf3ba7127d3ccb9dc3f0e8658eb47))
|
|
636
|
+
- **deps:** update dependency prettier to v2 ([#6113](https://github.com/procore/core/issues/6113)) ([e12e644](https://github.com/procore/core/commit/e12e644b3a17bab5b017aeb4b680b4cb9642d0be))
|
|
637
|
+
- **deps:** update dependency prettier to v2.0.2 ([#6127](https://github.com/procore/core/issues/6127)) ([66571a9](https://github.com/procore/core/commit/66571a994b95d8d3eefa7d62a07010ea77bebaa6))
|
|
638
|
+
- **deps:** update dependency react-dev-utils to v10.2.1 ([#6111](https://github.com/procore/core/issues/6111)) ([14876ca](https://github.com/procore/core/commit/14876ca0c50cd3daf8d62a4f8e42b5d949d3629a))
|
|
639
|
+
- **deps:** update dependency react-error-overlay to v6.0.7 ([#6112](https://github.com/procore/core/issues/6112)) ([53c842b](https://github.com/procore/core/commit/53c842b15ff998591589382cded08a5dec2b93fa))
|
|
640
|
+
- **deps:** update dependency stylelint to v13.2.1 ([#6032](https://github.com/procore/core/issues/6032)) ([1bf63a2](https://github.com/procore/core/commit/1bf63a21d9dff096a6bdf1476c6758a6e67f81c1))
|
|
641
|
+
- **deps:** update dependency url-loader to v4 ([#6085](https://github.com/procore/core/issues/6085)) ([7d514b2](https://github.com/procore/core/commit/7d514b27884dad4fa442005839c0e901b3aa472a))
|
|
642
|
+
- **deps:** update dependency webpack-bundle-analyzer to v3.6.1 ([#6039](https://github.com/procore/core/issues/6039)) ([15e101a](https://github.com/procore/core/commit/15e101ae2ebbd9d74cd572943a8d45cb397bedc5))
|
|
643
|
+
- **deps:** update jest monorepo ([#6145](https://github.com/procore/core/issues/6145)) ([40db0cc](https://github.com/procore/core/commit/40db0ccdf43ab9aec9d87335704ba1331e3394ca))
|
|
644
|
+
- **deps:** update jest monorepo to v25.2.0 ([#6142](https://github.com/procore/core/issues/6142)) ([4558d28](https://github.com/procore/core/commit/4558d28f4bdb6bb1b2ad3eeaa7fbc457418ce4c3))
|
|
645
|
+
- **deps:** update react monorepo ([#6102](https://github.com/procore/core/issues/6102)) ([32f3f7e](https://github.com/procore/core/commit/32f3f7e5b5c39fecbe36ac4635e6de08cd1c180c))
|
|
646
|
+
- **deps:** update typescript-eslint monorepo to v2.23.0 ([#6033](https://github.com/procore/core/issues/6033)) ([2cec80b](https://github.com/procore/core/commit/2cec80b7ec6c620ce5d8b3d5527ced386ea816db))
|
|
647
|
+
- **deps:** update typescript-eslint monorepo to v2.24.0 ([#6079](https://github.com/procore/core/issues/6079)) ([067b438](https://github.com/procore/core/commit/067b438e85a60afeccf58473b18d1649188769d2))
|
|
648
|
+
- **deps:** update typescript-eslint monorepo to v2.25.0 ([#6123](https://github.com/procore/core/issues/6123)) ([6da7cdb](https://github.com/procore/core/commit/6da7cdb4153fe5d29a7d002f270d33f007c57c2c))
|
|
649
|
+
|
|
650
|
+
### Features
|
|
651
|
+
|
|
652
|
+
- **core-scripts:** New cli param '--env' for CY ([#6083](https://github.com/procore/core/issues/6083)) ([8563446](https://github.com/procore/core/commit/8563446c6e39a806e03b78866bd5dd9e58cac8ff))
|
|
653
|
+
- add babel-plugin-transform-builtin-extend to createConfigForReact ([f2feaca](https://github.com/procore/core/commit/f2feacaabf617d40505e7df2d2607bd8827c9736))
|
|
654
|
+
- adding babel-plugin-transform-builtin-extend ([1a9dfdb](https://github.com/procore/core/commit/1a9dfdbf72398da3d5e64605d59df7fb3107dd08))
|
|
655
|
+
|
|
656
|
+
# [8.8.0](https://github.com/procore/core/compare/v8.7.0...v8.8.0) (2020-03-05)
|
|
657
|
+
|
|
658
|
+
### Bug Fixes
|
|
659
|
+
|
|
660
|
+
- exiting app:start commmand ([#5987](https://github.com/procore/core/issues/5987)) ([b7a8c97](https://github.com/procore/core/commit/b7a8c97590a7b825765073e50f670138029c508c))
|
|
661
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v4.1.3 ([#5962](https://github.com/procore/core/issues/5962)) ([31c7e1f](https://github.com/procore/core/commit/31c7e1ff281eac834dc76c7b54feb7f2d3472dbc))
|
|
662
|
+
- **deps:** update dependency @types/node to v12.12.29 ([#5965](https://github.com/procore/core/issues/5965)) ([2f56d4a](https://github.com/procore/core/commit/2f56d4a38957661caf0f757c2f74a207aaf42e96))
|
|
663
|
+
- **deps:** update dependency cypress to v4.1.0 ([#5967](https://github.com/procore/core/issues/5967)) ([6bd9fd1](https://github.com/procore/core/commit/6bd9fd18ceb72e46b1408feb86f0312d2e4403b9))
|
|
664
|
+
- **deps:** update dependency typescript to v3.8.3 ([#5968](https://github.com/procore/core/issues/5968)) ([26c67ea](https://github.com/procore/core/commit/26c67ea963375e5a55521bbc35f7ebde231e16f6))
|
|
665
|
+
- **deps:** update typescript-eslint monorepo to v2.22.0 ([#5975](https://github.com/procore/core/issues/5975)) ([7b92a23](https://github.com/procore/core/commit/7b92a2385ddd22f9643e6b1e21cb94b3089641fa))
|
|
666
|
+
|
|
667
|
+
# [8.7.0](https://github.com/procore/core/compare/v8.6.0...v8.7.0) (2020-02-28)
|
|
668
|
+
|
|
669
|
+
### Bug Fixes
|
|
670
|
+
|
|
671
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v4.1.2 ([#5913](https://github.com/procore/core/issues/5913)) ([31610fc](https://github.com/procore/core/commit/31610fcb97a92f26ba2c7fcb26b0d8eed7191bc0))
|
|
672
|
+
- **deps:** update dependency @svgr/webpack to v5.2.0 ([#5919](https://github.com/procore/core/issues/5919)) ([5d3b5cc](https://github.com/procore/core/commit/5d3b5cc8b5637ee76e005857c07df63399a3427c))
|
|
673
|
+
- **deps:** update dependency @types/jest to v25.1.3 ([#5890](https://github.com/procore/core/issues/5890)) ([fa3406d](https://github.com/procore/core/commit/fa3406d3b15fb3d9a33fbe1e5a9298915b2c94fd))
|
|
674
|
+
- **deps:** update dependency @types/node to v12.12.28 ([#5892](https://github.com/procore/core/issues/5892)) ([6c6e077](https://github.com/procore/core/commit/6c6e0775ff0fa420beee941b3efa01e7e6fb0c84))
|
|
675
|
+
- **deps:** update dependency babel-eslint to v10.1.0 ([#5940](https://github.com/procore/core/issues/5940)) ([9f4f15f](https://github.com/procore/core/commit/9f4f15f4cb7f9e6ba0c26d0a1e0cb3595382b535))
|
|
676
|
+
- **deps:** update dependency cli-ux to v5.4.5 ([#5942](https://github.com/procore/core/issues/5942)) ([f1af7c1](https://github.com/procore/core/commit/f1af7c160f7da0d6c7b515d44362af9ae935877a))
|
|
677
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.10.3 ([#5887](https://github.com/procore/core/issues/5887)) ([1437b4c](https://github.com/procore/core/commit/1437b4c005b825660b11f77bf32dbeae04b1d34d))
|
|
678
|
+
- **deps:** update dependency file-loader to v5.1.0 ([#5888](https://github.com/procore/core/issues/5888)) ([b4cf5aa](https://github.com/procore/core/commit/b4cf5aa036a78e7871c78bb327d00752d2917d71))
|
|
679
|
+
- **deps:** update dependency mocha to v7.1.0 ([#5941](https://github.com/procore/core/issues/5941)) ([b7da510](https://github.com/procore/core/commit/b7da5107c1f827542ad2e3d5c76b2ce41b8eeb32))
|
|
680
|
+
- **deps:** update dependency pnp-webpack-plugin to v1.6.4 ([#5878](https://github.com/procore/core/issues/5878)) ([01c041e](https://github.com/procore/core/commit/01c041eb1c15d45a4f1c85bd51c48d1bc4ac9663))
|
|
681
|
+
- **deps:** update dependency tslib to v1.11.0 ([#5903](https://github.com/procore/core/issues/5903)) ([8a8e855](https://github.com/procore/core/commit/8a8e85549d95c79a60ab5101a17c0a10ff9ebabd))
|
|
682
|
+
- **deps:** update dependency tslib to v1.11.1 ([#5954](https://github.com/procore/core/issues/5954)) ([7dafa42](https://github.com/procore/core/commit/7dafa4209e87e5da72f4387f59424923f3fb92f3))
|
|
683
|
+
- **deps:** update dependency typescript to v3.8.2 ([#5904](https://github.com/procore/core/issues/5904)) ([6ae4e15](https://github.com/procore/core/commit/6ae4e159733a250ddd0dfbc2114f3e0f3a658b24))
|
|
684
|
+
- **deps:** update react monorepo ([#5947](https://github.com/procore/core/issues/5947)) ([e5cad9e](https://github.com/procore/core/commit/e5cad9e19be5488a912710fdeff0efc5a62fd86e))
|
|
685
|
+
- **deps:** update typescript-eslint monorepo to v2.21.0 ([#5926](https://github.com/procore/core/issues/5926)) ([165782a](https://github.com/procore/core/commit/165782a42d6f7dda46cc4d8af6104e252dc35a3e))
|
|
686
|
+
- noop service worker middleware ([#5883](https://github.com/procore/core/issues/5883)) ([3c3122c](https://github.com/procore/core/commit/3c3122c40253158f5e5dcd7281fa0100e97b9b79))
|
|
687
|
+
|
|
688
|
+
### Features
|
|
689
|
+
|
|
690
|
+
- add bundle analyzer to build command ([#5956](https://github.com/procore/core/issues/5956)) ([a77ce48](https://github.com/procore/core/commit/a77ce48a6b638d4e3bf2503cfb68a06babe14b70))
|
|
691
|
+
|
|
692
|
+
# [8.6.0](https://github.com/procore/core/compare/v8.5.3...v8.6.0) (2020-02-18)
|
|
693
|
+
|
|
694
|
+
### Bug Fixes
|
|
695
|
+
|
|
696
|
+
- **deps:** update dependency @oclif/config to v1.14.0 ([#5784](https://github.com/procore/core/issues/5784)) ([8e01873](https://github.com/procore/core/commit/8e0187395547415562763e9c686120b13365cc33))
|
|
697
|
+
- **deps:** update dependency @types/jest to v25.1.2 ([#5785](https://github.com/procore/core/issues/5785)) ([d13c04a](https://github.com/procore/core/commit/d13c04a5adef1cc7e75eecdc80711b7b953cabbc))
|
|
698
|
+
- **deps:** update dependency @types/node to v12.12.27 ([#5822](https://github.com/procore/core/issues/5822)) ([b518e80](https://github.com/procore/core/commit/b518e80e74dfe15fe19085fdfd42f8df2d498f9a))
|
|
699
|
+
- **deps:** update dependency cypress to v4 ([#5795](https://github.com/procore/core/issues/5795)) ([47f9a10](https://github.com/procore/core/commit/47f9a1093ec34222e504c61cf1e05437476422fc))
|
|
700
|
+
- **deps:** update dependency cypress to v4.0.1 ([#5802](https://github.com/procore/core/issues/5802)) ([1b92b93](https://github.com/procore/core/commit/1b92b931c01d9508a99876251c5d21f62b2ef85a))
|
|
701
|
+
- **deps:** update dependency cypress to v4.0.2 ([#5854](https://github.com/procore/core/issues/5854)) ([fbbbede](https://github.com/procore/core/commit/fbbbede10c79a40fc6041d654b6c5c6cb78e03ec))
|
|
702
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.10.0 ([#5847](https://github.com/procore/core/issues/5847)) ([3e1bdb1](https://github.com/procore/core/commit/3e1bdb1e677a0ec3c62543ec8340de5b9b33f484))
|
|
703
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.10.1 ([#5851](https://github.com/procore/core/issues/5851)) ([6c77c3c](https://github.com/procore/core/commit/6c77c3ce565af03a78fa426fb97c875f280696f7))
|
|
704
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.10.2 ([#5866](https://github.com/procore/core/issues/5866)) ([39f6e22](https://github.com/procore/core/commit/39f6e22b50beb3a0e8d283c005bc5f7c790485b2))
|
|
705
|
+
- **deps:** update dependency eslint-plugin-react-hooks to v2.4.0 ([#5861](https://github.com/procore/core/issues/5861)) ([a4ccaf5](https://github.com/procore/core/commit/a4ccaf5e7bf281d33fa4eb945300ed37134c2973))
|
|
706
|
+
- **deps:** update dependency make-dir to v3.0.2 ([#5825](https://github.com/procore/core/issues/5825)) ([0903124](https://github.com/procore/core/commit/09031246b0fb10448ead50f0b233bfd6bc2fda65))
|
|
707
|
+
- **deps:** update dependency npm-packlist to v2.1.0 ([#5826](https://github.com/procore/core/issues/5826)) ([0747ac4](https://github.com/procore/core/commit/0747ac408c756357e9326b9bfab1f077f15056af))
|
|
708
|
+
- **deps:** update dependency pnp-webpack-plugin to v1.6.3 ([#5867](https://github.com/procore/core/issues/5867)) ([b66dd2d](https://github.com/procore/core/commit/b66dd2d2dc9a895c7696fd622f003bec11f5ba7c))
|
|
709
|
+
- **deps:** update dependency postcss-safe-parser to v4.0.2 ([#5803](https://github.com/procore/core/issues/5803)) ([713186b](https://github.com/procore/core/commit/713186beb45b72a1621d3b2b8d85053001aa0eb1))
|
|
710
|
+
- **deps:** update dependency react-dev-utils to v10.2.0 ([#5845](https://github.com/procore/core/issues/5845)) ([5d48802](https://github.com/procore/core/commit/5d48802237729b468d0370763ade8e59798ea259))
|
|
711
|
+
- **deps:** update dependency react-error-overlay to v6.0.6 ([#5846](https://github.com/procore/core/issues/5846)) ([cb609fd](https://github.com/procore/core/commit/cb609fd6b584eb28e9840406015c08b6fe216207))
|
|
712
|
+
- **deps:** update dependency stylelint to v13.1.0 ([#5806](https://github.com/procore/core/issues/5806)) ([83c9093](https://github.com/procore/core/commit/83c9093a6b20629c76c1a4f0d9a9362cc6766352))
|
|
713
|
+
- **deps:** update dependency stylelint to v13.2.0 ([#5842](https://github.com/procore/core/issues/5842)) ([9ee4383](https://github.com/procore/core/commit/9ee43837bed97e4a0dd03dd46a5411212e39003c))
|
|
714
|
+
- **deps:** update dependency stylelint-config-standard to v20 ([#5831](https://github.com/procore/core/issues/5831)) ([482e1d8](https://github.com/procore/core/commit/482e1d8fbc02fcb7a16cc26ab79d7052b7d05356))
|
|
715
|
+
- **deps:** update dependency stylelint-processor-styled-components to v1.10.0 ([#5843](https://github.com/procore/core/issues/5843)) ([abcd22a](https://github.com/procore/core/commit/abcd22a4253bf360f9b06c12e8931718a75774ac))
|
|
716
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.5 ([#5844](https://github.com/procore/core/issues/5844)) ([0ae8455](https://github.com/procore/core/commit/0ae8455a71f0b9b0436eff411bbf8ad1e786abf8))
|
|
717
|
+
- **deps:** update dependency ts-pnp to v1.1.6 ([#5869](https://github.com/procore/core/issues/5869)) ([5fb4a34](https://github.com/procore/core/commit/5fb4a348095e6108f228d687db4184456f96324c))
|
|
718
|
+
- **deps:** update typescript-eslint monorepo to v2.20.0 ([#5859](https://github.com/procore/core/issues/5859)) ([75c579c](https://github.com/procore/core/commit/75c579c042042a8445d1f4a0d69a085af525d462))
|
|
719
|
+
- cypress exit code ([#5833](https://github.com/procore/core/issues/5833)) ([52bb05a](https://github.com/procore/core/commit/52bb05a5027a7e5234e1ddf617564415b35b034d))
|
|
720
|
+
- lib compilation of SVGs ([#5856](https://github.com/procore/core/issues/5856)) ([c5e9114](https://github.com/procore/core/commit/c5e9114456f91ade3fdd9c1b943a9bf182f1b7e3))
|
|
721
|
+
- **deps:** update typescript-eslint monorepo to v2.19.2 ([#5829](https://github.com/procore/core/issues/5829)) ([1657949](https://github.com/procore/core/commit/165794944fc3a232742a54a75558ee6a2387d418))
|
|
722
|
+
|
|
723
|
+
### Features
|
|
724
|
+
|
|
725
|
+
- add extra tsconfig configurations ([#5801](https://github.com/procore/core/issues/5801)) ([3354986](https://github.com/procore/core/commit/3354986c17f382cd0aae313bc0a168be3b76aff1))
|
|
726
|
+
- add tsconfig checking ([#5804](https://github.com/procore/core/issues/5804)) ([03dbd01](https://github.com/procore/core/commit/03dbd015703d6d54ed376257dd95f659ac75013c))
|
|
727
|
+
|
|
728
|
+
## [8.5.2](https://github.com/procore/core/compare/v8.5.1...v8.5.2) (2020-02-06)
|
|
729
|
+
|
|
730
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
731
|
+
|
|
732
|
+
## [8.5.1](https://github.com/procore/core/compare/v8.5.0...v8.5.1) (2020-02-06)
|
|
733
|
+
|
|
734
|
+
### Bug Fixes
|
|
735
|
+
|
|
736
|
+
- **deps:** update dependency webpack-chain to v6.4.0 ([#5740](https://github.com/procore/core/issues/5740)) ([cb59f08](https://github.com/procore/core/commit/cb59f08ceff32731f1d6dd19829d7acd1093ae13))
|
|
737
|
+
|
|
738
|
+
# [8.4.0](https://github.com/procore/core/compare/v8.3.0...v8.4.0) (2020-02-06)
|
|
739
|
+
|
|
740
|
+
### Bug Fixes
|
|
741
|
+
|
|
742
|
+
- **deps:** update babel monorepo to v7.8.4 ([#5694](https://github.com/procore/core/issues/5694)) ([867e879](https://github.com/procore/core/commit/867e8795e3f9ba8490ac0e6d095134f5aff6d8dc))
|
|
743
|
+
- **deps:** update dependency @types/jest to v25.1.1 ([#5686](https://github.com/procore/core/issues/5686)) ([beea1d9](https://github.com/procore/core/commit/beea1d977bd451265897ec157a4b8fd0e76c6c26))
|
|
744
|
+
- **deps:** update dependency @types/node to v12.12.26 ([#5678](https://github.com/procore/core/issues/5678)) ([8cf70d4](https://github.com/procore/core/commit/8cf70d442233dd95d679d6f2ce3d3cf82f67fb81))
|
|
745
|
+
- **deps:** update dependency babel-plugin-named-asset-import to v0.3.6 ([#5707](https://github.com/procore/core/issues/5707)) ([7e2682e](https://github.com/procore/core/commit/7e2682eca5bf44be09f48fbc1ceff9498967beb5))
|
|
746
|
+
- **deps:** update dependency babel-preset-react-app to v9.1.1 ([#5708](https://github.com/procore/core/issues/5708)) ([8f34afd](https://github.com/procore/core/commit/8f34afd18976daa14e7ea05fbe0bbcba862b9f8e))
|
|
747
|
+
- **deps:** update dependency cli-ux to v5.4.4 ([#5677](https://github.com/procore/core/issues/5677)) ([2a203f1](https://github.com/procore/core/commit/2a203f19e25961f57495ce7508348096530a00c5))
|
|
748
|
+
- **deps:** update dependency eslint-config-prettier to v6.10.0 ([#5670](https://github.com/procore/core/issues/5670)) ([09a84af](https://github.com/procore/core/commit/09a84af75b69f4d866ece4b0e2d6f35e11151f5a))
|
|
749
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.9.0 ([#5764](https://github.com/procore/core/issues/5764)) ([a610167](https://github.com/procore/core/commit/a610167266d45e639dc89f886d51f16f3f2a44d1))
|
|
750
|
+
- **deps:** update dependency eslint-plugin-import to v2.20.1 ([#5732](https://github.com/procore/core/issues/5732)) ([0de2db9](https://github.com/procore/core/commit/0de2db93e43ae4b1f133dfc1000671c53b05db97))
|
|
751
|
+
- **deps:** update dependency eslint-plugin-react to v7.18.2 ([#5728](https://github.com/procore/core/issues/5728)) ([6a3f2e1](https://github.com/procore/core/commit/6a3f2e16d8748812acc3fd7aababda465601eba0))
|
|
752
|
+
- **deps:** update dependency eslint-plugin-react to v7.18.3 ([#5737](https://github.com/procore/core/issues/5737)) ([196fea9](https://github.com/procore/core/commit/196fea983515f8a6f53bd3ae6a28ebaa4fb98f78))
|
|
753
|
+
- **deps:** update dependency pnp-webpack-plugin to v1.6.0 ([#5664](https://github.com/procore/core/issues/5664)) ([c10da05](https://github.com/procore/core/commit/c10da05ccab60683a372e3d14b9ab9520408216d))
|
|
754
|
+
- **deps:** update dependency postcss-flexbugs-fixes to v4.2.0 ([1a59aae](https://github.com/procore/core/commit/1a59aae23f95840b88db3ac9314ecc4f0394819d))
|
|
755
|
+
- **deps:** update dependency ramda to v0.27.0 ([#5734](https://github.com/procore/core/issues/5734)) ([7057def](https://github.com/procore/core/commit/7057def0b57c29ea9eedf155421b0fb3c9f2f26b))
|
|
756
|
+
- **deps:** update dependency react-app-polyfill to v1.0.6 ([#5710](https://github.com/procore/core/issues/5710)) ([5cf7faa](https://github.com/procore/core/commit/5cf7faac3d1e0b8f6e0e588d942db351bc1975eb))
|
|
757
|
+
- **deps:** update dependency react-dev-utils to v10.1.0 ([#5713](https://github.com/procore/core/issues/5713)) ([85e90d6](https://github.com/procore/core/commit/85e90d6cefc35210303f53a1d24bd9032e23f9e5))
|
|
758
|
+
- **deps:** update dependency react-error-overlay to v6.0.5 ([#5715](https://github.com/procore/core/issues/5715)) ([73e4dcd](https://github.com/procore/core/commit/73e4dcdc5f9b15750e6b5acdb7b562fa26fa2b2b))
|
|
759
|
+
- **deps:** update dependency resolve to v1.15.1 ([#5766](https://github.com/procore/core/issues/5766)) ([fa100fe](https://github.com/procore/core/commit/fa100fe18de75cf0186256f6c09a5f87fc8a89d6))
|
|
760
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.3 ([#5673](https://github.com/procore/core/issues/5673)) ([652b601](https://github.com/procore/core/commit/652b601431cec3e6e68870aa619416cb67774b67))
|
|
761
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.4 ([#5698](https://github.com/procore/core/issues/5698)) ([351e85e](https://github.com/procore/core/commit/351e85e1c59004912fa2092c5e6eb3f3fbf1821b))
|
|
762
|
+
- **deps:** update dependency webpack-chain to v6.3.1 ([#5671](https://github.com/procore/core/issues/5671)) ([519c422](https://github.com/procore/core/commit/519c422900c61c794850ea86c3f671ca1ab9c98e))
|
|
763
|
+
- **deps:** update dependency webpack-dev-server to v3.10.2 ([#5718](https://github.com/procore/core/issues/5718)) ([3399621](https://github.com/procore/core/commit/33996212d9d362c02665b4be3330423052e1f2ce))
|
|
764
|
+
- **deps:** update dependency webpack-dev-server to v3.10.3 ([#5763](https://github.com/procore/core/issues/5763)) ([e8be52e](https://github.com/procore/core/commit/e8be52e61b3d390d781344f56d75a38645bf8f89))
|
|
765
|
+
- **deps:** update jest monorepo to v25 (major) ([#5628](https://github.com/procore/core/issues/5628)) ([66d5ba2](https://github.com/procore/core/commit/66d5ba212a12924d10f26803e36e84d8dc25cb63))
|
|
766
|
+
- **deps:** update typescript-eslint monorepo to v2.19.0 ([#5748](https://github.com/procore/core/issues/5748)) ([0c04bef](https://github.com/procore/core/commit/0c04befca29ab8246912dab918dd81b5319af965))
|
|
767
|
+
- allure e2e setup ([#5666](https://github.com/procore/core/issues/5666)) ([57456ee](https://github.com/procore/core/commit/57456eeed67d55ca64f09427bc3bd8a1ba56d8b7))
|
|
768
|
+
|
|
769
|
+
### Features
|
|
770
|
+
|
|
771
|
+
- add e2e git ignore folders ([#5667](https://github.com/procore/core/issues/5667)) ([5968d87](https://github.com/procore/core/commit/5968d871b9221e490a2bace359d60e380030d4e5))
|
|
772
|
+
- add stylelint linter ([#5724](https://github.com/procore/core/issues/5724)) ([0a67a53](https://github.com/procore/core/commit/0a67a532b757311e34089826c60b147b6d15df96))
|
|
773
|
+
|
|
774
|
+
# [8.3.0](https://github.com/procore/core/compare/v8.2.1...v8.3.0) (2020-01-27)
|
|
775
|
+
|
|
776
|
+
### Bug Fixes
|
|
777
|
+
|
|
778
|
+
- **deps:** update dependency @svgr/webpack to v5.1.0 ([#5613](https://github.com/procore/core/issues/5613)) ([a40243c](https://github.com/procore/core/commit/a40243c35b52e37114be319803edeb5f767729b1))
|
|
779
|
+
- **deps:** update dependency @types/jest to v24.9.0 ([#5577](https://github.com/procore/core/issues/5577)) ([d3403b5](https://github.com/procore/core/commit/d3403b5a1bcd93590b7e6b21188bbfcdfbb81a30))
|
|
780
|
+
- **deps:** update dependency @types/jest to v24.9.1 ([#5642](https://github.com/procore/core/issues/5642)) ([100d958](https://github.com/procore/core/commit/100d958866112986db8b6e0017247dbb31cfa623))
|
|
781
|
+
- **deps:** update dependency @types/jest to v25 ([#5661](https://github.com/procore/core/issues/5661)) ([f7629b8](https://github.com/procore/core/commit/f7629b8be2c48d842277e29438512ff9f1f31fd2))
|
|
782
|
+
- **deps:** update dependency @types/node to v12.12.25 ([#5607](https://github.com/procore/core/issues/5607)) ([dda9ee1](https://github.com/procore/core/commit/dda9ee1e0ef8e7432ba2bdbf31fc25d9cf4e7808))
|
|
783
|
+
- **deps:** update dependency case-sensitive-paths-webpack-plugin to v2.3.0 ([#5585](https://github.com/procore/core/issues/5585)) ([607f543](https://github.com/procore/core/commit/607f5434e2152b5b40dd6b554c47e9d3f37cb2d1))
|
|
784
|
+
- **deps:** update dependency cli-ux to v5.4.2 ([#5622](https://github.com/procore/core/issues/5622)) ([53f5a01](https://github.com/procore/core/commit/53f5a01c673aebfc7436f39f4e37667b556eff27))
|
|
785
|
+
- **deps:** update dependency cli-ux to v5.4.3 ([#5660](https://github.com/procore/core/issues/5660)) ([382d672](https://github.com/procore/core/commit/382d672a6c98fc5190e27c076803371cdcb1e863))
|
|
786
|
+
- **deps:** update dependency css-loader to v3.4.2 ([#5528](https://github.com/procore/core/issues/5528)) ([1ba5892](https://github.com/procore/core/commit/1ba5892ac746c764c29263f68cd25d63a5afe9a1))
|
|
787
|
+
- **deps:** update dependency cypress to v3.8.2 ([#5532](https://github.com/procore/core/issues/5532)) ([4d61fd7](https://github.com/procore/core/commit/4d61fd71d6b7a9730e2b669e25a573f0e19df7cd))
|
|
788
|
+
- **deps:** update dependency cypress to v3.8.3 ([#5652](https://github.com/procore/core/issues/5652)) ([36b709d](https://github.com/procore/core/commit/36b709db1dbd338e6680576362914552a2eb4350))
|
|
789
|
+
- **deps:** update dependency enquirer to v2.3.3 ([#5547](https://github.com/procore/core/issues/5547)) ([38f9a31](https://github.com/procore/core/commit/38f9a31c087f99362fecf84e774a4ed0dbc6edad))
|
|
790
|
+
- **deps:** update dependency enquirer to v2.3.4 ([#5550](https://github.com/procore/core/issues/5550)) ([36281cb](https://github.com/procore/core/commit/36281cb2c6a646aa73554ac151c58c963b5bf477))
|
|
791
|
+
- **deps:** update dependency eslint-plugin-import to v2.20.0 ([#5533](https://github.com/procore/core/issues/5533)) ([a6420d8](https://github.com/procore/core/commit/a6420d861e079dafab48645d9add5e363d9f1eeb))
|
|
792
|
+
- **deps:** update dependency eslint-plugin-react to v7.18.0 ([#5590](https://github.com/procore/core/issues/5590)) ([cb32b8e](https://github.com/procore/core/commit/cb32b8e753672f815fe0548d6013cb833370cc46))
|
|
793
|
+
- **deps:** update typescript-eslint monorepo to v2.17.0 ([#5615](https://github.com/procore/core/issues/5615)) ([1a64070](https://github.com/procore/core/commit/1a640702ff943e58aa410a2499793b312853f4fb))
|
|
794
|
+
- **deps:** update typescript-eslint monorepo to v2.18.0 ([#5659](https://github.com/procore/core/issues/5659)) ([6e1a2eb](https://github.com/procore/core/commit/6e1a2eb2ff3cb913b359390f8b39a75665aeb210))
|
|
795
|
+
- public path default value ([#5632](https://github.com/procore/core/issues/5632)) ([2aab1c1](https://github.com/procore/core/commit/2aab1c1fde3f994b40c4c7869fd5bee80b9db586))
|
|
796
|
+
- typescript reporter files ([#5655](https://github.com/procore/core/issues/5655)) ([108c882](https://github.com/procore/core/commit/108c8827f782b8a1620f9c1f1ded651364d8ea89))
|
|
797
|
+
- **deps:** update dependency node-sass to v4.13.1 ([#5593](https://github.com/procore/core/issues/5593)) ([561adce](https://github.com/procore/core/commit/561adce28decd2ed7c8dddbdf0a6685c96d0eb77))
|
|
798
|
+
- **deps:** update dependency resolve to v1.15.0 ([#5629](https://github.com/procore/core/issues/5629)) ([3031957](https://github.com/procore/core/commit/3031957fe37803f1bd826e5cfacb7ea0e4253fc3))
|
|
799
|
+
- **deps:** update dependency sass-loader to v8.0.1 ([#5527](https://github.com/procore/core/issues/5527)) ([a703bd3](https://github.com/procore/core/commit/a703bd3c991f73885e21208581410acf1be1d6cd))
|
|
800
|
+
- **deps:** update dependency sass-loader to v8.0.2 ([#5543](https://github.com/procore/core/issues/5543)) ([34b6c59](https://github.com/procore/core/commit/34b6c59b932a4731568e6f10fc5d4b8c2668e263))
|
|
801
|
+
- **deps:** update dependency style-loader to v1.1.3 ([#5604](https://github.com/procore/core/issues/5604)) ([3d9790b](https://github.com/procore/core/commit/3d9790b69465b8288dc0bb2988432393a01fe3ca))
|
|
802
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.2 ([#5518](https://github.com/procore/core/issues/5518)) ([5b9d4a8](https://github.com/procore/core/commit/5b9d4a8dd5862817964edcf26b304ae2e5f6058f))
|
|
803
|
+
- **deps:** update dependency typescript to v3.7.5 ([#5599](https://github.com/procore/core/issues/5599)) ([c90e3f5](https://github.com/procore/core/commit/c90e3f5acb52d1a8f0649855077d3496518528bd))
|
|
804
|
+
- **deps:** update typescript-eslint monorepo to v2.16.0 ([#5545](https://github.com/procore/core/issues/5545)) ([dc85375](https://github.com/procore/core/commit/dc853753baa30a39f999155247ffccb7bc61cf9e))
|
|
805
|
+
|
|
806
|
+
### Features
|
|
807
|
+
|
|
808
|
+
- add reporter to e2e command ([#5650](https://github.com/procore/core/issues/5650)) ([6d77030](https://github.com/procore/core/commit/6d77030176480ee473797e614029bc4934ce4531))
|
|
809
|
+
|
|
810
|
+
## [8.2.1](https://github.com/procore/core/compare/v8.2.0...v8.2.1) (2020-01-09)
|
|
811
|
+
|
|
812
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
813
|
+
|
|
814
|
+
# [8.2.0](https://github.com/procore/core/compare/v8.1.0...v8.2.0) (2020-01-09)
|
|
815
|
+
|
|
816
|
+
### Bug Fixes
|
|
817
|
+
|
|
818
|
+
- **deps:** update dependency @oclif/plugin-plugins to v1.7.9 ([#5432](https://github.com/procore/core/issues/5432)) ([4e2ecae](https://github.com/procore/core/commit/4e2ecae8a8de6ac53218eef6f49242d4bff4c52f))
|
|
819
|
+
- **deps:** update dependency @svgr/webpack to v5 ([#5464](https://github.com/procore/core/issues/5464)) ([30375e1](https://github.com/procore/core/commit/30375e11119246a113af7ca3ea0fb0e636fc34c5))
|
|
820
|
+
- **deps:** update dependency @svgr/webpack to v5.0.1 ([#5481](https://github.com/procore/core/issues/5481)) ([bd10c5d](https://github.com/procore/core/commit/bd10c5dfd4e4f62acfd92fd9a17690e6985d44a6))
|
|
821
|
+
- **deps:** update dependency @types/jest to v24.0.24 ([#5434](https://github.com/procore/core/issues/5434)) ([f910c69](https://github.com/procore/core/commit/f910c69dc9401c7fc21ad99467bcb6867a711ed5))
|
|
822
|
+
- **deps:** update dependency @types/jest to v24.0.25 ([#5474](https://github.com/procore/core/issues/5474)) ([2e228f3](https://github.com/procore/core/commit/2e228f3276f05f6d2c93e6db0ed9ec6d60501e8c))
|
|
823
|
+
- **deps:** update dependency @types/node to v12.12.20 ([#5428](https://github.com/procore/core/issues/5428)) ([1616ed4](https://github.com/procore/core/commit/1616ed496d921c435d1743eae72248bafce36eb9))
|
|
824
|
+
- **deps:** update dependency @types/node to v12.12.21 ([#5435](https://github.com/procore/core/issues/5435)) ([8b22cde](https://github.com/procore/core/commit/8b22cde499e9264a2cceecabbe4a8adc6f991f1c))
|
|
825
|
+
- **deps:** update dependency @types/node to v12.12.22 ([#5466](https://github.com/procore/core/issues/5466)) ([7d5155a](https://github.com/procore/core/commit/7d5155ade64dcbda35e38dcad8f3a57263edd4e0))
|
|
826
|
+
- **deps:** update dependency @types/node to v12.12.24 ([#5490](https://github.com/procore/core/issues/5490)) ([94760e7](https://github.com/procore/core/commit/94760e711dc5f70772c997ac7c21546c32bf5e10))
|
|
827
|
+
- **deps:** update dependency css-loader to v3.4.0 ([#5332](https://github.com/procore/core/issues/5332)) ([06c7380](https://github.com/procore/core/commit/06c73807f043526089403c0daf50fdefbb4ab12f))
|
|
828
|
+
- **deps:** update dependency css-loader to v3.4.1 ([#5488](https://github.com/procore/core/issues/5488)) ([0e7153c](https://github.com/procore/core/commit/0e7153c93ff2945e8957115a47fb8396b04b7c64))
|
|
829
|
+
- **deps:** update dependency cypress to v3.8.1 ([#5475](https://github.com/procore/core/issues/5475)) ([fd2b59f](https://github.com/procore/core/commit/fd2b59fb5f2ed2dcd65ba37d9caacef770e635b2))
|
|
830
|
+
- **deps:** update dependency eslint to v6.8.0 ([#5459](https://github.com/procore/core/issues/5459)) ([fd94903](https://github.com/procore/core/commit/fd94903986b5989c6079c5a63a6729dcd28eb622))
|
|
831
|
+
- **deps:** update dependency eslint-config-prettier to v6.8.0 ([#5471](https://github.com/procore/core/issues/5471)) ([d265592](https://github.com/procore/core/commit/d2655928129b62bda5f05dc2e8e609c807503483))
|
|
832
|
+
- **deps:** update dependency eslint-config-prettier to v6.9.0 ([#5477](https://github.com/procore/core/issues/5477)) ([fc57bdb](https://github.com/procore/core/commit/fc57bdb352426e9e39ad78925c4ebd147b7ac3ae))
|
|
833
|
+
- **deps:** update dependency execa to v4 ([#5445](https://github.com/procore/core/issues/5445)) ([73245e2](https://github.com/procore/core/commit/73245e28e8c1db3cb95c5d269533cf38172a409f))
|
|
834
|
+
- **deps:** update dependency mini-css-extract-plugin to v0.9.0 ([#5454](https://github.com/procore/core/issues/5454)) ([c57dc82](https://github.com/procore/core/commit/c57dc82aec2ea1c0cd07e4a6bc7f1461aa05c8d9))
|
|
835
|
+
- **deps:** update dependency resolve to v1.14.0 ([#5433](https://github.com/procore/core/issues/5433)) ([a17080c](https://github.com/procore/core/commit/a17080ce331284d8e9f8be0c21a5c01c08dc31ca))
|
|
836
|
+
- **deps:** update dependency resolve to v1.14.1 ([#5443](https://github.com/procore/core/issues/5443)) ([9facbee](https://github.com/procore/core/commit/9facbee911455f888c64348ef281288910674736))
|
|
837
|
+
- **deps:** update dependency resolve to v1.14.2 ([#5504](https://github.com/procore/core/issues/5504)) ([757af5a](https://github.com/procore/core/commit/757af5a743bf553757376afd1642d5740c0b7a32))
|
|
838
|
+
- **deps:** update dependency style-loader to v1.1.1 ([#5453](https://github.com/procore/core/issues/5453)) ([d4c0c06](https://github.com/procore/core/commit/d4c0c0651022e53aa35e8ec51155e7d35db1ba66))
|
|
839
|
+
- **deps:** update dependency style-loader to v1.1.2 ([#5472](https://github.com/procore/core/issues/5472)) ([0573ac5](https://github.com/procore/core/commit/0573ac558a6af015830f553d06dc4ed4c50bf7da))
|
|
840
|
+
- **deps:** update dependency stylegator to v0.20.1 ([#5352](https://github.com/procore/core/issues/5352)) ([be28d5e](https://github.com/procore/core/commit/be28d5e374b80915a97254a7196641f27fe1f8d0))
|
|
841
|
+
- **deps:** update dependency typescript to v3.7.4 ([#5460](https://github.com/procore/core/issues/5460)) ([e1b320a](https://github.com/procore/core/commit/e1b320ae9e28e8dbd69b030b3e1ccc962c02b240))
|
|
842
|
+
- **deps:** update dependency webpack to v4.41.4 ([#5444](https://github.com/procore/core/issues/5444)) ([20572b0](https://github.com/procore/core/commit/20572b0f073f66963176389820647741a56a6249))
|
|
843
|
+
- **deps:** update dependency webpack to v4.41.5 ([#5479](https://github.com/procore/core/issues/5479)) ([013c399](https://github.com/procore/core/commit/013c39951a1872165f11d965311bc23efa986f98))
|
|
844
|
+
- **deps:** update dependency webpack-chain to v6.3.0 ([#5462](https://github.com/procore/core/issues/5462)) ([b9e72f4](https://github.com/procore/core/commit/b9e72f4ff4961c618673533d0e1eb529ab7cf724))
|
|
845
|
+
- **deps:** update dependency webpack-dev-server to v3.10.0 ([#5436](https://github.com/procore/core/issues/5436)) ([1cb1ee0](https://github.com/procore/core/commit/1cb1ee0d59de2395a496503a834222d699496d34))
|
|
846
|
+
- **deps:** update dependency webpack-dev-server to v3.10.1 ([#5446](https://github.com/procore/core/issues/5446)) ([69c5767](https://github.com/procore/core/commit/69c5767ab0feed07d93d54b644e6ccb677a5ee03))
|
|
847
|
+
- **deps:** update typescript-eslint monorepo to v2.13.0 ([#5468](https://github.com/procore/core/issues/5468)) ([e5e1678](https://github.com/procore/core/commit/e5e167829ee0e5d99077cc89423d2b3c4c5d9e9f))
|
|
848
|
+
- **deps:** update typescript-eslint monorepo to v2.14.0 ([#5483](https://github.com/procore/core/issues/5483)) ([ad5fdfd](https://github.com/procore/core/commit/ad5fdfd072878eb2fe1c380cb3d900533d2106b0))
|
|
849
|
+
- **deps:** update typescript-eslint monorepo to v2.15.0 ([#5496](https://github.com/procore/core/issues/5496)) ([69ec45a](https://github.com/procore/core/commit/69ec45a9b92d14ab8542cfe78dd4f82949b4132d))
|
|
850
|
+
- fix gitignore for e2e folder ([#5492](https://github.com/procore/core/issues/5492)) ([6589e9b](https://github.com/procore/core/commit/6589e9be8d52016d833b76de2e888e9dab8adafd))
|
|
851
|
+
- **deps:** update babel monorepo to v7.7.6 ([#5374](https://github.com/procore/core/issues/5374)) ([60f7547](https://github.com/procore/core/commit/60f754794264c25b518cc5096bef26b0ab45aa0d))
|
|
852
|
+
- **deps:** update dependency @oclif/plugin-autocomplete to v0.1.5 ([#5349](https://github.com/procore/core/issues/5349)) ([ced9e91](https://github.com/procore/core/commit/ced9e91ee78bccf3496fb51d29e7c89f0aeeb469))
|
|
853
|
+
- **deps:** update dependency @oclif/plugin-help to v2.2.2 ([#5348](https://github.com/procore/core/issues/5348)) ([2fb816e](https://github.com/procore/core/commit/2fb816ec8ece0571f6c82f73c46fe6db53fee32b))
|
|
854
|
+
- **deps:** update dependency @oclif/plugin-help to v2.2.3 ([#5404](https://github.com/procore/core/issues/5404)) ([8cfbaa4](https://github.com/procore/core/commit/8cfbaa48c1f5080ee03046569b321a36228250b1))
|
|
855
|
+
- **deps:** update dependency @types/node to v12.12.16 ([#5377](https://github.com/procore/core/issues/5377)) ([90e670f](https://github.com/procore/core/commit/90e670f3d5f09c80912bfd6c2e377d3be442bbe2))
|
|
856
|
+
- **deps:** update dependency @types/node to v12.12.17 ([#5385](https://github.com/procore/core/issues/5385)) ([8bb5a26](https://github.com/procore/core/commit/8bb5a26c1815123e79b209dd53ed43890de0f0ad))
|
|
857
|
+
- **deps:** update dependency @types/node to v12.12.18 ([#5413](https://github.com/procore/core/issues/5413)) ([5e70f87](https://github.com/procore/core/commit/5e70f8709e68d4077b87e63040f664a5a5308c1d))
|
|
858
|
+
- **deps:** update dependency @types/node to v12.12.19 ([#5425](https://github.com/procore/core/issues/5425)) ([7cea153](https://github.com/procore/core/commit/7cea15300519c72eac13a51077c7767b15b93913))
|
|
859
|
+
- **deps:** update dependency babel-plugin-named-asset-import to v0.3.5 ([#5360](https://github.com/procore/core/issues/5360)) ([a176221](https://github.com/procore/core/commit/a176221c16efac250d0a2290a034784360fb1647))
|
|
860
|
+
- **deps:** update dependency babel-preset-react-app to v9.1.0 ([#5361](https://github.com/procore/core/issues/5361)) ([acc0c73](https://github.com/procore/core/commit/acc0c73810c9d23b143035d64662f3c6b316c71c))
|
|
861
|
+
- **deps:** update dependency cli-ux to v5.4.0 ([#5395](https://github.com/procore/core/issues/5395)) ([2ba7378](https://github.com/procore/core/commit/2ba73782fd50d6352e15a40206e2e10c86c4fec4))
|
|
862
|
+
- **deps:** update dependency cli-ux to v5.4.1 ([#5405](https://github.com/procore/core/issues/5405)) ([9fceb25](https://github.com/procore/core/commit/9fceb25ecb559300cd4a731e2b61a82e1af39bd7))
|
|
863
|
+
- **deps:** update dependency cypress to v3.8.0 ([#5400](https://github.com/procore/core/issues/5400)) ([c2936c3](https://github.com/procore/core/commit/c2936c39262ac3342b385e046771c99bd4162292))
|
|
864
|
+
- **deps:** update dependency eslint-plugin-cypress to v2.8.1 ([#5406](https://github.com/procore/core/issues/5406)) ([d075fba](https://github.com/procore/core/commit/d075fbaba29c37e706aded8897f11e051e2efffa))
|
|
865
|
+
- **deps:** update dependency eslint-plugin-import to v2.19.1 ([#5378](https://github.com/procore/core/issues/5378)) ([b20f98a](https://github.com/procore/core/commit/b20f98a76da2a1aec6a61863a9ae465becc4012f))
|
|
866
|
+
- **deps:** update dependency eslint-plugin-prettier to v3.1.2 ([#5409](https://github.com/procore/core/issues/5409)) ([c016abc](https://github.com/procore/core/commit/c016abc91d29001487c7a86f92c051e28932f955))
|
|
867
|
+
- **deps:** update dependency mini-css-extract-plugin to v0.8.1 ([#5426](https://github.com/procore/core/issues/5426)) ([8908aad](https://github.com/procore/core/commit/8908aad17662c4168e3ca8a6a08cfc6c88d19cf9))
|
|
868
|
+
- **deps:** update dependency mini-css-extract-plugin to v0.8.2 ([#5427](https://github.com/procore/core/issues/5427)) ([2cfcdbe](https://github.com/procore/core/commit/2cfcdbe47baad742007d5c3cccbfce8edf50fe6d))
|
|
869
|
+
- **deps:** update dependency npm-packlist to v2.0.2 ([#5383](https://github.com/procore/core/issues/5383)) ([3d93920](https://github.com/procore/core/commit/3d93920556ad811d508d265549badfc8efe63545))
|
|
870
|
+
- **deps:** update dependency npm-packlist to v2.0.3 ([#5422](https://github.com/procore/core/issues/5422)) ([8023303](https://github.com/procore/core/commit/80233036c8353be2a0bf948594a5d18bfc794000))
|
|
871
|
+
- **deps:** update dependency react-app-polyfill to v1.0.5 ([#5363](https://github.com/procore/core/issues/5363)) ([0703e3e](https://github.com/procore/core/commit/0703e3e0698d41df0f652b096500bc6d48dd8a12))
|
|
872
|
+
- **deps:** update dependency react-dev-utils to v10 ([#5367](https://github.com/procore/core/issues/5367)) ([6bed0f1](https://github.com/procore/core/commit/6bed0f1aad6c5cca4b411a54c453760484da33f2))
|
|
873
|
+
- **deps:** update dependency react-error-overlay to v6.0.4 ([#5364](https://github.com/procore/core/issues/5364)) ([9393092](https://github.com/procore/core/commit/9393092113e493de2fdafcaa29deb6783ee9eadd))
|
|
874
|
+
- **deps:** update dependency style-loader to v1.0.2 ([#5424](https://github.com/procore/core/issues/5424)) ([181e1a6](https://github.com/procore/core/commit/181e1a6e417fe2d067ff78c5680e991903da704f))
|
|
875
|
+
- **deps:** update dependency terser-webpack-plugin to v2.2.2 ([#5370](https://github.com/procore/core/issues/5370)) ([ba65ae0](https://github.com/procore/core/commit/ba65ae0d118e7f715d05fe0392756766858b3c9c))
|
|
876
|
+
- **deps:** update dependency terser-webpack-plugin to v2.2.3 ([#5392](https://github.com/procore/core/issues/5392)) ([ffdb28e](https://github.com/procore/core/commit/ffdb28e835c0362b3a928d3af047171229e62f47))
|
|
877
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.0 ([#5397](https://github.com/procore/core/issues/5397)) ([e0789ad](https://github.com/procore/core/commit/e0789ad0bd1b27cdbfed50ed302cfc93cd36e461))
|
|
878
|
+
- **deps:** update dependency terser-webpack-plugin to v2.3.1 ([#5423](https://github.com/procore/core/issues/5423)) ([338dd58](https://github.com/procore/core/commit/338dd580a9fe882f0251821d75374ced0bf05a69))
|
|
879
|
+
- **deps:** update dependency typescript to v3.7.3 ([#5354](https://github.com/procore/core/issues/5354)) ([7ac2476](https://github.com/procore/core/commit/7ac2476fb8b8af4097a6c345d2966de62a73f9da))
|
|
880
|
+
- **deps:** update dependency webpack to v4.41.3 ([#5412](https://github.com/procore/core/issues/5412)) ([d7e92d9](https://github.com/procore/core/commit/d7e92d9c5c618c1939ab3091b870abd2dc359aaf))
|
|
881
|
+
- **deps:** update dependency webpack-chain to v6.2.0 ([#5401](https://github.com/procore/core/issues/5401)) ([c158f96](https://github.com/procore/core/commit/c158f96ea90d94578fd8ab04131bd20531c3a8b4))
|
|
882
|
+
- **deps:** update typescript-eslint monorepo to v2.11.0 ([#5380](https://github.com/procore/core/issues/5380)) ([7d27447](https://github.com/procore/core/commit/7d27447c400b078ad1911032b579069d9ec1e21b))
|
|
883
|
+
- **deps:** update typescript-eslint monorepo to v2.12.0 ([#5416](https://github.com/procore/core/issues/5416)) ([5dc74c5](https://github.com/procore/core/commit/5dc74c59ba645b43a5c1ac0b127b50bb2af8005a))
|
|
884
|
+
|
|
885
|
+
### Features
|
|
886
|
+
|
|
887
|
+
- **core-scripts:** adds publicPath option to app:start ([9130767](https://github.com/procore/core/commit/9130767f70c28f4966022e2cc1555e47a6e33d8e))
|
|
888
|
+
- add web worker support ([#5357](https://github.com/procore/core/issues/5357)) ([e90100b](https://github.com/procore/core/commit/e90100b3a1d3014d00b09085402cd5476f111d78))
|
|
889
|
+
|
|
890
|
+
# [8.1.0](https://github.com/procore/core/compare/v8.0.1...v8.1.0) (2019-12-03)
|
|
891
|
+
|
|
892
|
+
### Bug Fixes
|
|
893
|
+
|
|
894
|
+
- **deps:** update dependency @types/node to v12.12.10 ([#5273](https://github.com/procore/core/issues/5273)) ([e694594](https://github.com/procore/core/commit/e694594e44576e4961ac4352f5c951ad058d0bbb))
|
|
895
|
+
- **deps:** update dependency @types/node to v12.12.11 ([#5276](https://github.com/procore/core/issues/5276)) ([ff0306a](https://github.com/procore/core/commit/ff0306a24fae2845eb7d4ade9e9dfd3920d3dfe7))
|
|
896
|
+
- **deps:** update dependency @types/node to v12.12.12 ([#5302](https://github.com/procore/core/issues/5302)) ([b30a2b1](https://github.com/procore/core/commit/b30a2b17497d225204c4b4b21333ebc879ff4908))
|
|
897
|
+
- **deps:** update dependency @types/node to v12.12.14 ([#5313](https://github.com/procore/core/issues/5313)) ([26e5833](https://github.com/procore/core/commit/26e5833b22d5c1afa6efa7d1194edc4f8c05e074))
|
|
898
|
+
- **deps:** update dependency @types/node to v12.12.9 ([#5267](https://github.com/procore/core/issues/5267)) ([1920c93](https://github.com/procore/core/commit/1920c938a44a3aa3ac29d659e884ceaeb1f750e3))
|
|
899
|
+
- **deps:** update dependency cypress to v3.7.0 ([#5326](https://github.com/procore/core/issues/5326)) ([d25b9e8](https://github.com/procore/core/commit/d25b9e8f96bc286efe08528f4e36407eba80fefd))
|
|
900
|
+
- **deps:** update dependency ejs to v2.7.3 ([#5269](https://github.com/procore/core/issues/5269)) ([4eb85d4](https://github.com/procore/core/commit/4eb85d47197e024f47d2efe37a38e4e088ed9f16))
|
|
901
|
+
- **deps:** update dependency ejs to v2.7.4 ([#5274](https://github.com/procore/core/issues/5274)) ([390e20b](https://github.com/procore/core/commit/390e20b447b7c1c4f1e4a9fd4fc406f0b5a9e957))
|
|
902
|
+
- **deps:** update dependency ejs to v3 ([#5305](https://github.com/procore/core/issues/5305)) ([a6e0f67](https://github.com/procore/core/commit/a6e0f67b1cc434b7f3a9198dfe4dc58cd751a409))
|
|
903
|
+
- **deps:** update dependency envinfo to v7.5.0 ([#5281](https://github.com/procore/core/issues/5281)) ([111bb04](https://github.com/procore/core/commit/111bb047387ec79b04387bc398bcd57c310fa45b))
|
|
904
|
+
- **deps:** update dependency eslint to v6.7.0 ([#5298](https://github.com/procore/core/issues/5298)) ([aac3e51](https://github.com/procore/core/commit/aac3e511b539822fd4d41b2bc8526379155c7453))
|
|
905
|
+
- **deps:** update dependency eslint to v6.7.1 ([#5307](https://github.com/procore/core/issues/5307)) ([e4f066a](https://github.com/procore/core/commit/e4f066a1f31631aa08a152284dca0542ec08d9c7))
|
|
906
|
+
- **deps:** update dependency eslint to v6.7.2 ([#5330](https://github.com/procore/core/issues/5330)) ([3653012](https://github.com/procore/core/commit/3653012f9642c74e3061b1f29a8e8c855ec94d8e))
|
|
907
|
+
- **deps:** update dependency eslint-config-prettier to v6.7.0 ([#5271](https://github.com/procore/core/issues/5271)) ([5457140](https://github.com/procore/core/commit/545714046d9af334e61ec227a3fe967826c68d06))
|
|
908
|
+
- **deps:** update dependency eslint-plugin-react to v7.17.0 ([#5329](https://github.com/procore/core/issues/5329)) ([7bd68d1](https://github.com/procore/core/commit/7bd68d190e596bf3a5965650e8d94d31e11ab0fe))
|
|
909
|
+
- **deps:** update dependency execa to v3.4.0 ([#5308](https://github.com/procore/core/issues/5308)) ([2bac532](https://github.com/procore/core/commit/2bac5324bef21099db680691766567b9f784e3fb))
|
|
910
|
+
- **deps:** update dependency file-loader to v4.3.0 ([#5287](https://github.com/procore/core/issues/5287)) ([af924f9](https://github.com/procore/core/commit/af924f99f139f20b0141bd114214f4757d9eb1a4))
|
|
911
|
+
- **deps:** update dependency file-loader to v5 ([#5309](https://github.com/procore/core/issues/5309)) ([8cb35a2](https://github.com/procore/core/commit/8cb35a296a9809b4f468108900873fd228bbbbb2))
|
|
912
|
+
- **deps:** update dependency jest-environment-jsdom-fourteen to v1 ([#5327](https://github.com/procore/core/issues/5327)) ([64be371](https://github.com/procore/core/commit/64be371b2ab230bb9761251f4ef3af54fe0b873a))
|
|
913
|
+
- **deps:** update dependency resolve to v1.12.1 ([#5293](https://github.com/procore/core/issues/5293)) ([3a95f64](https://github.com/procore/core/commit/3a95f64a96f477220cee34deea8e4550abc42d8d))
|
|
914
|
+
- **deps:** update dependency resolve to v1.12.2 ([#5294](https://github.com/procore/core/issues/5294)) ([0e9702b](https://github.com/procore/core/commit/0e9702bc3ba16a89059542a350071981d832e231))
|
|
915
|
+
- **deps:** update dependency resolve to v1.13.0 ([#5314](https://github.com/procore/core/issues/5314)) ([63fe458](https://github.com/procore/core/commit/63fe458dab213bd4e458e9a9f0b936c0b9c3f573))
|
|
916
|
+
- **deps:** update dependency resolve to v1.13.1 ([#5318](https://github.com/procore/core/issues/5318)) ([07084b4](https://github.com/procore/core/commit/07084b46cee5249e77cfa28f9eccbb6308ea4fb4))
|
|
917
|
+
- **deps:** update dependency style-loader to v1.0.1 ([#5328](https://github.com/procore/core/issues/5328)) ([cbe66a8](https://github.com/procore/core/commit/cbe66a864a3f358ea88d4679c068bfbf93da744b))
|
|
918
|
+
- **deps:** update dependency url-loader to v2.3.0 ([#5288](https://github.com/procore/core/issues/5288)) ([e6ec4c3](https://github.com/procore/core/commit/e6ec4c35e1dabb85b7d52a375c17069029da8c36))
|
|
919
|
+
- **deps:** update dependency url-loader to v3 ([#5315](https://github.com/procore/core/issues/5315)) ([b7fdce0](https://github.com/procore/core/commit/b7fdce08d4719f4cddadb63481fb4deeb81ed34d))
|
|
920
|
+
- **deps:** update typescript-eslint monorepo to v2.10.0 ([#5335](https://github.com/procore/core/issues/5335)) ([3b9b1b6](https://github.com/procore/core/commit/3b9b1b6aafa8a0a440d380794244e4d9d494e76b))
|
|
921
|
+
- **deps:** update typescript-eslint monorepo to v2.8.0 ([#5270](https://github.com/procore/core/issues/5270)) ([bf59ead](https://github.com/procore/core/commit/bf59eadd74e7a8d7ddf96d9833b55de8721de97f))
|
|
922
|
+
- **deps:** update typescript-eslint monorepo to v2.9.0 ([#5311](https://github.com/procore/core/issues/5311)) ([8b8e1e7](https://github.com/procore/core/commit/8b8e1e7d3fd9dcebab9260ec9919197fa17f64b3))
|
|
923
|
+
|
|
924
|
+
### Features
|
|
925
|
+
|
|
926
|
+
- add --fix-type flag to core-scripts lint:eslint command ([4f6ad6a](https://github.com/procore/core/commit/4f6ad6a6b669b25eb99ddae88c6f8e035d7a09ec)), closes [#5272](https://github.com/procore/core/issues/5272)
|
|
927
|
+
- add --fix-type flag to core-scripts lint:eslint command ([781f7d3](https://github.com/procore/core/commit/781f7d322de7d195316055c87b1909563d7f2bf1)), closes [#5272](https://github.com/procore/core/issues/5272)
|
|
928
|
+
- update core-scripts docs, change lint option fix-type -> fixTypes ([f87c32c](https://github.com/procore/core/commit/f87c32c504af3eea083f1dc74c4c715d67e3792d)), closes [#5272](https://github.com/procore/core/issues/5272)
|
|
929
|
+
- update docs and fix fixType flag ([10643d3](https://github.com/procore/core/commit/10643d324e9389893c37a236920301e143f078d0)), closes [#5272](https://github.com/procore/core/issues/5272)
|
|
930
|
+
|
|
931
|
+
## [8.0.1](https://github.com/procore/core/compare/v8.0.0...v8.0.1) (2019-11-18)
|
|
932
|
+
|
|
933
|
+
### Bug Fixes
|
|
934
|
+
|
|
935
|
+
- **deps:** update dependency cli-highlight to v2.1.4 ([#5255](https://github.com/procore/core/issues/5255)) ([4e20ea2](https://github.com/procore/core/commit/4e20ea23f120047a9a586c46ed75cb1868ff18fc))
|
|
936
|
+
- **deps:** update dependency eslint-config-prettier to v6.6.0 ([#5256](https://github.com/procore/core/issues/5256)) ([04d3457](https://github.com/procore/core/commit/04d3457453776378aeec86daad06447b37fd6ff5))
|
|
937
|
+
- **deps:** update dependency npm-packlist to v2.0.1 ([#5253](https://github.com/procore/core/issues/5253)) ([5395b0b](https://github.com/procore/core/commit/5395b0b090d3f75b9cd186fbfa8c328490e23044))
|
|
938
|
+
|
|
939
|
+
# [8.0.0](https://github.com/procore/core/compare/v7.21.3...v8.0.0) (2019-11-15)
|
|
940
|
+
|
|
941
|
+
### Bug Fixes
|
|
942
|
+
|
|
943
|
+
- **core-scripts:** fix cypress plugin location ([#5216](https://github.com/procore/core/issues/5216)) ([5f34e49](https://github.com/procore/core/commit/5f34e4985d0eceed2584e8fa04f1e3c23b112de0))
|
|
944
|
+
- **core-scripts:** fix lint command options ([#5083](https://github.com/procore/core/issues/5083)) ([1a49ed4](https://github.com/procore/core/commit/1a49ed439b565cff1fb75ff3d696363f63b1fa4b))
|
|
945
|
+
- **core-scripts:** fix typescript eslint deps ([#5080](https://github.com/procore/core/issues/5080)) ([5e2696b](https://github.com/procore/core/commit/5e2696befd0984107d3370c64f986f53e8b69d74))
|
|
946
|
+
- **core-scripts:** fix writting eslint config to disk ([#5218](https://github.com/procore/core/issues/5218)) ([e80f76b](https://github.com/procore/core/commit/e80f76b314b0bbd4cff14a145d8fb2050c2cc2fe))
|
|
947
|
+
- **core-scripts:** print error when build fails ([#5215](https://github.com/procore/core/issues/5215)) ([908c5b9](https://github.com/procore/core/commit/908c5b9f78a060cd4e9cc85cdf10cb02d94ea82f))
|
|
948
|
+
- **deps:** update dependency @cypress/webpack-preprocessor to v4.1.1 ([#5231](https://github.com/procore/core/issues/5231)) ([e80c939](https://github.com/procore/core/commit/e80c9391e1db944753e270423c2eac02454b66e6))
|
|
949
|
+
- **deps:** update dependency @types/jest to v24.0.20 ([#5121](https://github.com/procore/core/issues/5121)) ([1894fa5](https://github.com/procore/core/commit/1894fa50a2003808031846564125bbda3a4c6d04))
|
|
950
|
+
- **deps:** update dependency @types/jest to v24.0.23 ([#5225](https://github.com/procore/core/issues/5225)) ([071f2e7](https://github.com/procore/core/commit/071f2e7c82aae10cc1e1be8c744e734139de5e9c))
|
|
951
|
+
- **deps:** update dependency @types/node to v12.12.7 ([#5209](https://github.com/procore/core/issues/5209)) ([4de0eb3](https://github.com/procore/core/commit/4de0eb31863cd6d17032f40eb219cabb98db03ac))
|
|
952
|
+
- **deps:** update dependency @types/node to v12.12.8 ([#5249](https://github.com/procore/core/issues/5249)) ([009a049](https://github.com/procore/core/commit/009a04906a67b09d4073361e8d6e10834f3c3388))
|
|
953
|
+
- **deps:** update dependency chalk to v3 ([#5198](https://github.com/procore/core/issues/5198)) ([64af6f9](https://github.com/procore/core/commit/64af6f9a786f0ccfa94dad88e86571d1f2cf06b9))
|
|
954
|
+
- **deps:** update dependency cli-highlight to v2.1.3 ([#5210](https://github.com/procore/core/issues/5210)) ([c9c8007](https://github.com/procore/core/commit/c9c8007c71ef3a1f63cedc3864f90c5c140e4d04))
|
|
955
|
+
- **deps:** update dependency cypress to v3.6.1 ([#5193](https://github.com/procore/core/issues/5193)) ([4e1d68d](https://github.com/procore/core/commit/4e1d68d445b95f31d491622d9704d743d538c395))
|
|
956
|
+
- **deps:** update dependency ejs to v2.7.2 ([#5234](https://github.com/procore/core/issues/5234)) ([4be3040](https://github.com/procore/core/commit/4be30400c357e2856502ea6620b96d383067f135))
|
|
957
|
+
- **deps:** update dependency execa to v3.3.0 ([#5221](https://github.com/procore/core/issues/5221)) ([efd40e9](https://github.com/procore/core/commit/efd40e912575e681f5087ebad75b6c03efc9cfa1))
|
|
958
|
+
- **deps:** update react monorepo ([#5243](https://github.com/procore/core/issues/5243)) ([2ef7879](https://github.com/procore/core/commit/2ef7879234499aa8e792b0d619fdd5e6a273e618))
|
|
959
|
+
- disable warnings as errors ([#5226](https://github.com/procore/core/issues/5226)) ([012a0db](https://github.com/procore/core/commit/012a0db3f2be6f83d82677ca79089acfc169dc3f))
|
|
960
|
+
- fix package json files ([#5219](https://github.com/procore/core/issues/5219)) ([0894bfe](https://github.com/procore/core/commit/0894bfe6489cd0f82db7e174ab5ed11cf46988be))
|
|
961
|
+
- lint: create prettier config, disable 'import/no-unresolved' ([#5228](https://github.com/procore/core/issues/5228)) ([610b907](https://github.com/procore/core/commit/610b907a8c52c8a8bb5afea130b56f36bac46d7a))
|
|
962
|
+
- prettier config location ([#5230](https://github.com/procore/core/issues/5230)) ([09bd3c8](https://github.com/procore/core/commit/09bd3c80d9df6147aa72718f6d82bf63171e0c35))
|
|
963
|
+
- **core-scripts:** fix lint command ([#5156](https://github.com/procore/core/issues/5156)) ([23eb011](https://github.com/procore/core/commit/23eb011f1bc023c703c6a13fed66b8d748915270))
|
|
964
|
+
- **deps:** update babel monorepo to v7.7.2 ([#5180](https://github.com/procore/core/issues/5180)) ([dba58dc](https://github.com/procore/core/commit/dba58dcc41de30790e5e7ccb20df964334c5f757))
|
|
965
|
+
- **deps:** update dependency @types/jest to v24.0.21 ([#5137](https://github.com/procore/core/issues/5137)) ([a1f9e44](https://github.com/procore/core/commit/a1f9e444c525c11a1085ce8df9be6674486cca47))
|
|
966
|
+
- **deps:** update dependency @types/jest to v24.0.22 ([#5173](https://github.com/procore/core/issues/5173)) ([6da0422](https://github.com/procore/core/commit/6da04224fbde625a3bf8ca03303e1d419b272590))
|
|
967
|
+
- **deps:** update dependency @types/node to v11.13.23 ([#5108](https://github.com/procore/core/issues/5108)) ([f8e7266](https://github.com/procore/core/commit/f8e7266d4acf9e2fa934eaac0e84298f072164a4))
|
|
968
|
+
- **deps:** update dependency @types/node to v11.15.0 ([#5112](https://github.com/procore/core/issues/5112)) ([364a80a](https://github.com/procore/core/commit/364a80a73767de45295fb8c05185e3154388f169))
|
|
969
|
+
- **deps:** update dependency @types/node to v11.15.2 ([#5138](https://github.com/procore/core/issues/5138)) ([6fce1a0](https://github.com/procore/core/commit/6fce1a0553d68985b4028e3345c2a771f6c5192d))
|
|
970
|
+
- **deps:** update dependency cypress to v3.5.0 ([#5114](https://github.com/procore/core/issues/5114)) ([3cc0b52](https://github.com/procore/core/commit/3cc0b52f788382bc8ab63b556f991799b61e69a8))
|
|
971
|
+
- **deps:** update dependency cypress to v3.6.0 ([ed1f703](https://github.com/procore/core/commit/ed1f703820da6678f9f56c5b9cd5a4944e307093))
|
|
972
|
+
- **deps:** update dependency deepmerge to v4.1.2 ([#5086](https://github.com/procore/core/issues/5086)) ([f7fae15](https://github.com/procore/core/commit/f7fae151292d52b6996f76baaf570752bc1c5760))
|
|
973
|
+
- **deps:** update dependency deepmerge to v4.2.0 ([#5087](https://github.com/procore/core/issues/5087)) ([90df4a2](https://github.com/procore/core/commit/90df4a2959029a5b8fe83c7ffb4eff8448e9194a))
|
|
974
|
+
- **deps:** update dependency deepmerge to v4.2.1 ([#5100](https://github.com/procore/core/issues/5100)) ([2dbf3b0](https://github.com/procore/core/commit/2dbf3b0658e9733e4ca12de074da50cc26411344))
|
|
975
|
+
- **deps:** update dependency deepmerge to v4.2.2 ([#5125](https://github.com/procore/core/issues/5125)) ([8d745d4](https://github.com/procore/core/commit/8d745d4e4e6027a0ad32adc7684f70d8e266faa7))
|
|
976
|
+
- **deps:** update dependency eslint-config-prettier to v6.5.0 ([#5122](https://github.com/procore/core/issues/5122)) ([a87ec1f](https://github.com/procore/core/commit/a87ec1f6d0c4365df1b356e3f0496cee1ecb504a))
|
|
977
|
+
- **deps:** update dependency execa to v3.2.0 ([#5064](https://github.com/procore/core/issues/5064)) ([4e05a6b](https://github.com/procore/core/commit/4e05a6b45e98c9871e64c89663f6f7961f9c0b9d))
|
|
978
|
+
- **deps:** update dependency gluegun to v4.0.3 ([#5130](https://github.com/procore/core/issues/5130)) ([1e6b603](https://github.com/procore/core/commit/1e6b60356d6898cbacc737e9b11c13ddb8c51e33))
|
|
979
|
+
- **deps:** update dependency gluegun to v4.1.0 ([e73ae19](https://github.com/procore/core/commit/e73ae1983a5187b60ed1fb6cb4101d022d8951f4))
|
|
980
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0-beta.10 ([#5205](https://github.com/procore/core/issues/5205)) ([99b33a2](https://github.com/procore/core/commit/99b33a2c1d6f15cbe5b6ece7f4d2deee8dbd5c3e))
|
|
981
|
+
- **deps:** update dependency html-webpack-plugin to v4.0.0-beta.11 ([#5207](https://github.com/procore/core/issues/5207)) ([c7466ab](https://github.com/procore/core/commit/c7466ab6a3ed2800531bb80e1bd4ea0f43d90089))
|
|
982
|
+
- **deps:** update dependency jest-watch-typeahead to v0.4.2 ([#5199](https://github.com/procore/core/issues/5199)) ([33b59c7](https://github.com/procore/core/commit/33b59c7d3c8a6c7fc1e9a65c7ad054ab4ac541c7))
|
|
983
|
+
- **deps:** update dependency node-sass to v4.13.0 ([#5110](https://github.com/procore/core/issues/5110)) ([d06e58f](https://github.com/procore/core/commit/d06e58f3b66fe31026b4adba0e618f2bc6f4c86f))
|
|
984
|
+
- **deps:** update dependency npm-packlist to v2 ([#5162](https://github.com/procore/core/issues/5162)) ([9f6c923](https://github.com/procore/core/commit/9f6c923bbd4afef8aff221c861d3e5eb369ac2c9))
|
|
985
|
+
- **deps:** update dependency resolve-url-loader to v3.1.1 ([#5200](https://github.com/procore/core/issues/5200)) ([624c553](https://github.com/procore/core/commit/624c553f336f9cd908dec3eb3726c7b862e95abc))
|
|
986
|
+
- **deps:** update dependency strip-ansi to v6 ([#5196](https://github.com/procore/core/issues/5196)) ([e5e49ec](https://github.com/procore/core/commit/e5e49ec177afec60f45d8d3d0b5f857035efe2cc))
|
|
987
|
+
- **deps:** update dependency terser-webpack-plugin to v2.2.1 ([#5092](https://github.com/procore/core/issues/5092)) ([2931634](https://github.com/procore/core/commit/29316342c3d21b4cac3004e8fac254fefccef95e))
|
|
988
|
+
- **deps:** update dependency ts-pnp to v1.1.5 ([#5201](https://github.com/procore/core/issues/5201)) ([0d05902](https://github.com/procore/core/commit/0d059029f62ae30962d6f7fbd5b25234ff237b1d))
|
|
989
|
+
- **deps:** update dependency typescript to v3.7.2 ([#5166](https://github.com/procore/core/issues/5166)) ([f33feff](https://github.com/procore/core/commit/f33feffb394c1c728b242d39751e07b8b49a487e))
|
|
990
|
+
- **deps:** update dependency webpack-dev-server to v3.9.0 ([#5094](https://github.com/procore/core/issues/5094)) ([bbd7407](https://github.com/procore/core/commit/bbd74078aa7220f1e18e4a5a1475d365b36345f5))
|
|
991
|
+
- **deps:** update react monorepo ([#5097](https://github.com/procore/core/issues/5097)) ([ee4086e](https://github.com/procore/core/commit/ee4086eec3721cf6f952f3a0025092c30d8a3d37))
|
|
992
|
+
- **deps:** update typescript-eslint monorepo to v2.5.0 ([#5088](https://github.com/procore/core/issues/5088)) ([6c4768b](https://github.com/procore/core/commit/6c4768be001b1d2fcf309d66b3a1263f4e28cb80))
|
|
993
|
+
- **deps:** update typescript-eslint monorepo to v2.6.0 ([#5126](https://github.com/procore/core/issues/5126)) ([f5e9314](https://github.com/procore/core/commit/f5e931438224741146b26479e136ccf5951ca230))
|
|
994
|
+
- **deps:** update typescript-eslint monorepo to v2.6.1 ([#5159](https://github.com/procore/core/issues/5159)) ([c3f0443](https://github.com/procore/core/commit/c3f044348e0007867c7f6c3edf5a58bfec7b1160))
|
|
995
|
+
- **deps:** update typescript-eslint monorepo to v2.7.0 ([#5208](https://github.com/procore/core/issues/5208)) ([a5eee49](https://github.com/procore/core/commit/a5eee4953a7c29e5b546e9f9d655e0278912c08f))
|
|
996
|
+
- **eslint-config:** add babel eslint parser ([#5179](https://github.com/procore/core/issues/5179)) ([1c36671](https://github.com/procore/core/commit/1c36671426dc15e12ebf85236d083fed6e567a20))
|
|
997
|
+
|
|
998
|
+
* Yordis/core scripts2 (#5164) ([3094a24](https://github.com/procore/core/commit/3094a249faf37fb32c2e9b17c7d9a75649a48fae)), closes [#5164](https://github.com/procore/core/issues/5164)
|
|
999
|
+
|
|
1000
|
+
### Features
|
|
1001
|
+
|
|
1002
|
+
- **core-scripts:** aDD e2e folder to lint input ([#5115](https://github.com/procore/core/issues/5115)) ([eeb9d5e](https://github.com/procore/core/commit/eeb9d5ed6eae736e1fd211bb448679f768e9f3b0))
|
|
1003
|
+
- **core-scripts:** add end-to-end command ([#5085](https://github.com/procore/core/issues/5085)) ([523a629](https://github.com/procore/core/commit/523a6290ec14bcd098a201689ac395055860e690))
|
|
1004
|
+
- **core-scripts:** improve eslint setup ([#5082](https://github.com/procore/core/issues/5082)) ([b3856c7](https://github.com/procore/core/commit/b3856c77467062446da42431bd8e33a03bf8ddb0))
|
|
1005
|
+
|
|
1006
|
+
### Performance Improvements
|
|
1007
|
+
|
|
1008
|
+
- **core-scripts:** optimize load time ([#5123](https://github.com/procore/core/issues/5123)) ([b94c7e2](https://github.com/procore/core/commit/b94c7e2b5280a822f122fcdf0b7ddbd7da6a4da2))
|
|
1009
|
+
|
|
1010
|
+
### BREAKING CHANGES
|
|
1011
|
+
|
|
1012
|
+
- Visit https://github.com/procore/core/pull/5164 for more information.
|
|
1013
|
+
|
|
1014
|
+
## [7.21.1](https://github.com/procore/core/compare/v7.21.0...v7.21.1) (2019-10-17)
|
|
1015
|
+
|
|
1016
|
+
**Note:** Version bump only for package @procore/core-scripts
|
|
1017
|
+
|
|
1018
|
+
# [7.21.0](https://github.com/procore/core/compare/v7.20.0...v7.21.0) (2019-10-16)
|
|
1019
|
+
|
|
1020
|
+
### Bug Fixes
|
|
1021
|
+
|
|
1022
|
+
- **core-scripts:** fix externals values for library build ([#5011](https://github.com/procore/core/issues/5011)) ([c0879d1](https://github.com/procore/core/commit/c0879d13a64eff89a1ec8a19ae8220821e897a63))
|
|
1023
|
+
- **deps:** update dependency @types/jest to v24.0.19 ([#5039](https://github.com/procore/core/issues/5039)) ([4416b66](https://github.com/procore/core/commit/4416b66c0ad5fb5859e866f9015d3afe6d91681b))
|
|
1024
|
+
- **deps:** update dependency @types/node to v11.13.22 ([1a11d80](https://github.com/procore/core/commit/1a11d803862d1742260b3f2b02202c5162c47220))
|
|
1025
|
+
- **deps:** update dependency deepmerge to v4.1.0 ([#4987](https://github.com/procore/core/issues/4987)) ([463b11e](https://github.com/procore/core/commit/463b11e89c92b89824eb9ca90cac0147b7483cd4))
|
|
1026
|
+
- **deps:** update dependency deepmerge to v4.1.1 ([#4999](https://github.com/procore/core/issues/4999)) ([88ce31b](https://github.com/procore/core/commit/88ce31be5f1987eb16a211154d57cfbfb5bb2fc8))
|
|
1027
|
+
- **deps:** update dependency execa to v2.0.5 ([19ae204](https://github.com/procore/core/commit/19ae20405fe51d34725fbf51c08378853a2b7814))
|
|
1028
|
+
- **deps:** update dependency execa to v2.1.0 ([#5005](https://github.com/procore/core/issues/5005)) ([e272df4](https://github.com/procore/core/commit/e272df4d99820b1e09fcb2d9863decefab28de13))
|
|
1029
|
+
- **deps:** update dependency execa to v3 ([#5029](https://github.com/procore/core/issues/5029)) ([c167a47](https://github.com/procore/core/commit/c167a478707b8928c100ad060cab92308f47b553))
|
|
1030
|
+
- **deps:** update dependency gluegun to v4 ([#4930](https://github.com/procore/core/issues/4930)) ([7180579](https://github.com/procore/core/commit/7180579a830e2f3e58c0a5f33d9e95b0f4654363))
|
|
1031
|
+
- **deps:** update dependency neutrino to v9.0.0-rc.4 ([#4985](https://github.com/procore/core/issues/4985)) ([24bac9d](https://github.com/procore/core/commit/24bac9d6d090a37e0e1618089f0f8af4684eeb0a))
|
|
1032
|
+
- **deps:** update dependency npm-packlist to v1.4.6 ([#5004](https://github.com/procore/core/issues/5004)) ([2c2986a](https://github.com/procore/core/commit/2c2986afe23ec81853358c7f2796ba62b9f479e4))
|
|
1033
|
+
- **deps:** update dependency react-app-polyfill to v1.0.4 ([e35cc98](https://github.com/procore/core/commit/e35cc981bf686e491885cf5c39bfbac80ee59669))
|
|
1034
|
+
- **deps:** update dependency react-dev-utils to v9.1.0 ([dcbccf7](https://github.com/procore/core/commit/dcbccf745018a987403a97d386cafff64da0143b))
|
|
1035
|
+
- **deps:** update dependency react-error-overlay to v6.0.3 ([51a99e4](https://github.com/procore/core/commit/51a99e4b075dbae66fc55d2e4657cb78e23bc0f9))
|
|
1036
|
+
- **deps:** update dependency terser-webpack-plugin to v2.1.3 ([#5022](https://github.com/procore/core/issues/5022)) ([599980a](https://github.com/procore/core/commit/599980aefbd2ae2f255897a2bf3c116e7be5c8b5))
|
|
1037
|
+
- **deps:** update dependency typescript to v3.6.4 ([#5013](https://github.com/procore/core/issues/5013)) ([9667f02](https://github.com/procore/core/commit/9667f02e16eb0c8a80dac295f11a26bee313df18))
|
|
1038
|
+
- **deps:** update dependency url-loader to v2.2.0 ([8c984e9](https://github.com/procore/core/commit/8c984e9678026ed708b845d81d9326c1241e78ff))
|
|
1039
|
+
- **deps:** update dependency webpack to v4.41.1 ([#5024](https://github.com/procore/core/issues/5024)) ([79dff2a](https://github.com/procore/core/commit/79dff2aa76d09306d9d0d4de944f093dba062a1d))
|
|
1040
|
+
- **deps:** update dependency webpack to v4.41.2 ([#5044](https://github.com/procore/core/issues/5044)) ([b63fa86](https://github.com/procore/core/commit/b63fa862bcaeb7346a20c1b876957c9bf57a4a53))
|
|
1041
|
+
- resolve correct relative path for sourcemaps ([085a769](https://github.com/procore/core/commit/085a7699888fc0beafbdb7b51337b09b57070b18))
|
|
1042
|
+
- update filename setting for SourceMapDevToolPlugin to be relative ([9bda83b](https://github.com/procore/core/commit/9bda83b3f218a617cd798f1ec8889cda3d4cfbd0))
|
|
1043
|
+
|
|
1044
|
+
### Features
|
|
1045
|
+
|
|
1046
|
+
- **core-scripts:** add lint command ([#5027](https://github.com/procore/core/issues/5027)) ([f5babbd](https://github.com/procore/core/commit/f5babbddeee9b1e8f9a3df8f13a4aadb0c101fba))
|
|
1047
|
+
|
|
1048
|
+
# [7.20.0](https://github.com/procore/core/compare/v7.19.0...v7.20.0) (2019-10-03)
|
|
1049
|
+
|
|
1050
|
+
### Bug Fixes
|
|
1051
|
+
|
|
1052
|
+
- **core-scripts:** fix Rails mode in prod build ([#4898](https://github.com/procore/core/issues/4898)) ([e79d4d2](https://github.com/procore/core/commit/e79d4d2))
|
|
1053
|
+
- **core-scripts:** this disables function name shortening ([a9f813f](https://github.com/procore/core/commit/a9f813f))
|
|
1054
|
+
- **core-scripts:** uses a regex as keep_fnames value ([f23d56b](https://github.com/procore/core/commit/f23d56b))
|
|
1055
|
+
- **deps:** update dependency @svgr/webpack to v4.3.3 ([#4889](https://github.com/procore/core/issues/4889)) ([99447e1](https://github.com/procore/core/commit/99447e1))
|
|
1056
|
+
- **deps:** update dependency @types/node to v11.13.21 ([#4891](https://github.com/procore/core/issues/4891)) ([a0a889a](https://github.com/procore/core/commit/a0a889a))
|
|
1057
|
+
- **deps:** update dependency gluegun to v3.3.5 ([#4929](https://github.com/procore/core/issues/4929)) ([1f040cd](https://github.com/procore/core/commit/1f040cd))
|
|
1058
|
+
- **deps:** update dependency is-wsl to v2.1.1 ([#4882](https://github.com/procore/core/issues/4882)) ([ff0454c](https://github.com/procore/core/commit/ff0454c))
|
|
1059
|
+
- **deps:** update dependency terser-webpack-plugin to v2.1.1 ([#4914](https://github.com/procore/core/issues/4914)) ([8396814](https://github.com/procore/core/commit/8396814))
|
|
1060
|
+
- **deps:** update dependency terser-webpack-plugin to v2.1.2 ([#4932](https://github.com/procore/core/issues/4932)) ([f2804b3](https://github.com/procore/core/commit/f2804b3))
|
|
1061
|
+
- **deps:** update dependency webpack to v4.41.0 ([#4890](https://github.com/procore/core/issues/4890)) ([e727ab3](https://github.com/procore/core/commit/e727ab3))
|
|
1062
|
+
- **deps:** update dependency webpack-dev-server to v3.8.2 ([2851162](https://github.com/procore/core/commit/2851162))
|
|
1063
|
+
- **deps:** update dependency webpack-manifest-plugin to v2.1.2 ([#4883](https://github.com/procore/core/issues/4883)) ([2da109b](https://github.com/procore/core/commit/2da109b))
|
|
1064
|
+
- **deps:** update dependency webpack-manifest-plugin to v2.2.0 ([0066d64](https://github.com/procore/core/commit/0066d64))
|