houdini-svelte 2.1.15 → 2.1.16
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/build/plugin-cjs/index.js +2 -4
- package/build/plugin-esm/index.js +2 -4
- package/build/preprocess-cjs/index.js +21 -3
- package/build/preprocess-esm/index.js +21 -3
- package/build/runtime/types.d.ts +1 -1
- package/build/runtime-cjs/types.d.ts +1 -1
- package/build/runtime-esm/types.d.ts +1 -1
- package/build/test-cjs/index.js +28 -7
- package/build/test-esm/index.js +28 -7
- package/package.json +2 -2
|
@@ -152591,9 +152591,7 @@ import type { ${functionImportsToBring.join(
|
|
|
152591
152591
|
", "
|
|
152592
152592
|
)} } from '${houdiniRelative}/plugins/houdini-svelte/runtime/types';` : "";
|
|
152593
152593
|
typeImports = typeImports.concat(functionImports).concat(layoutTypeImports).concat(pageTypeImports).concat(componentQueryTypeImports);
|
|
152594
|
-
|
|
152595
|
-
const pageParams = `${pageQueries.length > 0 && !utilityTypes.includes("PageParams") ? "\ntype PageParams = PageLoadEvent['params'];" : ""}`;
|
|
152596
|
-
utilityTypes = utilityTypes.concat(layoutParams).concat(pageParams).replaceAll(/\$types\.js/gm, "$houdini");
|
|
152594
|
+
utilityTypes = utilityTypes.replaceAll(/\$types\.js/gm, "$houdini");
|
|
152597
152595
|
typeExports = typeExports.concat(append_loadInput([...layoutQueries, ...pageQueries])).concat(layout_append_beforeLoad).concat(page_append_beforeLoad).concat(layout_append_afterLoad).concat(page_append_afterLoad).concat(layout_append_onError).concat(page_append_onError).concat(layout_append_VariablesFunction).concat(page_append_VariablesFunction).concat(component_append_VariablesFunction).replace(
|
|
152598
152596
|
/(?<=LayoutData = )([\s\S]*?)(?=;)/,
|
|
152599
152597
|
`Expand<$1 & { ${layoutQueries.map((query) => {
|
|
@@ -152674,7 +152672,7 @@ function append_VariablesFunction(type, filepath, config, queries) {
|
|
|
152674
152672
|
return `
|
|
152675
152673
|
export type ${config.variableFunctionName(
|
|
152676
152674
|
name
|
|
152677
|
-
)} = VariableFunction<${type}
|
|
152675
|
+
)} = VariableFunction<${type}LoadEvent, ${input_type}>;`;
|
|
152678
152676
|
}).join("\n");
|
|
152679
152677
|
}
|
|
152680
152678
|
function append_ComponentVariablesFunction(filepath, config, queries) {
|
|
@@ -152586,9 +152586,7 @@ import type { ${functionImportsToBring.join(
|
|
|
152586
152586
|
", "
|
|
152587
152587
|
)} } from '${houdiniRelative}/plugins/houdini-svelte/runtime/types';` : "";
|
|
152588
152588
|
typeImports = typeImports.concat(functionImports).concat(layoutTypeImports).concat(pageTypeImports).concat(componentQueryTypeImports);
|
|
152589
|
-
|
|
152590
|
-
const pageParams = `${pageQueries.length > 0 && !utilityTypes.includes("PageParams") ? "\ntype PageParams = PageLoadEvent['params'];" : ""}`;
|
|
152591
|
-
utilityTypes = utilityTypes.concat(layoutParams).concat(pageParams).replaceAll(/\$types\.js/gm, "$houdini");
|
|
152589
|
+
utilityTypes = utilityTypes.replaceAll(/\$types\.js/gm, "$houdini");
|
|
152592
152590
|
typeExports = typeExports.concat(append_loadInput([...layoutQueries, ...pageQueries])).concat(layout_append_beforeLoad).concat(page_append_beforeLoad).concat(layout_append_afterLoad).concat(page_append_afterLoad).concat(layout_append_onError).concat(page_append_onError).concat(layout_append_VariablesFunction).concat(page_append_VariablesFunction).concat(component_append_VariablesFunction).replace(
|
|
152593
152591
|
/(?<=LayoutData = )([\s\S]*?)(?=;)/,
|
|
152594
152592
|
`Expand<$1 & { ${layoutQueries.map((query) => {
|
|
@@ -152669,7 +152667,7 @@ function append_VariablesFunction(type, filepath, config, queries) {
|
|
|
152669
152667
|
return `
|
|
152670
152668
|
export type ${config.variableFunctionName(
|
|
152671
152669
|
name
|
|
152672
|
-
)} = VariableFunction<${type}
|
|
152670
|
+
)} = VariableFunction<${type}LoadEvent, ${input_type}>;`;
|
|
152673
152671
|
}).join("\n");
|
|
152674
152672
|
}
|
|
152675
152673
|
function append_ComponentVariablesFunction(filepath, config, queries) {
|
|
@@ -85486,11 +85486,17 @@ var Config = class {
|
|
|
85486
85486
|
const include = [`src/**/*{${extensions.join(",")}}`];
|
|
85487
85487
|
for (const plugin2 of this.plugins) {
|
|
85488
85488
|
const runtimeDir = this.pluginRuntimeSource(plugin2);
|
|
85489
|
-
|
|
85489
|
+
const staticDir = this.pluginStaticRuntimeSource(plugin2);
|
|
85490
|
+
if (!runtimeDir && !staticDir) {
|
|
85490
85491
|
continue;
|
|
85491
85492
|
}
|
|
85492
|
-
const
|
|
85493
|
-
|
|
85493
|
+
for (const dir of [runtimeDir, staticDir]) {
|
|
85494
|
+
if (!dir) {
|
|
85495
|
+
continue;
|
|
85496
|
+
}
|
|
85497
|
+
const includePath = relative(this.projectRoot, dir);
|
|
85498
|
+
include.push(`${includePath}/**/*{${extensions.join(",")}}`);
|
|
85499
|
+
}
|
|
85494
85500
|
}
|
|
85495
85501
|
return include;
|
|
85496
85502
|
}
|
|
@@ -85544,6 +85550,15 @@ var Config = class {
|
|
|
85544
85550
|
typeof plugin2.includeRuntime === "string" ? plugin2.includeRuntime : plugin2.includeRuntime?.[this.module]
|
|
85545
85551
|
);
|
|
85546
85552
|
}
|
|
85553
|
+
pluginStaticRuntimeSource(plugin2) {
|
|
85554
|
+
if (!plugin2.staticRuntime) {
|
|
85555
|
+
return null;
|
|
85556
|
+
}
|
|
85557
|
+
return join2(
|
|
85558
|
+
dirname(plugin2.filepath),
|
|
85559
|
+
typeof plugin2.staticRuntime === "string" ? plugin2.staticRuntime : plugin2.staticRuntime?.[this.module]
|
|
85560
|
+
);
|
|
85561
|
+
}
|
|
85547
85562
|
async sourceFiles() {
|
|
85548
85563
|
return [
|
|
85549
85564
|
...new Set(
|
|
@@ -85728,6 +85743,9 @@ var Config = class {
|
|
|
85728
85743
|
pluginRuntimeDirectory(name) {
|
|
85729
85744
|
return join2(this.pluginDirectory(name), "runtime");
|
|
85730
85745
|
}
|
|
85746
|
+
pluginStaticRuntimeDirectory(name) {
|
|
85747
|
+
return join2(this.pluginDirectory(name), "static");
|
|
85748
|
+
}
|
|
85731
85749
|
get pluginRootDirectory() {
|
|
85732
85750
|
return houdini_mode.is_testing ? "../../../" : join2(this.rootDir, "plugins");
|
|
85733
85751
|
}
|
|
@@ -85483,11 +85483,17 @@ var Config = class {
|
|
|
85483
85483
|
const include = [`src/**/*{${extensions.join(",")}}`];
|
|
85484
85484
|
for (const plugin2 of this.plugins) {
|
|
85485
85485
|
const runtimeDir = this.pluginRuntimeSource(plugin2);
|
|
85486
|
-
|
|
85486
|
+
const staticDir = this.pluginStaticRuntimeSource(plugin2);
|
|
85487
|
+
if (!runtimeDir && !staticDir) {
|
|
85487
85488
|
continue;
|
|
85488
85489
|
}
|
|
85489
|
-
const
|
|
85490
|
-
|
|
85490
|
+
for (const dir of [runtimeDir, staticDir]) {
|
|
85491
|
+
if (!dir) {
|
|
85492
|
+
continue;
|
|
85493
|
+
}
|
|
85494
|
+
const includePath = relative(this.projectRoot, dir);
|
|
85495
|
+
include.push(`${includePath}/**/*{${extensions.join(",")}}`);
|
|
85496
|
+
}
|
|
85491
85497
|
}
|
|
85492
85498
|
return include;
|
|
85493
85499
|
}
|
|
@@ -85541,6 +85547,15 @@ var Config = class {
|
|
|
85541
85547
|
typeof plugin2.includeRuntime === "string" ? plugin2.includeRuntime : plugin2.includeRuntime?.[this.module]
|
|
85542
85548
|
);
|
|
85543
85549
|
}
|
|
85550
|
+
pluginStaticRuntimeSource(plugin2) {
|
|
85551
|
+
if (!plugin2.staticRuntime) {
|
|
85552
|
+
return null;
|
|
85553
|
+
}
|
|
85554
|
+
return join2(
|
|
85555
|
+
dirname(plugin2.filepath),
|
|
85556
|
+
typeof plugin2.staticRuntime === "string" ? plugin2.staticRuntime : plugin2.staticRuntime?.[this.module]
|
|
85557
|
+
);
|
|
85558
|
+
}
|
|
85544
85559
|
async sourceFiles() {
|
|
85545
85560
|
return [
|
|
85546
85561
|
...new Set(
|
|
@@ -85725,6 +85740,9 @@ var Config = class {
|
|
|
85725
85740
|
pluginRuntimeDirectory(name) {
|
|
85726
85741
|
return join2(this.pluginDirectory(name), "runtime");
|
|
85727
85742
|
}
|
|
85743
|
+
pluginStaticRuntimeDirectory(name) {
|
|
85744
|
+
return join2(this.pluginDirectory(name), "static");
|
|
85745
|
+
}
|
|
85728
85746
|
get pluginRootDirectory() {
|
|
85729
85747
|
return houdini_mode.is_testing ? "../../../" : join2(this.rootDir, "plugins");
|
|
85730
85748
|
}
|
package/build/runtime/types.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export type QueryInputs<_Data> = FetchQueryResult<_Data> & {
|
|
|
7
7
|
[key: string]: any;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
export type VariableFunction<
|
|
10
|
+
export type VariableFunction<_Event extends LoadEvent, _Input> = (event: _Event) => _Input | Promise<_Input>;
|
|
11
11
|
export type AfterLoadFunction<_Params extends Record<string, string>, _Data, _Input, _ReturnType extends Record<string, any>> = (args: {
|
|
12
12
|
event: LoadEvent<_Params>;
|
|
13
13
|
data: _Data;
|
|
@@ -7,7 +7,7 @@ export type QueryInputs<_Data> = FetchQueryResult<_Data> & {
|
|
|
7
7
|
[key: string]: any;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
export type VariableFunction<
|
|
10
|
+
export type VariableFunction<_Event extends LoadEvent, _Input> = (event: _Event) => _Input | Promise<_Input>;
|
|
11
11
|
export type AfterLoadFunction<_Params extends Record<string, string>, _Data, _Input, _ReturnType extends Record<string, any>> = (args: {
|
|
12
12
|
event: LoadEvent<_Params>;
|
|
13
13
|
data: _Data;
|
|
@@ -7,7 +7,7 @@ export type QueryInputs<_Data> = FetchQueryResult<_Data> & {
|
|
|
7
7
|
[key: string]: any;
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
|
-
export type VariableFunction<
|
|
10
|
+
export type VariableFunction<_Event extends LoadEvent, _Input> = (event: _Event) => _Input | Promise<_Input>;
|
|
11
11
|
export type AfterLoadFunction<_Params extends Record<string, string>, _Data, _Input, _ReturnType extends Record<string, any>> = (args: {
|
|
12
12
|
event: LoadEvent<_Params>;
|
|
13
13
|
data: _Data;
|
package/build/test-cjs/index.js
CHANGED
|
@@ -146914,6 +146914,11 @@ async function writeIndexFile2(config, docs) {
|
|
|
146914
146914
|
module: relative22(config.pluginRuntimeDirectory(plugin2.name))
|
|
146915
146915
|
});
|
|
146916
146916
|
}
|
|
146917
|
+
if (plugin2.staticRuntime) {
|
|
146918
|
+
body += exportStar({
|
|
146919
|
+
module: relative22(config.pluginStaticRuntimeDirectory(plugin2.name))
|
|
146920
|
+
});
|
|
146921
|
+
}
|
|
146917
146922
|
}
|
|
146918
146923
|
await fs_exports2.writeFile(path_exports2.join(config.rootDir, "index.js"), body);
|
|
146919
146924
|
}
|
|
@@ -210952,11 +210957,17 @@ var Config = class {
|
|
|
210952
210957
|
const include = [`src/**/*{${extensions.join(",")}}`];
|
|
210953
210958
|
for (const plugin2 of this.plugins) {
|
|
210954
210959
|
const runtimeDir = this.pluginRuntimeSource(plugin2);
|
|
210955
|
-
|
|
210960
|
+
const staticDir = this.pluginStaticRuntimeSource(plugin2);
|
|
210961
|
+
if (!runtimeDir && !staticDir) {
|
|
210956
210962
|
continue;
|
|
210957
210963
|
}
|
|
210958
|
-
const
|
|
210959
|
-
|
|
210964
|
+
for (const dir of [runtimeDir, staticDir]) {
|
|
210965
|
+
if (!dir) {
|
|
210966
|
+
continue;
|
|
210967
|
+
}
|
|
210968
|
+
const includePath = relative3(this.projectRoot, dir);
|
|
210969
|
+
include.push(`${includePath}/**/*{${extensions.join(",")}}`);
|
|
210970
|
+
}
|
|
210960
210971
|
}
|
|
210961
210972
|
return include;
|
|
210962
210973
|
}
|
|
@@ -211010,6 +211021,15 @@ var Config = class {
|
|
|
211010
211021
|
typeof plugin2.includeRuntime === "string" ? plugin2.includeRuntime : plugin2.includeRuntime?.[this.module]
|
|
211011
211022
|
);
|
|
211012
211023
|
}
|
|
211024
|
+
pluginStaticRuntimeSource(plugin2) {
|
|
211025
|
+
if (!plugin2.staticRuntime) {
|
|
211026
|
+
return null;
|
|
211027
|
+
}
|
|
211028
|
+
return join4(
|
|
211029
|
+
dirname3(plugin2.filepath),
|
|
211030
|
+
typeof plugin2.staticRuntime === "string" ? plugin2.staticRuntime : plugin2.staticRuntime?.[this.module]
|
|
211031
|
+
);
|
|
211032
|
+
}
|
|
211013
211033
|
async sourceFiles() {
|
|
211014
211034
|
return [
|
|
211015
211035
|
...new Set(
|
|
@@ -211194,6 +211214,9 @@ var Config = class {
|
|
|
211194
211214
|
pluginRuntimeDirectory(name) {
|
|
211195
211215
|
return join4(this.pluginDirectory(name), "runtime");
|
|
211196
211216
|
}
|
|
211217
|
+
pluginStaticRuntimeDirectory(name) {
|
|
211218
|
+
return join4(this.pluginDirectory(name), "static");
|
|
211219
|
+
}
|
|
211197
211220
|
get pluginRootDirectory() {
|
|
211198
211221
|
return houdini_mode3.is_testing ? "../../../" : join4(this.rootDir, "plugins");
|
|
211199
211222
|
}
|
|
@@ -282448,9 +282471,7 @@ import type { ${functionImportsToBring.join(
|
|
|
282448
282471
|
", "
|
|
282449
282472
|
)} } from '${houdiniRelative}/plugins/houdini-svelte/runtime/types';` : "";
|
|
282450
282473
|
typeImports = typeImports.concat(functionImports).concat(layoutTypeImports).concat(pageTypeImports).concat(componentQueryTypeImports);
|
|
282451
|
-
|
|
282452
|
-
const pageParams = `${pageQueries.length > 0 && !utilityTypes.includes("PageParams") ? "\ntype PageParams = PageLoadEvent['params'];" : ""}`;
|
|
282453
|
-
utilityTypes = utilityTypes.concat(layoutParams).concat(pageParams).replaceAll(/\$types\.js/gm, "$houdini");
|
|
282474
|
+
utilityTypes = utilityTypes.replaceAll(/\$types\.js/gm, "$houdini");
|
|
282454
282475
|
typeExports = typeExports.concat(append_loadInput([...layoutQueries, ...pageQueries])).concat(layout_append_beforeLoad).concat(page_append_beforeLoad).concat(layout_append_afterLoad).concat(page_append_afterLoad).concat(layout_append_onError).concat(page_append_onError).concat(layout_append_VariablesFunction).concat(page_append_VariablesFunction).concat(component_append_VariablesFunction).replace(
|
|
282455
282476
|
/(?<=LayoutData = )([\s\S]*?)(?=;)/,
|
|
282456
282477
|
`Expand<$1 & { ${layoutQueries.map((query) => {
|
|
@@ -282531,7 +282552,7 @@ function append_VariablesFunction(type, filepath, config, queries) {
|
|
|
282531
282552
|
return `
|
|
282532
282553
|
export type ${config.variableFunctionName(
|
|
282533
282554
|
name
|
|
282534
|
-
)} = VariableFunction<${type}
|
|
282555
|
+
)} = VariableFunction<${type}LoadEvent, ${input_type}>;`;
|
|
282535
282556
|
}).join("\n");
|
|
282536
282557
|
}
|
|
282537
282558
|
function append_ComponentVariablesFunction(filepath, config, queries) {
|
package/build/test-esm/index.js
CHANGED
|
@@ -146905,6 +146905,11 @@ async function writeIndexFile2(config, docs) {
|
|
|
146905
146905
|
module: relative22(config.pluginRuntimeDirectory(plugin2.name))
|
|
146906
146906
|
});
|
|
146907
146907
|
}
|
|
146908
|
+
if (plugin2.staticRuntime) {
|
|
146909
|
+
body += exportStar({
|
|
146910
|
+
module: relative22(config.pluginStaticRuntimeDirectory(plugin2.name))
|
|
146911
|
+
});
|
|
146912
|
+
}
|
|
146908
146913
|
}
|
|
146909
146914
|
await fs_exports2.writeFile(path_exports2.join(config.rootDir, "index.js"), body);
|
|
146910
146915
|
}
|
|
@@ -210942,11 +210947,17 @@ var Config = class {
|
|
|
210942
210947
|
const include = [`src/**/*{${extensions.join(",")}}`];
|
|
210943
210948
|
for (const plugin2 of this.plugins) {
|
|
210944
210949
|
const runtimeDir = this.pluginRuntimeSource(plugin2);
|
|
210945
|
-
|
|
210950
|
+
const staticDir = this.pluginStaticRuntimeSource(plugin2);
|
|
210951
|
+
if (!runtimeDir && !staticDir) {
|
|
210946
210952
|
continue;
|
|
210947
210953
|
}
|
|
210948
|
-
const
|
|
210949
|
-
|
|
210954
|
+
for (const dir of [runtimeDir, staticDir]) {
|
|
210955
|
+
if (!dir) {
|
|
210956
|
+
continue;
|
|
210957
|
+
}
|
|
210958
|
+
const includePath = relative3(this.projectRoot, dir);
|
|
210959
|
+
include.push(`${includePath}/**/*{${extensions.join(",")}}`);
|
|
210960
|
+
}
|
|
210950
210961
|
}
|
|
210951
210962
|
return include;
|
|
210952
210963
|
}
|
|
@@ -211000,6 +211011,15 @@ var Config = class {
|
|
|
211000
211011
|
typeof plugin2.includeRuntime === "string" ? plugin2.includeRuntime : plugin2.includeRuntime?.[this.module]
|
|
211001
211012
|
);
|
|
211002
211013
|
}
|
|
211014
|
+
pluginStaticRuntimeSource(plugin2) {
|
|
211015
|
+
if (!plugin2.staticRuntime) {
|
|
211016
|
+
return null;
|
|
211017
|
+
}
|
|
211018
|
+
return join4(
|
|
211019
|
+
dirname3(plugin2.filepath),
|
|
211020
|
+
typeof plugin2.staticRuntime === "string" ? plugin2.staticRuntime : plugin2.staticRuntime?.[this.module]
|
|
211021
|
+
);
|
|
211022
|
+
}
|
|
211003
211023
|
async sourceFiles() {
|
|
211004
211024
|
return [
|
|
211005
211025
|
...new Set(
|
|
@@ -211184,6 +211204,9 @@ var Config = class {
|
|
|
211184
211204
|
pluginRuntimeDirectory(name) {
|
|
211185
211205
|
return join4(this.pluginDirectory(name), "runtime");
|
|
211186
211206
|
}
|
|
211207
|
+
pluginStaticRuntimeDirectory(name) {
|
|
211208
|
+
return join4(this.pluginDirectory(name), "static");
|
|
211209
|
+
}
|
|
211187
211210
|
get pluginRootDirectory() {
|
|
211188
211211
|
return houdini_mode3.is_testing ? "../../../" : join4(this.rootDir, "plugins");
|
|
211189
211212
|
}
|
|
@@ -282437,9 +282460,7 @@ import type { ${functionImportsToBring.join(
|
|
|
282437
282460
|
", "
|
|
282438
282461
|
)} } from '${houdiniRelative}/plugins/houdini-svelte/runtime/types';` : "";
|
|
282439
282462
|
typeImports = typeImports.concat(functionImports).concat(layoutTypeImports).concat(pageTypeImports).concat(componentQueryTypeImports);
|
|
282440
|
-
|
|
282441
|
-
const pageParams = `${pageQueries.length > 0 && !utilityTypes.includes("PageParams") ? "\ntype PageParams = PageLoadEvent['params'];" : ""}`;
|
|
282442
|
-
utilityTypes = utilityTypes.concat(layoutParams).concat(pageParams).replaceAll(/\$types\.js/gm, "$houdini");
|
|
282463
|
+
utilityTypes = utilityTypes.replaceAll(/\$types\.js/gm, "$houdini");
|
|
282443
282464
|
typeExports = typeExports.concat(append_loadInput([...layoutQueries, ...pageQueries])).concat(layout_append_beforeLoad).concat(page_append_beforeLoad).concat(layout_append_afterLoad).concat(page_append_afterLoad).concat(layout_append_onError).concat(page_append_onError).concat(layout_append_VariablesFunction).concat(page_append_VariablesFunction).concat(component_append_VariablesFunction).replace(
|
|
282444
282465
|
/(?<=LayoutData = )([\s\S]*?)(?=;)/,
|
|
282445
282466
|
`Expand<$1 & { ${layoutQueries.map((query) => {
|
|
@@ -282520,7 +282541,7 @@ function append_VariablesFunction(type, filepath, config, queries) {
|
|
|
282520
282541
|
return `
|
|
282521
282542
|
export type ${config.variableFunctionName(
|
|
282522
282543
|
name
|
|
282523
|
-
)} = VariableFunction<${type}
|
|
282544
|
+
)} = VariableFunction<${type}LoadEvent, ${input_type}>;`;
|
|
282524
282545
|
}).join("\n");
|
|
282525
282546
|
}
|
|
282526
282547
|
function append_ComponentVariablesFunction(filepath, config, queries) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "houdini-svelte",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.16",
|
|
4
4
|
"description": "The svelte plugin for houdini",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"typescript",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"graphql": "^15.8.0",
|
|
31
31
|
"recast": "^0.23.1",
|
|
32
32
|
"rollup": "^4.28.1",
|
|
33
|
-
"houdini": "^1.5.
|
|
33
|
+
"houdini": "^1.5.6"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@sveltejs/kit": "^2.9.0",
|