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 +6 -0
- package/context/configSchema.js +5 -1
- package/package.json +1 -1
- package/sku-types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/context/configSchema.js
CHANGED
|
@@ -9,7 +9,11 @@ const languagesToCompile = {
|
|
|
9
9
|
{ type: 'string' },
|
|
10
10
|
{
|
|
11
11
|
type: 'object',
|
|
12
|
-
|
|
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
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**
|