@powerlines/core 0.2.19 → 0.2.20
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.
|
@@ -22,11 +22,13 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
22
22
|
const ctx = context;
|
|
23
23
|
return {
|
|
24
24
|
async resolveId(id, importer, opts = { isEntry: false }) {
|
|
25
|
+
const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
|
|
26
|
+
const normalizedImporter = importer ? importer.replace(VIRTUAL_MODULE_PREFIX_REGEX, "") : void 0;
|
|
25
27
|
let result = await ctx.$$internal.callHook("resolveId", {
|
|
26
28
|
sequential: true,
|
|
27
29
|
result: "first",
|
|
28
30
|
order: "pre"
|
|
29
|
-
},
|
|
31
|
+
}, normalizedId, normalizedImporter, opts);
|
|
30
32
|
if ((0, __stryke_type_checks_is_set_string.isSetString)(result)) return result;
|
|
31
33
|
else if ((0, __stryke_type_checks_is_set_object.isSetObject)(result)) return {
|
|
32
34
|
...result,
|
|
@@ -36,13 +38,13 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
36
38
|
sequential: true,
|
|
37
39
|
result: "first",
|
|
38
40
|
order: "normal"
|
|
39
|
-
},
|
|
41
|
+
}, normalizedId, normalizedImporter, opts);
|
|
40
42
|
if ((0, __stryke_type_checks_is_set_string.isSetString)(result)) return result;
|
|
41
43
|
else if ((0, __stryke_type_checks_is_set_object.isSetObject)(result)) return {
|
|
42
44
|
...result,
|
|
43
45
|
id: result.virtual && options.prefix !== false ? `${VIRTUAL_MODULE_PREFIX}${result.id}` : result.id
|
|
44
46
|
};
|
|
45
|
-
result = await ctx.resolve(
|
|
47
|
+
result = await ctx.resolve(normalizedId, normalizedImporter, {
|
|
46
48
|
isFile: true,
|
|
47
49
|
...opts
|
|
48
50
|
});
|
|
@@ -54,7 +56,7 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
54
56
|
sequential: true,
|
|
55
57
|
result: "first",
|
|
56
58
|
order: "post"
|
|
57
|
-
},
|
|
59
|
+
}, normalizedId, normalizedImporter, opts);
|
|
58
60
|
if ((0, __stryke_type_checks_is_set_string.isSetString)(result)) return result;
|
|
59
61
|
else if ((0, __stryke_type_checks_is_set_object.isSetObject)(result)) return {
|
|
60
62
|
...result,
|
|
@@ -65,26 +67,26 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
65
67
|
load: {
|
|
66
68
|
filter: options.prefix !== false ? { id: { include: [VIRTUAL_MODULE_PREFIX_REGEX] } } : void 0,
|
|
67
69
|
async handler(id) {
|
|
68
|
-
const
|
|
70
|
+
const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
|
|
69
71
|
let result = await ctx.$$internal.callHook("load", {
|
|
70
72
|
sequential: true,
|
|
71
73
|
result: "first",
|
|
72
74
|
order: "pre"
|
|
73
|
-
},
|
|
75
|
+
}, normalizedId);
|
|
74
76
|
if (result) return result;
|
|
75
77
|
result = await ctx.$$internal.callHook("load", {
|
|
76
78
|
sequential: true,
|
|
77
79
|
result: "first",
|
|
78
80
|
order: "normal"
|
|
79
|
-
},
|
|
81
|
+
}, normalizedId);
|
|
80
82
|
if (result) return result;
|
|
81
|
-
result = await ctx.load(
|
|
83
|
+
result = await ctx.load(normalizedId);
|
|
82
84
|
if (result) return result;
|
|
83
85
|
return ctx.$$internal.callHook("load", {
|
|
84
86
|
sequential: true,
|
|
85
87
|
result: "first",
|
|
86
88
|
order: "post"
|
|
87
|
-
},
|
|
89
|
+
}, normalizedId);
|
|
88
90
|
}
|
|
89
91
|
}
|
|
90
92
|
};
|
|
@@ -21,11 +21,13 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
21
21
|
const ctx = context;
|
|
22
22
|
return {
|
|
23
23
|
async resolveId(id, importer, opts = { isEntry: false }) {
|
|
24
|
+
const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
|
|
25
|
+
const normalizedImporter = importer ? importer.replace(VIRTUAL_MODULE_PREFIX_REGEX, "") : void 0;
|
|
24
26
|
let result = await ctx.$$internal.callHook("resolveId", {
|
|
25
27
|
sequential: true,
|
|
26
28
|
result: "first",
|
|
27
29
|
order: "pre"
|
|
28
|
-
},
|
|
30
|
+
}, normalizedId, normalizedImporter, opts);
|
|
29
31
|
if (isSetString(result)) return result;
|
|
30
32
|
else if (isSetObject(result)) return {
|
|
31
33
|
...result,
|
|
@@ -35,13 +37,13 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
35
37
|
sequential: true,
|
|
36
38
|
result: "first",
|
|
37
39
|
order: "normal"
|
|
38
|
-
},
|
|
40
|
+
}, normalizedId, normalizedImporter, opts);
|
|
39
41
|
if (isSetString(result)) return result;
|
|
40
42
|
else if (isSetObject(result)) return {
|
|
41
43
|
...result,
|
|
42
44
|
id: result.virtual && options.prefix !== false ? `${VIRTUAL_MODULE_PREFIX}${result.id}` : result.id
|
|
43
45
|
};
|
|
44
|
-
result = await ctx.resolve(
|
|
46
|
+
result = await ctx.resolve(normalizedId, normalizedImporter, {
|
|
45
47
|
isFile: true,
|
|
46
48
|
...opts
|
|
47
49
|
});
|
|
@@ -53,7 +55,7 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
53
55
|
sequential: true,
|
|
54
56
|
result: "first",
|
|
55
57
|
order: "post"
|
|
56
|
-
},
|
|
58
|
+
}, normalizedId, normalizedImporter, opts);
|
|
57
59
|
if (isSetString(result)) return result;
|
|
58
60
|
else if (isSetObject(result)) return {
|
|
59
61
|
...result,
|
|
@@ -64,26 +66,26 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
|
|
|
64
66
|
load: {
|
|
65
67
|
filter: options.prefix !== false ? { id: { include: [VIRTUAL_MODULE_PREFIX_REGEX] } } : void 0,
|
|
66
68
|
async handler(id) {
|
|
67
|
-
const
|
|
69
|
+
const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
|
|
68
70
|
let result = await ctx.$$internal.callHook("load", {
|
|
69
71
|
sequential: true,
|
|
70
72
|
result: "first",
|
|
71
73
|
order: "pre"
|
|
72
|
-
},
|
|
74
|
+
}, normalizedId);
|
|
73
75
|
if (result) return result;
|
|
74
76
|
result = await ctx.$$internal.callHook("load", {
|
|
75
77
|
sequential: true,
|
|
76
78
|
result: "first",
|
|
77
79
|
order: "normal"
|
|
78
|
-
},
|
|
80
|
+
}, normalizedId);
|
|
79
81
|
if (result) return result;
|
|
80
|
-
result = await ctx.load(
|
|
82
|
+
result = await ctx.load(normalizedId);
|
|
81
83
|
if (result) return result;
|
|
82
84
|
return ctx.$$internal.callHook("load", {
|
|
83
85
|
sequential: true,
|
|
84
86
|
result: "first",
|
|
85
87
|
order: "post"
|
|
86
|
-
},
|
|
88
|
+
}, normalizedId);
|
|
87
89
|
}
|
|
88
90
|
}
|
|
89
91
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module-resolution.mjs","names":[],"sources":["../../../src/lib/unplugin/module-resolution.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { LoadResult } from \"rollup\";\nimport type {\n UnpluginBuildContext,\n UnpluginContext,\n UnpluginOptions\n} from \"unplugin\";\nimport { UNSAFE_PluginContext } from \"../../types/_internal\";\nimport { PluginContext, ResolveResult } from \"../../types/context\";\n\nexport interface CreateUnpluginModuleResolutionFunctionsOptions {\n /**\n * An indicator of whether to prefix virtual module IDs with a specific string. This is useful for ensuring that virtual modules are only processed by the plugin and not by other plugins or the bundler itself.\n *\n * @remarks\n * - If set to `true`, virtual module IDs will be prefixed with the string `__powerlines-virtual:`.\n * - If set to `false`, no prefix will be added to virtual module IDs.\n *\n * @defaultValue true\n */\n prefix?: boolean;\n}\n\nconst VIRTUAL_MODULE_PREFIX = \"__powerlines-virtual:\";\nconst VIRTUAL_MODULE_PREFIX_REGEX = /^__powerlines-virtual:/;\n\n/**\n * Creates the module resolution hook functions for a Powerlines unplugin plugin instance.\n *\n * @remarks\n * This includes the `resolveId` and `load` hooks.\n *\n * @see https://rollupjs.org/plugin-development/#resolveid\n * @see https://rollupjs.org/plugin-development/#load\n *\n * @param context - The plugin context.\n * @param options - Options for creating the module resolution functions.\n * @returns The module resolution hooks (`resolveId` and `load`).\n */\nexport function createUnpluginModuleResolutionFunctions<\n TContext extends PluginContext = PluginContext\n>(\n context: TContext,\n options: CreateUnpluginModuleResolutionFunctionsOptions = {}\n): Pick<UnpluginOptions, \"resolveId\" | \"load\"> {\n const ctx = context as unknown as UNSAFE_PluginContext;\n\n return {\n async resolveId(\n this: UnpluginBuildContext & UnpluginContext,\n id: string,\n importer?: string,\n opts: {\n isEntry: boolean;\n } = { isEntry: false }\n ): Promise<string | ResolveResult | null | undefined> {\n let result = await ctx.$$internal.callHook(\n \"resolveId\",\n {\n sequential: true,\n result: \"first\",\n order: \"pre\"\n },\n
|
|
1
|
+
{"version":3,"file":"module-resolution.mjs","names":[],"sources":["../../../src/lib/unplugin/module-resolution.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { LoadResult } from \"rollup\";\nimport type {\n UnpluginBuildContext,\n UnpluginContext,\n UnpluginOptions\n} from \"unplugin\";\nimport { UNSAFE_PluginContext } from \"../../types/_internal\";\nimport { PluginContext, ResolveResult } from \"../../types/context\";\n\nexport interface CreateUnpluginModuleResolutionFunctionsOptions {\n /**\n * An indicator of whether to prefix virtual module IDs with a specific string. This is useful for ensuring that virtual modules are only processed by the plugin and not by other plugins or the bundler itself.\n *\n * @remarks\n * - If set to `true`, virtual module IDs will be prefixed with the string `__powerlines-virtual:`.\n * - If set to `false`, no prefix will be added to virtual module IDs.\n *\n * @defaultValue true\n */\n prefix?: boolean;\n}\n\nconst VIRTUAL_MODULE_PREFIX = \"__powerlines-virtual:\";\nconst VIRTUAL_MODULE_PREFIX_REGEX = /^__powerlines-virtual:/;\n\n/**\n * Creates the module resolution hook functions for a Powerlines unplugin plugin instance.\n *\n * @remarks\n * This includes the `resolveId` and `load` hooks.\n *\n * @see https://rollupjs.org/plugin-development/#resolveid\n * @see https://rollupjs.org/plugin-development/#load\n *\n * @param context - The plugin context.\n * @param options - Options for creating the module resolution functions.\n * @returns The module resolution hooks (`resolveId` and `load`).\n */\nexport function createUnpluginModuleResolutionFunctions<\n TContext extends PluginContext = PluginContext\n>(\n context: TContext,\n options: CreateUnpluginModuleResolutionFunctionsOptions = {}\n): Pick<UnpluginOptions, \"resolveId\" | \"load\"> {\n const ctx = context as unknown as UNSAFE_PluginContext;\n\n return {\n async resolveId(\n this: UnpluginBuildContext & UnpluginContext,\n id: string,\n importer?: string,\n opts: {\n isEntry: boolean;\n } = { isEntry: false }\n ): Promise<string | ResolveResult | null | undefined> {\n const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, \"\");\n const normalizedImporter = importer\n ? importer.replace(VIRTUAL_MODULE_PREFIX_REGEX, \"\")\n : undefined;\n\n let result = await ctx.$$internal.callHook(\n \"resolveId\",\n {\n sequential: true,\n result: \"first\",\n order: \"pre\"\n },\n normalizedId,\n normalizedImporter,\n opts\n );\n if (isSetString(result)) {\n return result;\n } else if (isSetObject(result)) {\n return {\n ...result,\n id:\n result.virtual && options.prefix !== false\n ? `${VIRTUAL_MODULE_PREFIX}${result.id}`\n : result.id\n };\n }\n\n result = await ctx.$$internal.callHook(\n \"resolveId\",\n {\n sequential: true,\n result: \"first\",\n order: \"normal\"\n },\n normalizedId,\n normalizedImporter,\n opts\n );\n if (isSetString(result)) {\n return result;\n } else if (isSetObject(result)) {\n return {\n ...result,\n id:\n result.virtual && options.prefix !== false\n ? `${VIRTUAL_MODULE_PREFIX}${result.id}`\n : result.id\n };\n }\n\n result = await ctx.resolve(normalizedId, normalizedImporter, {\n isFile: true,\n ...opts\n });\n if (isSetObject(result)) {\n return {\n ...result,\n id:\n result.virtual && options.prefix !== false\n ? `${VIRTUAL_MODULE_PREFIX}${result.id}`\n : result.id\n };\n }\n\n result = await ctx.$$internal.callHook(\n \"resolveId\",\n {\n sequential: true,\n result: \"first\",\n order: \"post\"\n },\n normalizedId,\n normalizedImporter,\n opts\n );\n if (isSetString(result)) {\n return result;\n } else if (isSetObject(result)) {\n return {\n ...result,\n id:\n result.virtual && options.prefix !== false\n ? `${VIRTUAL_MODULE_PREFIX}${result.id}`\n : result.id\n };\n }\n\n return null;\n },\n load: {\n filter:\n options.prefix !== false\n ? {\n id: {\n include: [VIRTUAL_MODULE_PREFIX_REGEX]\n }\n }\n : undefined,\n async handler(\n this: UnpluginBuildContext & UnpluginContext,\n id: string\n ): Promise<LoadResult | null | undefined> {\n const normalizedId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, \"\");\n\n let result = await ctx.$$internal.callHook(\n \"load\",\n {\n sequential: true,\n result: \"first\",\n order: \"pre\"\n },\n normalizedId\n );\n if (result) {\n return result;\n }\n\n result = await ctx.$$internal.callHook(\n \"load\",\n {\n sequential: true,\n result: \"first\",\n order: \"normal\"\n },\n normalizedId\n );\n if (result) {\n return result;\n }\n\n result = await ctx.load(normalizedId);\n if (result) {\n return result;\n }\n\n return ctx.$$internal.callHook(\n \"load\",\n {\n sequential: true,\n result: \"first\",\n order: \"post\"\n },\n normalizedId\n );\n }\n }\n };\n}\n"],"mappings":";;;;AA0CA,MAAM,wBAAwB;AAC9B,MAAM,8BAA8B;;;;;;;;;;;;;;AAepC,SAAgB,wCAGd,SACA,UAA0D,EAAE,EACf;CAC7C,MAAM,MAAM;AAEZ,QAAO;EACL,MAAM,UAEJ,IACA,UACA,OAEI,EAAE,SAAS,OAAO,EAC8B;GACpD,MAAM,eAAe,GAAG,QAAQ,6BAA6B,GAAG;GAChE,MAAM,qBAAqB,WACvB,SAAS,QAAQ,6BAA6B,GAAG,GACjD;GAEJ,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,aACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,cACA,oBACA,KACD;AACD,OAAI,YAAY,OAAO,CACrB,QAAO;YACE,YAAY,OAAO,CAC5B,QAAO;IACL,GAAG;IACH,IACE,OAAO,WAAW,QAAQ,WAAW,QACjC,GAAG,wBAAwB,OAAO,OAClC,OAAO;IACd;AAGH,YAAS,MAAM,IAAI,WAAW,SAC5B,aACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,cACA,oBACA,KACD;AACD,OAAI,YAAY,OAAO,CACrB,QAAO;YACE,YAAY,OAAO,CAC5B,QAAO;IACL,GAAG;IACH,IACE,OAAO,WAAW,QAAQ,WAAW,QACjC,GAAG,wBAAwB,OAAO,OAClC,OAAO;IACd;AAGH,YAAS,MAAM,IAAI,QAAQ,cAAc,oBAAoB;IAC3D,QAAQ;IACR,GAAG;IACJ,CAAC;AACF,OAAI,YAAY,OAAO,CACrB,QAAO;IACL,GAAG;IACH,IACE,OAAO,WAAW,QAAQ,WAAW,QACjC,GAAG,wBAAwB,OAAO,OAClC,OAAO;IACd;AAGH,YAAS,MAAM,IAAI,WAAW,SAC5B,aACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,cACA,oBACA,KACD;AACD,OAAI,YAAY,OAAO,CACrB,QAAO;YACE,YAAY,OAAO,CAC5B,QAAO;IACL,GAAG;IACH,IACE,OAAO,WAAW,QAAQ,WAAW,QACjC,GAAG,wBAAwB,OAAO,OAClC,OAAO;IACd;AAGH,UAAO;;EAET,MAAM;GACJ,QACE,QAAQ,WAAW,QACf,EACE,IAAI,EACF,SAAS,CAAC,4BAA4B,EACvC,EACF,GACD;GACN,MAAM,QAEJ,IACwC;IACxC,MAAM,eAAe,GAAG,QAAQ,6BAA6B,GAAG;IAEhE,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,aACD;AACD,QAAI,OACF,QAAO;AAGT,aAAS,MAAM,IAAI,WAAW,SAC5B,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,aACD;AACD,QAAI,OACF,QAAO;AAGT,aAAS,MAAM,IAAI,KAAK,aAAa;AACrC,QAAI,OACF,QAAO;AAGT,WAAO,IAAI,WAAW,SACpB,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,aACD;;GAEJ;EACF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unplugin.d.mts","names":[],"sources":["../../src/types/unplugin.ts"],"sourcesContent":[],"mappings":";;;;;;;;KA6BY,sBAAA;KAWA,cAAA,GACR;AAZQ,KAiBA,oBAjBsB,CAAA,sBAiBqB,cAjBrB,CAAA,GAkBhC,aAlBgC,SAAA,MAAA,GAAA,SAAA,GAoB5B,aApB4B,SAAA,QAAA,GAAA,UAAA,GAsB1B,aAtB0B,SAAA,SAAA,GAAA,QAAA,GAwBxB,aAxBwB;AAWtB,UAeK,iBAfS,
|
|
1
|
+
{"version":3,"file":"unplugin.d.mts","names":[],"sources":["../../src/types/unplugin.ts"],"sourcesContent":[],"mappings":";;;;;;;;KA6BY,sBAAA;KAWA,cAAA,GACR;AAZQ,KAiBA,oBAjBsB,CAAA,sBAiBqB,cAjBrB,CAAA,GAkBhC,aAlBgC,SAAA,MAAA,GAAA,SAAA,GAoB5B,aApB4B,SAAA,QAAA,GAAA,UAAA,GAsB1B,aAtB0B,SAAA,SAAA,GAAA,QAAA,GAwBxB,aAxBwB;AAWtB,UAeK,iBAfS,CAAA,iBAgBP,OAfO,GAeG,OAfH,CAAA,SAgBhB,eAhBgB,CAAA;EAKd;;;;;EAOF,GAAA,EAUH,GAVG,CAUC,QAVD,CAAA,QAAA,CAAA,CAAA;;AAEO,KAWL,oBAXoB,CAAA,iBAYb,OAZa,GAYH,OAZG,EAAA,wBAaN,cAbM,GAaW,cAbX,EAAA,yBAcL,oBAdK,CAcgB,eAdhB,CAAA,GAe5B,oBAf4B,CAeP,eAfO,CAAA,CAAA,GAAA,WACb,MAgBF,QAhBE,CAiBf,iBAjBe,CAiBC,QAjBD,CAAA,CAAA,CAkBf,gBAlBe,CAAA,IAkBM,QAlBN,CAmBf,iBAnBe,CAmBC,QAnBD,CAAA,CAAA,CAoBf,gBApBe,CAAA,CAoBG,IApBH,CAAA,SAAA,KAAA,SAAA,GAAA;EAAU,OAAA,EAAA,KAAA,SAAA;AAOlB,CAAA,GAAA,QAAA,UAAA,CAAA,IAAA,EAAA,KAAA,iBAAA,EAAA,GAAA,IAAA,EAAA,KAAA,MAAA,EAAA,GAAA,KAAA,QAAA,IAsBH,UAtBG,CAAA,CAAA,IAAA,EAwBO,gBAxBP,GAwB0B,QAxB1B,EAAA,GAAA,IAAA,EAyBU,KAzBV,EAAA,GA0BI,YA1BJ,CA0BiB,OA1BjB,CAAA,EAAA,MA2BK,UA3BL,CAAA,GA6BH,QA7BG,CA6BM,iBA7BN,CA6BsB,QA7BtB,CAAA,CAAA,CA6BiC,gBA7BjC,CAAA,CA6BmD,IA7BnD,CAAA,GA8BL,QA9BK,CA8BI,iBA9BJ,CA8BoB,QA9BpB,CAAA,CAAA,CA8B+B,gBA9B/B,CAAA,CA8BiD,IA9BjD,CAAA,EAAJ;AANG,KAuCE,kBAAA,GAAqB,UAvCvB,GAAA;EAAmB;AAS7B;;EAC6B,QAAA,EAiCjB,mBAjCiB;CACH;AAAiB,KAmC/B,eAnC+B,CAAA,iBAmCE,OAnCF,GAmCY,OAnCZ,CAAA,GAAA,CAAA,OAAA,EAoChC,OApCgC,CAoCxB,QApCwB,CAAA,QAAA,CAAA,CAAA,YAAA,CAAA,CAAA,EAAA,IAAA,EAqCnC,mBArCmC,EAAA,GAsCtC,iBAtCsC,CAsCtB,QAtCsB,CAAA;AACK,yCAAA,GAAA,EAAA;AAArB,iCAAA,GAAA,EAAA;AACF,uCAAA,GAAA,EAAA;AAArB,kCAAA,GAAA,EAAA;AAGgB,uCAAA,GAAA,EAAA;AAAhB,qCAAA,GAAA,EAAA;AADa,kCAAA,GAAA,EAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/core",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.20",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An internal core package for Powerlines - please use the `powerlines` package for public usage.",
|
|
6
6
|
"homepage": "https://stormsoftware.com",
|
|
@@ -524,5 +524,5 @@
|
|
|
524
524
|
"typescript": "^5.9.3"
|
|
525
525
|
},
|
|
526
526
|
"publishConfig": { "access": "public" },
|
|
527
|
-
"gitHead": "
|
|
527
|
+
"gitHead": "f53c211d745492a562800e7beec598d860ac2092"
|
|
528
528
|
}
|