sku 11.2.5 → 11.2.6

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.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Add "extends" to languages type definition ([#668](https://github.com/seek-oss/sku/pull/668))
8
+
3
9
  ## 11.2.5
4
10
 
5
11
  ### Patch Changes
@@ -9,7 +9,11 @@ const languagesToCompile = {
9
9
  { type: 'string' },
10
10
  {
11
11
  type: 'object',
12
- props: { name: { type: 'string', extends: { type: 'string' } } },
12
+ strict: true,
13
+ props: {
14
+ name: { type: 'string' },
15
+ extends: { type: 'string', optional: true },
16
+ },
13
17
  },
14
18
  ],
15
19
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sku",
3
- "version": "11.2.5",
3
+ "version": "11.2.6",
4
4
  "description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
5
5
  "main": "index.js",
6
6
  "bin": {
package/sku-types.d.ts CHANGED
@@ -192,7 +192,7 @@ export interface SkuConfig {
192
192
  *
193
193
  * @link https://seek-oss.github.io/sku/#/./docs/configuration?id=languages
194
194
  */
195
- languages?: Array<string | { name: string }>;
195
+ languages?: Array<string | { name: string; extends?: string }>;
196
196
 
197
197
  /**
198
198
  * **Only for libraries**