@anansi/webpack-config 13.0.4 → 13.0.7
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 +24 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
### [13.0.7](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.6...@anansi/webpack-config@13.0.7) (2022-08-31)
|
|
7
|
+
|
|
8
|
+
### 📦 Package
|
|
9
|
+
|
|
10
|
+
* sass, terser-webpack-plugin ([#1635](https://github.com/ntucker/anansi/issues/1635)) ([26496ce](https://github.com/ntucker/anansi/commit/26496ce4bf362b4e0bdf07cbb000b560282dcfa2))
|
|
11
|
+
|
|
12
|
+
### [13.0.6](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.5...@anansi/webpack-config@13.0.6) (2022-08-25)
|
|
13
|
+
|
|
14
|
+
### 📦 Package
|
|
15
|
+
|
|
16
|
+
* Update `@babel/core` to v7.18.13 ([#1622](https://github.com/ntucker/anansi/issues/1622)) ([431a2b4](https://github.com/ntucker/anansi/commit/431a2b49453e8937c5f9e376a5f26395117a1d35))
|
|
17
|
+
* Update `webpack-bundle-analyzer` to ^4.6.1 ([#1623](https://github.com/ntucker/anansi/issues/1623)) ([718ad5f](https://github.com/ntucker/anansi/commit/718ad5fceb1ef1b577e3978cc09ff0ebf3acbbab))
|
|
18
|
+
* Update all non-major dependencies ([#1626](https://github.com/ntucker/anansi/issues/1626)) ([05b1837](https://github.com/ntucker/anansi/commit/05b1837691fd0796ce3141c8535013bdc3996bc3))
|
|
19
|
+
|
|
20
|
+
### [13.0.5](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.4...@anansi/webpack-config@13.0.5) (2022-08-21)
|
|
21
|
+
|
|
22
|
+
### 📦 Package
|
|
23
|
+
|
|
24
|
+
* sass, pacote ([#1621](https://github.com/ntucker/anansi/issues/1621)) ([668d60d](https://github.com/ntucker/anansi/commit/668d60dc88224acd9ee7c7defca640ebbfc6cf62))
|
|
25
|
+
* Update `prettier-eslint-cli` to v7 ([#1620](https://github.com/ntucker/anansi/issues/1620)) ([0adda87](https://github.com/ntucker/anansi/commit/0adda877e3b4d0afa9412bedc57e2babd3aa51d6))
|
|
26
|
+
* Update `terser-webpack-plugin` to ^5.3.5 ([#1617](https://github.com/ntucker/anansi/issues/1617)) ([83832f5](https://github.com/ntucker/anansi/commit/83832f564acd2a56e6af90756b28b7c660488539))
|
|
27
|
+
* Update `webpack-bundle-analyzer` to ^4.6.0 ([#1618](https://github.com/ntucker/anansi/issues/1618)) ([c1f4f6a](https://github.com/ntucker/anansi/commit/c1f4f6acb3906b4d9ab7d66dc9927f34c08862b0))
|
|
28
|
+
* Update all non-major dependencies ([#1616](https://github.com/ntucker/anansi/issues/1616)) ([00e5885](https://github.com/ntucker/anansi/commit/00e588516d58f736f780ac0ef3469c3f69a48360))
|
|
29
|
+
|
|
6
30
|
### [13.0.4](https://github.com/ntucker/anansi/compare/@anansi/webpack-config@13.0.3...@anansi/webpack-config@13.0.4) (2022-08-13)
|
|
7
31
|
|
|
8
32
|
### 📦 Package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anansi/webpack-config",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.7",
|
|
4
4
|
"description": "Production ready webpack for React",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@anansi/babel-preset": "3.2.15",
|
|
56
56
|
"@babel/cli": "7.18.10",
|
|
57
|
-
"@babel/core": "7.18.
|
|
57
|
+
"@babel/core": "7.18.13",
|
|
58
58
|
"debug": "4.3.4",
|
|
59
|
-
"prettier-eslint-cli": "
|
|
59
|
+
"prettier-eslint-cli": "7.1.0",
|
|
60
60
|
"rimraf": "3.0.2"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"@linaria/webpack5-loader": "4.1.2",
|
|
65
65
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
|
|
66
66
|
"@svgr/webpack": "^6.3.1",
|
|
67
|
-
"@types/webpack-bundle-analyzer": "^4.4.
|
|
67
|
+
"@types/webpack-bundle-analyzer": "^4.4.2",
|
|
68
68
|
"@vue/preload-webpack-plugin": "^2.0.0",
|
|
69
69
|
"assert": "^2.0.0",
|
|
70
70
|
"autoprefixer": "^10.4.8",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"path-browserify": "^1.0.1",
|
|
97
97
|
"postcss": "^8.4.16",
|
|
98
98
|
"postcss-loader": "^7.0.1",
|
|
99
|
-
"postcss-preset-env": "^7.
|
|
99
|
+
"postcss-preset-env": "^7.8.0",
|
|
100
100
|
"process": "^0.11.10",
|
|
101
101
|
"punycode": "^2.1.1",
|
|
102
102
|
"querystring-es3": "^0.2.1",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"react-dev-utils": "^12.0.1",
|
|
106
106
|
"react-error-overlay": "6.0.9",
|
|
107
107
|
"readable-stream": "^4.1.0",
|
|
108
|
-
"sass": "^1.54.
|
|
108
|
+
"sass": "^1.54.6",
|
|
109
109
|
"sass-loader": "^13.0.2",
|
|
110
110
|
"sass-resources-loader": "^2.2.5",
|
|
111
111
|
"semver": "^7.3.7",
|
|
@@ -115,7 +115,7 @@
|
|
|
115
115
|
"strip-ansi": "^6.0.1",
|
|
116
116
|
"svgo": "^2.8.0",
|
|
117
117
|
"svgo-loader": "^3.0.1",
|
|
118
|
-
"terser-webpack-plugin": "^5.3.
|
|
118
|
+
"terser-webpack-plugin": "^5.3.6",
|
|
119
119
|
"timers-browserify": "^2.0.12",
|
|
120
120
|
"tsconfig-paths-webpack-plugin": "^4.0.0",
|
|
121
121
|
"tty-browserify": "^0.0.1",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"url-loader": "^4.1.1",
|
|
124
124
|
"util": "^0.12.4",
|
|
125
125
|
"vm-browserify": "^1.1.2",
|
|
126
|
-
"webpack-bundle-analyzer": "^4.
|
|
126
|
+
"webpack-bundle-analyzer": "^4.6.1",
|
|
127
127
|
"webpack-node-externals": "^3.0.0",
|
|
128
128
|
"webpack-remove-empty-scripts": "^0.8.1",
|
|
129
129
|
"webpack-stats-plugin": "^1.1.0",
|