@enact/cli 4.1.2 → 4.1.4
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/.travis.yml +1 -1
- package/CHANGELOG.md +17 -0
- package/config/webpack.config.js +4 -5
- package/package.json +8 -7
package/.travis.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 4.1.4 (October 13, 2021)
|
|
2
|
+
|
|
3
|
+
### lint
|
|
4
|
+
|
|
5
|
+
* Added `eslint-plugin-testing-library` as a dependency.
|
|
6
|
+
|
|
7
|
+
## 4.1.3 (October 12, 2021)
|
|
8
|
+
|
|
9
|
+
### pack
|
|
10
|
+
|
|
11
|
+
* Removed `sanitize.css` dependency.
|
|
12
|
+
* Updated CLI dependency of `postcss` related modules including `postcss-normalize` 10.0.1.
|
|
13
|
+
|
|
14
|
+
### lint
|
|
15
|
+
|
|
16
|
+
* Enabled `testing-library` lint rules.
|
|
17
|
+
|
|
1
18
|
## 4.1.2 (September 29, 2021)
|
|
2
19
|
|
|
3
20
|
### pack
|
package/config/webpack.config.js
CHANGED
|
@@ -116,11 +116,8 @@ module.exports = function (env) {
|
|
|
116
116
|
// package.json
|
|
117
117
|
loader: require.resolve('postcss-loader'),
|
|
118
118
|
options: {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
sourceMap: shouldUseSourceMap,
|
|
122
|
-
plugins: () =>
|
|
123
|
-
[
|
|
119
|
+
postcssOptions: {
|
|
120
|
+
plugins: [
|
|
124
121
|
// Fix and adjust for known flexbox issues
|
|
125
122
|
// See https://github.com/philipwalton/flexbugs
|
|
126
123
|
require('postcss-flexbugs-fixes'),
|
|
@@ -143,6 +140,8 @@ module.exports = function (env) {
|
|
|
143
140
|
// Resolution indepedence support
|
|
144
141
|
app.ri !== false && require('postcss-resolution-independence')(app.ri)
|
|
145
142
|
].filter(Boolean)
|
|
143
|
+
},
|
|
144
|
+
sourceMap: shouldUseSourceMap
|
|
146
145
|
}
|
|
147
146
|
}
|
|
148
147
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "Full-featured build environment tool for Enact applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Jason Robitaille <jason.robitaille@lge.com>",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@babel/preset-react": "7.12.1",
|
|
56
56
|
"@babel/preset-typescript": "7.12.1",
|
|
57
57
|
"@babel/runtime": "7.12.1",
|
|
58
|
-
"@enact/dev-utils": "4.1.
|
|
58
|
+
"@enact/dev-utils": "4.1.2",
|
|
59
59
|
"@enact/template-sandstone": "1.0.0",
|
|
60
60
|
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
|
|
61
61
|
"@testing-library/jest-dom": "^5.14.1",
|
|
@@ -81,12 +81,13 @@
|
|
|
81
81
|
"dotenv-expand": "5.1.0",
|
|
82
82
|
"enzyme": "3.11.0",
|
|
83
83
|
"eslint": "7.11.0",
|
|
84
|
-
"eslint-config-enact": "3.
|
|
84
|
+
"eslint-config-enact": "3.1.1",
|
|
85
85
|
"eslint-plugin-babel": "5.3.1",
|
|
86
86
|
"eslint-plugin-enact": "0.2.1",
|
|
87
87
|
"eslint-plugin-jsx-a11y": "6.3.1",
|
|
88
88
|
"eslint-plugin-react": "7.21.5",
|
|
89
89
|
"eslint-plugin-react-hooks": "4.2.0",
|
|
90
|
+
"eslint-plugin-testing-library": "3.10.2",
|
|
90
91
|
"eslint-webpack-plugin": "2.4.3",
|
|
91
92
|
"expose-loader": "1.0.0",
|
|
92
93
|
"file-loader": "6.1.1",
|
|
@@ -106,10 +107,11 @@
|
|
|
106
107
|
"mini-css-extract-plugin": "0.11.3",
|
|
107
108
|
"minimist": "1.2.5",
|
|
108
109
|
"optimize-css-assets-webpack-plugin": "5.0.3",
|
|
109
|
-
"postcss
|
|
110
|
+
"postcss": "8.3.5",
|
|
111
|
+
"postcss-flexbugs-fixes": "5.0.2",
|
|
110
112
|
"postcss-global-import": "1.0.6",
|
|
111
|
-
"postcss-loader": "
|
|
112
|
-
"postcss-normalize": "
|
|
113
|
+
"postcss-loader": "4.2.0",
|
|
114
|
+
"postcss-normalize": "10.0.1",
|
|
113
115
|
"postcss-preset-env": "6.7.0",
|
|
114
116
|
"postcss-resolution-independence": "1.0.0",
|
|
115
117
|
"postcss-safe-parser": "5.0.2",
|
|
@@ -122,7 +124,6 @@
|
|
|
122
124
|
"react-test-renderer": "17.0.1",
|
|
123
125
|
"resolution-independence": "1.0.0",
|
|
124
126
|
"resolve": "1.17.0",
|
|
125
|
-
"sanitize.css": "^12.0.1",
|
|
126
127
|
"semver": "7.3.2",
|
|
127
128
|
"strip-ansi": "6.0.0",
|
|
128
129
|
"style-loader": "1.2.1",
|