@powerlines/core 0.2.14 → 0.2.15

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.
@@ -3,8 +3,8 @@ let __stryke_type_checks_is_set_object = require("@stryke/type-checks/is-set-obj
3
3
  let __stryke_type_checks_is_set_string = require("@stryke/type-checks/is-set-string");
4
4
 
5
5
  //#region src/lib/unplugin/module-resolution.ts
6
- const VIRTUAL_MODULE_PREFIX = "powerlines-virtual:";
7
- const VIRTUAL_MODULE_PREFIX_REGEX = /^powerlines-virtual:/;
6
+ const VIRTUAL_MODULE_PREFIX = "__powerlines-virtual:";
7
+ const VIRTUAL_MODULE_PREFIX_REGEX = /^__powerlines-virtual:/;
8
8
  /**
9
9
  * Creates the module resolution hook functions for a Powerlines unplugin plugin instance.
10
10
  *
@@ -62,28 +62,31 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
62
62
  };
63
63
  return null;
64
64
  },
65
- load: { async handler(id) {
66
- const moduleId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
67
- let result = await ctx.$$internal.callHook("load", {
68
- sequential: true,
69
- result: "first",
70
- order: "pre"
71
- }, moduleId);
72
- if (result) return result;
73
- result = await ctx.$$internal.callHook("load", {
74
- sequential: true,
75
- result: "first",
76
- order: "normal"
77
- }, moduleId);
78
- if (result) return result;
79
- result = await ctx.load(moduleId);
80
- if (result) return result;
81
- return ctx.$$internal.callHook("load", {
82
- sequential: true,
83
- result: "first",
84
- order: "post"
85
- }, moduleId);
86
- } }
65
+ load: {
66
+ filter: options.prefix ? { id: { include: VIRTUAL_MODULE_PREFIX_REGEX } } : void 0,
67
+ async handler(id) {
68
+ const moduleId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
69
+ let result = await ctx.$$internal.callHook("load", {
70
+ sequential: true,
71
+ result: "first",
72
+ order: "pre"
73
+ }, moduleId);
74
+ if (result) return result;
75
+ result = await ctx.$$internal.callHook("load", {
76
+ sequential: true,
77
+ result: "first",
78
+ order: "normal"
79
+ }, moduleId);
80
+ if (result) return result;
81
+ result = await ctx.load(moduleId);
82
+ if (result) return result;
83
+ return ctx.$$internal.callHook("load", {
84
+ sequential: true,
85
+ result: "first",
86
+ order: "post"
87
+ }, moduleId);
88
+ }
89
+ }
87
90
  };
88
91
  }
89
92
 
@@ -7,7 +7,7 @@ interface CreateUnpluginModuleResolutionFunctionsOptions {
7
7
  * 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.
8
8
  *
9
9
  * @remarks
10
- * - If set to `true`, virtual module IDs will be prefixed with the string `powerlines-virtual:`.
10
+ * - If set to `true`, virtual module IDs will be prefixed with the string `__powerlines-virtual:`.
11
11
  * - If set to `false`, no prefix will be added to virtual module IDs.
12
12
  *
13
13
  * @defaultValue true
@@ -7,7 +7,7 @@ interface CreateUnpluginModuleResolutionFunctionsOptions {
7
7
  * 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.
8
8
  *
9
9
  * @remarks
10
- * - If set to `true`, virtual module IDs will be prefixed with the string `powerlines-virtual:`.
10
+ * - If set to `true`, virtual module IDs will be prefixed with the string `__powerlines-virtual:`.
11
11
  * - If set to `false`, no prefix will be added to virtual module IDs.
12
12
  *
13
13
  * @defaultValue true
@@ -2,8 +2,8 @@ import { isSetObject } from "@stryke/type-checks/is-set-object";
2
2
  import { isSetString } from "@stryke/type-checks/is-set-string";
3
3
 
4
4
  //#region src/lib/unplugin/module-resolution.ts
5
- const VIRTUAL_MODULE_PREFIX = "powerlines-virtual:";
6
- const VIRTUAL_MODULE_PREFIX_REGEX = /^powerlines-virtual:/;
5
+ const VIRTUAL_MODULE_PREFIX = "__powerlines-virtual:";
6
+ const VIRTUAL_MODULE_PREFIX_REGEX = /^__powerlines-virtual:/;
7
7
  /**
8
8
  * Creates the module resolution hook functions for a Powerlines unplugin plugin instance.
9
9
  *
@@ -61,28 +61,31 @@ function createUnpluginModuleResolutionFunctions(context, options = {}) {
61
61
  };
62
62
  return null;
63
63
  },
64
- load: { async handler(id) {
65
- const moduleId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
66
- let result = await ctx.$$internal.callHook("load", {
67
- sequential: true,
68
- result: "first",
69
- order: "pre"
70
- }, moduleId);
71
- if (result) return result;
72
- result = await ctx.$$internal.callHook("load", {
73
- sequential: true,
74
- result: "first",
75
- order: "normal"
76
- }, moduleId);
77
- if (result) return result;
78
- result = await ctx.load(moduleId);
79
- if (result) return result;
80
- return ctx.$$internal.callHook("load", {
81
- sequential: true,
82
- result: "first",
83
- order: "post"
84
- }, moduleId);
85
- } }
64
+ load: {
65
+ filter: options.prefix ? { id: { include: VIRTUAL_MODULE_PREFIX_REGEX } } : void 0,
66
+ async handler(id) {
67
+ const moduleId = id.replace(VIRTUAL_MODULE_PREFIX_REGEX, "");
68
+ let result = await ctx.$$internal.callHook("load", {
69
+ sequential: true,
70
+ result: "first",
71
+ order: "pre"
72
+ }, moduleId);
73
+ if (result) return result;
74
+ result = await ctx.$$internal.callHook("load", {
75
+ sequential: true,
76
+ result: "first",
77
+ order: "normal"
78
+ }, moduleId);
79
+ if (result) return result;
80
+ result = await ctx.load(moduleId);
81
+ if (result) return result;
82
+ return ctx.$$internal.callHook("load", {
83
+ sequential: true,
84
+ result: "first",
85
+ order: "post"
86
+ }, moduleId);
87
+ }
88
+ }
86
89
  };
87
90
  }
88
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 id,\n importer,\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 id,\n importer,\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(id, importer, { isFile: true, ...opts });\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 id,\n importer,\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 async handler(\n this: UnpluginBuildContext & UnpluginContext,\n id: string\n ): Promise<LoadResult | null | undefined> {\n const moduleId = 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 moduleId\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 moduleId\n );\n if (result) {\n return result;\n }\n\n result = await ctx.load(moduleId);\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 moduleId\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,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,aACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,IACA,UACA,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,IACA,UACA,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,IAAI,UAAU;IAAE,QAAQ;IAAM,GAAG;IAAM,CAAC;AACnE,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,IACA,UACA,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,EACJ,MAAM,QAEJ,IACwC;GACxC,MAAM,WAAW,GAAG,QAAQ,6BAA6B,GAAG;GAE5D,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,QACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,SACD;AACD,OAAI,OACF,QAAO;AAGT,YAAS,MAAM,IAAI,WAAW,SAC5B,QACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,SACD;AACD,OAAI,OACF,QAAO;AAGT,YAAS,MAAM,IAAI,KAAK,SAAS;AACjC,OAAI,OACF,QAAO;AAGT,UAAO,IAAI,WAAW,SACpB,QACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,SACD;KAEJ;EACF"}
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 id,\n importer,\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 id,\n importer,\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(id, importer, { isFile: true, ...opts });\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 id,\n importer,\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: options.prefix\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 moduleId = 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 moduleId\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 moduleId\n );\n if (result) {\n return result;\n }\n\n result = await ctx.load(moduleId);\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 moduleId\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,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,aACA;IACE,YAAY;IACZ,QAAQ;IACR,OAAO;IACR,EACD,IACA,UACA,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,IACA,UACA,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,IAAI,UAAU;IAAE,QAAQ;IAAM,GAAG;IAAM,CAAC;AACnE,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,IACA,UACA,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,QAAQ,QAAQ,SACZ,EACE,IAAI,EACF,SAAS,6BACV,EACF,GACD;GACJ,MAAM,QAEJ,IACwC;IACxC,MAAM,WAAW,GAAG,QAAQ,6BAA6B,GAAG;IAE5D,IAAI,SAAS,MAAM,IAAI,WAAW,SAChC,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,SACD;AACD,QAAI,OACF,QAAO;AAGT,aAAS,MAAM,IAAI,WAAW,SAC5B,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,SACD;AACD,QAAI,OACF,QAAO;AAGT,aAAS,MAAM,IAAI,KAAK,SAAS;AACjC,QAAI,OACF,QAAO;AAGT,WAAO,IAAI,WAAW,SACpB,QACA;KACE,YAAY;KACZ,QAAQ;KACR,OAAO;KACR,EACD,SACD;;GAEJ;EACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/core",
3
- "version": "0.2.14",
3
+ "version": "0.2.15",
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",
@@ -493,17 +493,17 @@
493
493
  "types": "./dist/index.d.cts",
494
494
  "files": ["dist/**/*", "files/**/*", "schemas/**/*"],
495
495
  "dependencies": {
496
- "@storm-software/config": "^1.135.22",
497
- "@storm-software/config-tools": "^1.189.21",
498
- "@stryke/convert": "^0.6.51",
499
- "@stryke/fs": "^0.33.55",
500
- "@stryke/hash": "^0.13.8",
501
- "@stryke/helpers": "^0.10.1",
502
- "@stryke/json": "^0.14.5",
503
- "@stryke/path": "^0.26.17",
504
- "@stryke/string-format": "^0.17.1",
505
- "@stryke/type-checks": "^0.5.36",
506
- "@stryke/unique-id": "^0.3.66",
496
+ "@storm-software/config": "^1.135.27",
497
+ "@storm-software/config-tools": "^1.189.26",
498
+ "@stryke/convert": "^0.6.52",
499
+ "@stryke/fs": "^0.33.56",
500
+ "@stryke/hash": "^0.13.9",
501
+ "@stryke/helpers": "^0.10.2",
502
+ "@stryke/json": "^0.14.6",
503
+ "@stryke/path": "^0.26.18",
504
+ "@stryke/string-format": "^0.17.2",
505
+ "@stryke/type-checks": "^0.5.37",
506
+ "@stryke/unique-id": "^0.3.67",
507
507
  "c12": "^3.3.3",
508
508
  "chalk": "5.6.2",
509
509
  "compatx": "^0.2.0",
@@ -515,14 +515,14 @@
515
515
  "unplugin": "^3.0.0"
516
516
  },
517
517
  "devDependencies": {
518
- "@storm-software/testing-tools": "^1.119.96",
519
- "@stryke/types": "^0.10.50",
518
+ "@storm-software/testing-tools": "^1.119.101",
519
+ "@stryke/types": "^0.10.51",
520
520
  "@types/diff-match-patch": "^1.0.36",
521
- "@types/node": "^25.3.5",
521
+ "@types/node": "^25.4.0",
522
522
  "@types/semver": "^7.7.1",
523
523
  "tsdown": "^0.17.2",
524
524
  "typescript": "^5.9.3"
525
525
  },
526
526
  "publishConfig": { "access": "public" },
527
- "gitHead": "7aff4b34ac598df76db48e9b713a2ff08ee85134"
527
+ "gitHead": "7496a546473274494be487ebc33cf267ed5cd1f0"
528
528
  }