sku 11.2.2 → 11.2.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 +11 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# sku
|
|
2
2
|
|
|
3
|
+
## 11.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Prevents typescript from being upgraded to 4.5.x ([#662](https://github.com/seek-oss/sku/pull/662))
|
|
8
|
+
|
|
9
|
+
Typescript 4.5 has caused a lot of issues with packages included with sku (braid, vanilla-extract) that are caused by a regression that's been introduced in the type checker.
|
|
10
|
+
It seems to be fixed in 4.6.0-dev, but that won't be available until late February.
|
|
11
|
+
|
|
12
|
+
To prevent things blowing up in the meantime, the version of typescript has been update to keep it below 4.5, at least until a patch is released in 4.5
|
|
13
|
+
|
|
3
14
|
## 11.2.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sku",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.3",
|
|
4
4
|
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"traverse": "^0.6.6",
|
|
152
152
|
"treat": "^2.0.4",
|
|
153
153
|
"tree-kill": "^1.2.1",
|
|
154
|
-
"typescript": "
|
|
154
|
+
"typescript": ">=4.1.3 <4.5.0",
|
|
155
155
|
"validate-npm-package-name": "^3.0.0",
|
|
156
156
|
"webpack": "^5.47.1",
|
|
157
157
|
"webpack-bundle-analyzer": "^4.4.2",
|