sku 11.3.3 → 11.4.0

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.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - The `languages` sku config value now accepts `readonly` types ([#685](https://github.com/seek-oss/sku/pull/685))
8
+
3
9
  ## 11.3.3
4
10
 
5
11
  ### Patch Changes
@@ -201,7 +201,7 @@ The browser URL to open when running `sku start` or `sku start-ssr`. It will def
201
201
 
202
202
  ## languages
203
203
 
204
- type `Array<string | { name: string }>`
204
+ type `Array<string | { name: string, extends: string }>`
205
205
 
206
206
  The languages your application supports.
207
207
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sku",
3
- "version": "11.3.3",
3
+ "version": "11.4.0",
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; extends?: string }>;
195
+ languages?: ReadonlyArray<string | { name: string; extends?: string }>;
196
196
 
197
197
  /**
198
198
  * **Only for libraries**