sku 11.3.2 → 11.3.3
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,5 +1,17 @@
|
|
|
1
1
|
# sku
|
|
2
2
|
|
|
3
|
+
## 11.3.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Exclude playroom from vanilla-extract pipeline ([#682](https://github.com/seek-oss/sku/pull/682))
|
|
8
|
+
|
|
9
|
+
TL;DR Only affects consumers using running Playroom along side sku — i.e. Braid.
|
|
10
|
+
|
|
11
|
+
Due to the current pattern used for the virtual file paths of vanilla-extract's generated stylesheets, we are manually excluding Playroom’s vanilla-extract styles.
|
|
12
|
+
|
|
13
|
+
In the future, we are planning to use more realistic virtual file paths, which should honour the default handling of include/exclude path matching and make this work around no longer necessary.
|
|
14
|
+
|
|
3
15
|
## 11.3.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -152,6 +152,10 @@ class SkuWebpackPlugin {
|
|
|
152
152
|
{
|
|
153
153
|
// All CSS created by vanilla-extract
|
|
154
154
|
test: /\.vanilla.css$/i,
|
|
155
|
+
// Don't process vanilla files from Playroom as they are handled separately.
|
|
156
|
+
// Virtual file paths will look more realistic in the future allowing
|
|
157
|
+
// more standard handling of include/exclude path matching.
|
|
158
|
+
exclude: /node_modules\/playroom/,
|
|
155
159
|
use: makeVanillaCssLoaders({
|
|
156
160
|
isProductionBuild,
|
|
157
161
|
MiniCssExtractPlugin,
|