sku 11.4.2 → 11.4.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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # sku
2
2
 
3
+ ## 11.4.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Roll back typescript version to one that doesn't break vanilla types ([#698](https://github.com/seek-oss/sku/pull/698))
8
+
9
+ ## 11.4.4
10
+
11
+ ### Patch Changes
12
+
13
+ - Series of small fixes ([#696](https://github.com/seek-oss/sku/pull/696))
14
+ - Update the SkuConfig type to accept `ReadonlyArray`s, to allow for passing in of `as const` arrays.
15
+ - Allowed TypeScript versions newer than 4.5. There were issues in 4.5 that broke vanilla-extract and braid, that have been fixed in 4.6.
16
+ - Updated the `lib` of tsconfig to `es2019`, to allow access to all that flatMappy goodness.
17
+
18
+ ## 11.4.3
19
+
20
+ ### Patch Changes
21
+
22
+ - Update deps ([#692](https://github.com/seek-oss/sku/pull/692))
23
+
3
24
  ## 11.4.2
4
25
 
5
26
  ### Patch Changes
@@ -30,7 +30,7 @@ module.exports = () => {
30
30
  noUnusedLocals: true,
31
31
  strict: true,
32
32
  jsx: 'preserve',
33
- lib: ['dom', 'es2015'],
33
+ lib: ['dom', 'es2019'],
34
34
  target: 'es5',
35
35
  },
36
36
  include: includePaths,
@@ -110,7 +110,7 @@ This function provides a way to override the webpack config after sku has create
110
110
 
111
111
  Ideally, this setting is not needed and only used for experimenting/debugging. If you require webpack features not currently supported by sku please speak to the `sku-support` group.
112
112
 
113
- Reliance on this setting will cause issues when upgrading sku as any custom settings may break at anytime. You've been warned!
113
+ Reliance on this setting will cause issues when upgrading sku as any custom settings may break at any time. You've been warned!
114
114
 
115
115
  Example:
116
116
 
@@ -263,7 +263,7 @@ Default: `public`
263
263
 
264
264
  A folder of public assets to be copied into the `target` directory after `sku build` or `sku build-ssr`.
265
265
 
266
- > Caution: All assets should ideally be imported through the source code to ensure they are named correctly for long term caching. You may run into caching issues using this option. It may be removed in future.
266
+ > Caution: All assets should ideally be imported through the source code to ensure they are named correctly for long term caching. You may run into caching issues using this option. It may be removed in the future.
267
267
 
268
268
  ## publicPath
269
269
 
package/docs/package.json CHANGED
@@ -8,6 +8,6 @@
8
8
  "author": "SEEK",
9
9
  "license": "MIT",
10
10
  "devDependencies": {
11
- "docsify-cli": "^4.3.0"
11
+ "docsify-cli": "^4.4.4"
12
12
  }
13
13
  }