@enact/cli 4.1.1 → 4.1.6

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  language: node_js
2
2
  node_js:
3
- - "node"
3
+ - "14"
4
4
  sudo: false
5
5
  cache:
6
6
  directories:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,36 @@
1
+ ## 4.1.6 (December 2, 2021)
2
+
3
+ ### pack
4
+
5
+ * Fixed V8 snapshot failure.
6
+
7
+ ## 4.1.5 (November 29, 2021)
8
+
9
+ * No significant changes.
10
+
11
+ ## 4.1.4 (October 13, 2021)
12
+
13
+ ### lint
14
+
15
+ * Added `eslint-plugin-testing-library` as a dependency.
16
+
17
+ ## 4.1.3 (October 12, 2021)
18
+
19
+ ### pack
20
+
21
+ * Removed `sanitize.css` dependency.
22
+ * Updated CLI dependency of `postcss` related modules including `postcss-normalize` 10.0.1.
23
+
24
+ ### lint
25
+
26
+ * Enabled `testing-library` lint rules.
27
+
28
+ ## 4.1.2 (September 29, 2021)
29
+
30
+ ### pack
31
+
32
+ * Added `sanitize.css` dependency.
33
+
1
34
  ## 4.1.1 (August 27, 2021)
2
35
 
3
36
  * No significant changes.
@@ -6,11 +6,6 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
7
7
  <title><%= htmlWebpackPlugin.options.title %></title>
8
8
  <script src="customizations/custom_skin.js"></script>
9
- <script>
10
- window.addEventListener('DOMContentLoaded', () => {
11
- document.querySelector('.sandstone-theme').classList.add(window && window.CUSTOM_SKIN || 'neutral');
12
- });
13
- </script>
14
9
  <link rel="stylesheet" href="customizations/custom_skin.css">
15
10
  </head>
16
11
  <body>
@@ -116,11 +116,8 @@ module.exports = function (env) {
116
116
  // package.json
117
117
  loader: require.resolve('postcss-loader'),
118
118
  options: {
119
- // https://webpack.js.org/guides/migrating/#complex-options
120
- ident: 'postcss',
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
  ];