@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 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
@@ -1,4 +1,5 @@
1
1
  /* eslint-env node, es6 */
2
+ /* eslint-disable prettier/prettier */
2
3
  // @remove-on-eject-begin
3
4
  /**
4
5
  * Portions of this source code file are from create-react-app, used under the
@@ -91,11 +91,8 @@ module.exports = function (env) {
91
91
  // package.json
92
92
  loader: require.resolve('postcss-loader'),
93
93
  options: {
94
- // https://webpack.js.org/guides/migrating/#complex-options
95
- ident: 'postcss',
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.6",
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-flexbugs-fixes": "4.2.1",
105
+ "postcss": "8.3.5",
106
+ "postcss-flexbugs-fixes": "5.0.2",
106
107
  "postcss-global-import": "1.0.6",
107
- "postcss-loader": "3.0.0",
108
- "postcss-normalize": "9.0.0",
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",