sku 11.6.0 → 11.6.1

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,11 @@
1
1
  # sku
2
2
 
3
+ ## 11.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix transpilation of typescript-specific class keywords ([#714](https://github.com/seek-oss/sku/pull/714))
8
+
3
9
  ## 11.6.0
4
10
 
5
11
  ### Minor Changes
@@ -58,6 +58,13 @@ module.exports = ({
58
58
  }
59
59
 
60
60
  const presets = [
61
+ [
62
+ require.resolve('@babel/preset-env'),
63
+ {
64
+ targets: browserslist,
65
+ shippedProposals: true,
66
+ },
67
+ ],
61
68
  lang === 'ts'
62
69
  ? [
63
70
  require.resolve('@babel/preset-typescript'),
@@ -67,13 +74,6 @@ module.exports = ({
67
74
  },
68
75
  ]
69
76
  : null,
70
- [
71
- require.resolve('@babel/preset-env'),
72
- {
73
- targets: browserslist,
74
- shippedProposals: true,
75
- },
76
- ],
77
77
  [
78
78
  require.resolve('@babel/preset-react'),
79
79
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sku",
3
- "version": "11.6.0",
3
+ "version": "11.6.1",
4
4
  "description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -177,7 +177,7 @@
177
177
  "@vocab/react": "^1.0.1",
178
178
  "assert": "^2.0.0",
179
179
  "async-disk-cache": "^2.1.0",
180
- "braid-design-system": "^30.0.2",
180
+ "braid-design-system": "^31.0.0",
181
181
  "child-process-promise": "^2.2.1",
182
182
  "css": "^3.0.0",
183
183
  "diffable-html": "^4.0.0",
@@ -189,7 +189,7 @@
189
189
  "jsonc-parser": "^3.0.0",
190
190
  "node-dir": "^0.1.17",
191
191
  "node-fetch": "^2.6.1",
192
- "puppeteer": "^18.0.5",
192
+ "puppeteer": "^19.0.0",
193
193
  "react": "^17.0.1",
194
194
  "react-dom": "^17.0.1",
195
195
  "react-helmet": "^6.1.0",