You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
## 0.7.0 (Dec 21, 2020)
2
+
### Breaking change
3
+
- The `silent` option is deprecated and will be removed on Juni 30, 2021. Use option `verbose: true` to show in console each removed empty file. Defaults, `verbose: false`.
4
+
5
+
### Bugfixes
6
+
- The issue `Maximum call stack size exceeded` was general fixed in all cases, for example, by usage the webpack setting `optimization.concatenateModules: true` and:
7
+
- import react
8
+
- import redux
9
+
- webpack setting `externals.jquery: 'jQuery'` or other external libs
10
+
- The issue if first in webpack entries are a styles and then a scripts.
11
+
1
12
## 0.6.4 (Dec 19, 2020)
2
13
- Bugfix the error: `Maximum call stack size exceeded` with webpack setting `optimization.concatenateModules: true`and usage in script imports from `react` and `redux`.
3
14
- Add test case for single style without a scripts in webpack config.
| ignore | string or RegExp or Array[string] or Array[RegExp]|['/node_modules/']| match resource path to be ignored, defaults the resources from `node_modules` are ignored|
console.warn('[DEPRECATION] the `silent` option is deprecated and will be removed on Juni 30, 2021. Use option `verbose: true` to show in console each removed empty file. Defaults, `verbose: false`.')
Copy file name to clipboardExpand all lines: package.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
{
2
2
"name": "webpack-remove-empty-scripts",
3
-
"version": "0.6.4",
3
+
"version": "0.7.0",
4
4
"description": "Webpack 5 plugin to remove empty scripts generated by usage only style in entries. This is the fork of original plugin https://github.com/fqborges/webpack-fix-style-only-entries (ver. 0.6.0).",
0 commit comments