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 +6 -0
- package/docs/docs/configuration.md +1 -1
- package/package.json +1 -1
- package/sku-types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
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?:
|
|
195
|
+
languages?: ReadonlyArray<string | { name: string; extends?: string }>;
|
|
196
196
|
|
|
197
197
|
/**
|
|
198
198
|
* **Only for libraries**
|