@enact/cli 4.1.0 → 4.1.5
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 +31 -0
- package/config/custom-skin-template.ejs +2 -7
- package/config/webpack.config.js +4 -5
- package/npm-shrinkwrap.json +16219 -0
- package/package.json +8 -6
package/.travis.yml
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## 4.1.5 (November 29, 2021)
|
|
2
|
+
|
|
3
|
+
* No significant changes.
|
|
4
|
+
|
|
5
|
+
## 4.1.4 (October 13, 2021)
|
|
6
|
+
|
|
7
|
+
### lint
|
|
8
|
+
|
|
9
|
+
* Added `eslint-plugin-testing-library` as a dependency.
|
|
10
|
+
|
|
11
|
+
## 4.1.3 (October 12, 2021)
|
|
12
|
+
|
|
13
|
+
### pack
|
|
14
|
+
|
|
15
|
+
* Removed `sanitize.css` dependency.
|
|
16
|
+
* Updated CLI dependency of `postcss` related modules including `postcss-normalize` 10.0.1.
|
|
17
|
+
|
|
18
|
+
### lint
|
|
19
|
+
|
|
20
|
+
* Enabled `testing-library` lint rules.
|
|
21
|
+
|
|
22
|
+
## 4.1.2 (September 29, 2021)
|
|
23
|
+
|
|
24
|
+
### pack
|
|
25
|
+
|
|
26
|
+
* Added `sanitize.css` dependency.
|
|
27
|
+
|
|
28
|
+
## 4.1.1 (August 27, 2021)
|
|
29
|
+
|
|
30
|
+
* No significant changes.
|
|
31
|
+
|
|
1
32
|
## 4.1.0 (August 18, 2021)
|
|
2
33
|
|
|
3
34
|
### test
|
|
@@ -5,13 +5,8 @@
|
|
|
5
5
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
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
|
-
<script src="custom_skin.js"></script>
|
|
9
|
-
<
|
|
10
|
-
window.addEventListener('DOMContentLoaded', () => {
|
|
11
|
-
document.querySelector('.sandstone-theme').classList.add(window && window.CUSTOM_SKIN || 'neutral');
|
|
12
|
-
});
|
|
13
|
-
</script>
|
|
14
|
-
<link rel="stylesheet" href="custom_skin.css">
|
|
8
|
+
<script src="customizations/custom_skin.js"></script>
|
|
9
|
+
<link rel="stylesheet" href="customizations/custom_skin.css">
|
|
15
10
|
</head>
|
|
16
11
|
<body>
|
|
17
12
|
<div id="root"></div>
|
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
|
];
|