@enact/cli 3.0.6 → 3.0.8
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 +11 -1
- package/commands/serve.js +1 -0
- package/config/webpack.config.js +4 -5
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 3.0.8 (February 17, 2022)
|
|
2
|
+
|
|
3
|
+
* No significant changes.
|
|
4
|
+
|
|
5
|
+
## 3.0.7 (February 17, 2022)
|
|
6
|
+
|
|
7
|
+
### pack
|
|
8
|
+
|
|
9
|
+
* Updated `postcss` related dependencies including `postcss-normalize` 10.0.1.
|
|
10
|
+
|
|
1
11
|
## 3.0.6 (May 11, 2021)
|
|
2
12
|
|
|
3
13
|
### pack
|
|
@@ -136,7 +146,7 @@ All dependencies updated to latest release.
|
|
|
136
146
|
### pack
|
|
137
147
|
|
|
138
148
|
* Fixed theme feature detection on local theme files (eg. when a local ThemeDecorator is present)
|
|
139
|
-
* Fixed bug with `--framework` option with regards to erroneously including unneeded or invalid iLib dependencies and test files.
|
|
149
|
+
* Fixed bug with `--framework` option with regards to erroneously including unneeded or invalid iLib dependencies and test files.
|
|
140
150
|
|
|
141
151
|
### clean
|
|
142
152
|
|
package/commands/serve.js
CHANGED
package/config/webpack.config.js
CHANGED
|
@@ -91,11 +91,8 @@ module.exports = function (env) {
|
|
|
91
91
|
// package.json
|
|
92
92
|
loader: require.resolve('postcss-loader'),
|
|
93
93
|
options: {
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
sourceMap: shouldUseSourceMap,
|
|
97
|
-
plugins: () =>
|
|
98
|
-
[
|
|
94
|
+
postcssOptions: {
|
|
95
|
+
plugins: [
|
|
99
96
|
// Fix and adjust for known flexbox issues
|
|
100
97
|
// See https://github.com/philipwalton/flexbugs
|
|
101
98
|
require('postcss-flexbugs-fixes'),
|
|
@@ -118,6 +115,8 @@ module.exports = function (env) {
|
|
|
118
115
|
// Resolution indepedence support
|
|
119
116
|
app.ri !== false && require('postcss-resolution-independence')(app.ri)
|
|
120
117
|
].filter(Boolean)
|
|
118
|
+
},
|
|
119
|
+
sourceMap: shouldUseSourceMap
|
|
121
120
|
}
|
|
122
121
|
}
|
|
123
122
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
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>",
|
|
@@ -102,10 +102,11 @@
|
|
|
102
102
|
"mini-css-extract-plugin": "0.9.0",
|
|
103
103
|
"minimist": "1.2.5",
|
|
104
104
|
"optimize-css-assets-webpack-plugin": "5.0.3",
|
|
105
|
-
"postcss
|
|
105
|
+
"postcss": "8.3.5",
|
|
106
|
+
"postcss-flexbugs-fixes": "5.0.2",
|
|
106
107
|
"postcss-global-import": "1.0.6",
|
|
107
|
-
"postcss-loader": "
|
|
108
|
-
"postcss-normalize": "
|
|
108
|
+
"postcss-loader": "4.2.0",
|
|
109
|
+
"postcss-normalize": "10.0.1",
|
|
109
110
|
"postcss-preset-env": "6.7.0",
|
|
110
111
|
"postcss-resolution-independence": "1.0.0",
|
|
111
112
|
"postcss-safe-parser": "4.0.2",
|