@shell-shock/nx 0.0.51 → 0.0.53

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 CHANGED
@@ -2,6 +2,26 @@
2
2
 
3
3
  # Changelog for Shell Shock - Nx
4
4
 
5
+ ## [0.0.53](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.53) (03/26/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Resolved workspace linting rule failures ([7acb1f3](https://github.com/storm-software/shell-shock/commit/7acb1f3))
10
+
11
+ ### Updated Dependencies
12
+
13
+ - Updated **core** to **v0.13.9**
14
+
15
+ ## [0.0.52](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.52) (03/22/2026)
16
+
17
+ ### Miscellaneous
18
+
19
+ - **nx:** Clean up the base executor options resolution logic ([d1c2fdb](https://github.com/storm-software/shell-shock/commit/d1c2fdb))
20
+
21
+ ### Updated Dependencies
22
+
23
+ - Updated **core** to **v0.13.8**
24
+
5
25
  ## [0.0.51](https://github.com/storm-software/shell-shock/releases/tag/nx%400.0.51) (03/22/2026)
6
26
 
7
27
  ### Updated Dependencies
package/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the ⚡<b>Shell Shock</b> monorepo. The Shell Shock pack
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-0.0.46-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://stormsoftware.com/projects/shell-shock/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/shell-shock/release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
30
+ [![Version](https://img.shields.io/badge/version-0.0.52-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://stormsoftware.com/projects/shell-shock/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/shell-shock/release.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -25,11 +25,8 @@ function withExecutor(command, executorFn) {
25
25
  name: projectConfig.name,
26
26
  root: projectConfig.root,
27
27
  sourceRoot: projectConfig.sourceRoot,
28
- tsconfig: options.tsconfig,
29
- logLevel: options.logLevel,
30
28
  description: projectConfig.metadata?.description,
31
29
  projectType: projectConfig.projectType,
32
- mode: options.mode,
33
30
  output: { path: options.outputPath }
34
31
  }, options));
35
32
  try {
@@ -63,4 +60,4 @@ ${error.stack}` : "Unknown error"}`);
63
60
 
64
61
  //#endregion
65
62
  export { withExecutor as t };
66
- //# sourceMappingURL=base-executor-DojAZA0w.mjs.map
63
+ //# sourceMappingURL=base-executor-B1EoXB-T.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"base-executor-DojAZA0w.mjs","names":[],"sources":["../src/base/base-executor.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { ExecutorContext, PromiseExecutor } from \"@nx/devkit\";\nimport type { ShellShockAPI, UserConfig } from \"@shell-shock/core\";\nimport { writeError } from \"@storm-software/config-tools/logger\";\nimport type { StormWorkspaceConfig } from \"@storm-software/config/types\";\nimport { withRunExecutor } from \"@storm-software/workspace-tools/base/base-executor\";\nimport type { BaseExecutorResult } from \"@storm-software/workspace-tools/types\";\nimport { isError } from \"@stryke/type-checks/is-error\";\nimport defu from \"defu\";\nimport { createJiti } from \"jiti\";\nimport type { InlineConfig, PowerlinesCommand } from \"powerlines\";\nimport type { BaseExecutorSchema } from \"./base-executor.schema\";\n\nexport type ShellShockExecutorContext<\n TCommand extends PowerlinesCommand = PowerlinesCommand,\n TExecutorSchema extends BaseExecutorSchema = BaseExecutorSchema\n> = ExecutorContext & {\n projectName: string;\n command: TCommand;\n options: TExecutorSchema;\n inlineConfig: InlineConfig;\n workspaceConfig: StormWorkspaceConfig;\n};\n\n/**\n * A utility function to create a Shell Shock executor that can be used with the `withRunExecutor` function.\n *\n * @remarks\n * This function is designed to simplify the creation of Shell Shock executors by providing a consistent interface and error handling.\n *\n * @param command - The command that the executor will handle (e.g., \"new\", \"prepare\", \"build\", etc.).\n * @param executorFn - The function that will be executed when the command is run.\n * @returns A Promise that resolves to the result of the executor function.\n */\nexport function withExecutor<\n TCommand extends PowerlinesCommand = PowerlinesCommand,\n TExecutorSchema extends BaseExecutorSchema = BaseExecutorSchema\n>(\n command: TCommand,\n executorFn: (\n context: ShellShockExecutorContext<TCommand, TExecutorSchema>,\n api: ShellShockAPI\n ) =>\n | Promise<BaseExecutorResult | null | undefined>\n | BaseExecutorResult\n | null\n | undefined\n): PromiseExecutor<TExecutorSchema> {\n return withRunExecutor(\n `Shell Shock ${command} command executor`,\n async (\n options: TExecutorSchema,\n context: ExecutorContext,\n workspaceConfig: StormWorkspaceConfig\n ): Promise<BaseExecutorResult | null | undefined> => {\n if (!context.projectName) {\n throw new Error(\n \"The executor requires `projectName` on the context object.\"\n );\n }\n\n if (\n !context.projectName ||\n !context.projectsConfigurations?.projects ||\n !context.projectsConfigurations.projects[context.projectName] ||\n !context.projectsConfigurations.projects[context.projectName]?.root\n ) {\n throw new Error(\n \"The executor requires `projectsConfigurations` on the context object.\"\n );\n }\n\n const projectConfig =\n context.projectsConfigurations.projects[context.projectName]!;\n\n const jiti = createJiti(context.root, { cache: false });\n const { createShellShock } = await jiti.import<{\n createShellShock: typeof import(\"@shell-shock/core\").createShellShock;\n }>(\"@shell-shock/core\");\n\n const api = await createShellShock(\n defu(\n {\n name: projectConfig.name,\n root: projectConfig.root,\n sourceRoot: projectConfig.sourceRoot,\n tsconfig: options.tsconfig,\n logLevel: options.logLevel,\n description: projectConfig.metadata?.description,\n projectType: projectConfig.projectType,\n mode: options.mode,\n output: {\n path: options.outputPath\n }\n },\n options\n ) as Partial<UserConfig>\n );\n\n try {\n return await Promise.resolve(\n executorFn(\n defu(\n {\n projectName: context.projectName,\n options,\n workspaceConfig,\n inlineConfig: {\n command,\n configFile: options.configFile\n },\n command\n },\n context\n ),\n api\n )\n );\n } catch (error) {\n writeError(\n `An error occurred while executing the Shell Shock ${\n command\n } command executor: ${\n isError(error)\n ? `${error.message}\n\n${error.stack}`\n : \"Unknown error\"\n }`\n );\n\n return { success: false };\n } finally {\n await api.finalize();\n }\n },\n {\n skipReadingConfig: false,\n hooks: {\n applyDefaultOptions: (options: Partial<TExecutorSchema>) => {\n options.outputPath ??= \"dist/{projectRoot}\";\n options.configFile ??= \"{projectRoot}/shell-shock.config.ts\";\n\n return options as TExecutorSchema;\n }\n }\n }\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;AAmDA,SAAgB,aAId,SACA,YAQkC;AAClC,QAAO,gBACL,eAAe,QAAQ,oBACvB,OACE,SACA,SACA,oBACmD;AACnD,MAAI,CAAC,QAAQ,YACX,OAAM,IAAI,MACR,6DACD;AAGH,MACE,CAAC,QAAQ,eACT,CAAC,QAAQ,wBAAwB,YACjC,CAAC,QAAQ,uBAAuB,SAAS,QAAQ,gBACjD,CAAC,QAAQ,uBAAuB,SAAS,QAAQ,cAAc,KAE/D,OAAM,IAAI,MACR,wEACD;EAGH,MAAM,gBACJ,QAAQ,uBAAuB,SAAS,QAAQ;EAGlD,MAAM,EAAE,qBAAqB,MADhB,WAAW,QAAQ,MAAM,EAAE,OAAO,OAAO,CAAC,CACf,OAErC,oBAAoB;EAEvB,MAAM,MAAM,MAAM,iBAChB,KACE;GACE,MAAM,cAAc;GACpB,MAAM,cAAc;GACpB,YAAY,cAAc;GAC1B,UAAU,QAAQ;GAClB,UAAU,QAAQ;GAClB,aAAa,cAAc,UAAU;GACrC,aAAa,cAAc;GAC3B,MAAM,QAAQ;GACd,QAAQ,EACN,MAAM,QAAQ,YACf;GACF,EACD,QACD,CACF;AAED,MAAI;AACF,UAAO,MAAM,QAAQ,QACnB,WACE,KACE;IACE,aAAa,QAAQ;IACrB;IACA;IACA,cAAc;KACZ;KACA,YAAY,QAAQ;KACrB;IACD;IACD,EACD,QACD,EACD,IACD,CACF;WACM,OAAO;AACd,cACE,qDACE,QACD,qBACC,QAAQ,MAAM,GACV,GAAG,MAAM,QAAQ;;EAE/B,MAAM,UACQ,kBAEP;AAED,UAAO,EAAE,SAAS,OAAO;YACjB;AACR,SAAM,IAAI,UAAU;;IAGxB;EACE,mBAAmB;EACnB,OAAO,EACL,sBAAsB,YAAsC;AAC1D,WAAQ,eAAe;AACvB,WAAQ,eAAe;AAEvB,UAAO;KAEV;EACF,CACF"}
1
+ {"version":3,"file":"base-executor-B1EoXB-T.mjs","names":[],"sources":["../src/base/base-executor.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { ExecutorContext, PromiseExecutor } from \"@nx/devkit\";\nimport type { ShellShockAPI, UserConfig } from \"@shell-shock/core\";\nimport { writeError } from \"@storm-software/config-tools/logger\";\nimport type { StormWorkspaceConfig } from \"@storm-software/config/types\";\nimport { withRunExecutor } from \"@storm-software/workspace-tools/base/base-executor\";\nimport type { BaseExecutorResult } from \"@storm-software/workspace-tools/types\";\nimport { isError } from \"@stryke/type-checks/is-error\";\nimport defu from \"defu\";\nimport { createJiti } from \"jiti\";\nimport type { InlineConfig, PowerlinesCommand } from \"powerlines\";\nimport type { BaseExecutorSchema } from \"./base-executor.schema\";\n\nexport type ShellShockExecutorContext<\n TCommand extends PowerlinesCommand = PowerlinesCommand,\n TExecutorSchema extends BaseExecutorSchema = BaseExecutorSchema\n> = ExecutorContext & {\n projectName: string;\n command: TCommand;\n options: TExecutorSchema;\n inlineConfig: InlineConfig;\n workspaceConfig: StormWorkspaceConfig;\n};\n\n/**\n * A utility function to create a Shell Shock executor that can be used with the `withRunExecutor` function.\n *\n * @remarks\n * This function is designed to simplify the creation of Shell Shock executors by providing a consistent interface and error handling.\n *\n * @param command - The command that the executor will handle (e.g., \"new\", \"prepare\", \"build\", etc.).\n * @param executorFn - The function that will be executed when the command is run.\n * @returns A Promise that resolves to the result of the executor function.\n */\nexport function withExecutor<\n TCommand extends PowerlinesCommand = PowerlinesCommand,\n TExecutorSchema extends BaseExecutorSchema = BaseExecutorSchema\n>(\n command: TCommand,\n executorFn: (\n context: ShellShockExecutorContext<TCommand, TExecutorSchema>,\n api: ShellShockAPI\n ) =>\n | Promise<BaseExecutorResult | null | undefined>\n | BaseExecutorResult\n | null\n | undefined\n): PromiseExecutor<TExecutorSchema> {\n return withRunExecutor(\n `Shell Shock ${command} command executor`,\n async (\n options: TExecutorSchema,\n context: ExecutorContext,\n workspaceConfig: StormWorkspaceConfig\n ): Promise<BaseExecutorResult | null | undefined> => {\n if (!context.projectName) {\n throw new Error(\n \"The executor requires `projectName` on the context object.\"\n );\n }\n\n if (\n !context.projectName ||\n !context.projectsConfigurations?.projects ||\n !context.projectsConfigurations.projects[context.projectName] ||\n !context.projectsConfigurations.projects[context.projectName]?.root\n ) {\n throw new Error(\n \"The executor requires `projectsConfigurations` on the context object.\"\n );\n }\n\n const projectConfig =\n context.projectsConfigurations.projects[context.projectName]!;\n\n const jiti = createJiti(context.root, { cache: false });\n const { createShellShock } = await jiti.import<{\n createShellShock: typeof import(\"@shell-shock/core\").createShellShock;\n }>(\"@shell-shock/core\");\n\n const api = await createShellShock(\n defu(\n {\n name: projectConfig.name,\n root: projectConfig.root,\n sourceRoot: projectConfig.sourceRoot,\n description: projectConfig.metadata?.description,\n projectType: projectConfig.projectType,\n output: {\n path: options.outputPath\n }\n },\n options\n ) as Partial<UserConfig>\n );\n\n try {\n return await Promise.resolve(\n executorFn(\n defu(\n {\n projectName: context.projectName,\n options,\n workspaceConfig,\n inlineConfig: {\n command,\n configFile: options.configFile\n },\n command\n },\n context\n ),\n api\n )\n );\n } catch (error) {\n writeError(\n `An error occurred while executing the Shell Shock ${\n command\n } command executor: ${\n isError(error)\n ? `${error.message}\n\n${error.stack}`\n : \"Unknown error\"\n }`\n );\n\n return { success: false };\n } finally {\n await api.finalize();\n }\n },\n {\n skipReadingConfig: false,\n hooks: {\n applyDefaultOptions: (options: Partial<TExecutorSchema>) => {\n options.outputPath ??= \"dist/{projectRoot}\";\n options.configFile ??= \"{projectRoot}/shell-shock.config.ts\";\n\n return options as TExecutorSchema;\n }\n }\n }\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;AAmDA,SAAgB,aAId,SACA,YAQkC;AAClC,QAAO,gBACL,eAAe,QAAQ,oBACvB,OACE,SACA,SACA,oBACmD;AACnD,MAAI,CAAC,QAAQ,YACX,OAAM,IAAI,MACR,6DACD;AAGH,MACE,CAAC,QAAQ,eACT,CAAC,QAAQ,wBAAwB,YACjC,CAAC,QAAQ,uBAAuB,SAAS,QAAQ,gBACjD,CAAC,QAAQ,uBAAuB,SAAS,QAAQ,cAAc,KAE/D,OAAM,IAAI,MACR,wEACD;EAGH,MAAM,gBACJ,QAAQ,uBAAuB,SAAS,QAAQ;EAGlD,MAAM,EAAE,qBAAqB,MADhB,WAAW,QAAQ,MAAM,EAAE,OAAO,OAAO,CAAC,CACf,OAErC,oBAAoB;EAEvB,MAAM,MAAM,MAAM,iBAChB,KACE;GACE,MAAM,cAAc;GACpB,MAAM,cAAc;GACpB,YAAY,cAAc;GAC1B,aAAa,cAAc,UAAU;GACrC,aAAa,cAAc;GAC3B,QAAQ,EACN,MAAM,QAAQ,YACf;GACF,EACD,QACD,CACF;AAED,MAAI;AACF,UAAO,MAAM,QAAQ,QACnB,WACE,KACE;IACE,aAAa,QAAQ;IACrB;IACA;IACA,cAAc;KACZ;KACA,YAAY,QAAQ;KACrB;IACD;IACD,EACD,QACD,EACD,IACD,CACF;WACM,OAAO;AACd,cACE,qDACE,QACD,qBACC,QAAQ,MAAM,GACV,GAAG,MAAM,QAAQ;;EAE/B,MAAM,UACQ,kBAEP;AAED,UAAO,EAAE,SAAS,OAAO;YACjB;AACR,SAAM,IAAI,UAAU;;IAGxB;EACE,mBAAmB;EACnB,OAAO,EACL,sBAAsB,YAAsC;AAC1D,WAAQ,eAAe;AACvB,WAAQ,eAAe;AAEvB,UAAO;KAEV;EACF,CACF"}
@@ -53,11 +53,8 @@ function withExecutor(command, executorFn) {
53
53
  name: projectConfig.name,
54
54
  root: projectConfig.root,
55
55
  sourceRoot: projectConfig.sourceRoot,
56
- tsconfig: options.tsconfig,
57
- logLevel: options.logLevel,
58
56
  description: projectConfig.metadata?.description,
59
57
  projectType: projectConfig.projectType,
60
- mode: options.mode,
61
58
  output: { path: options.outputPath }
62
59
  }, options));
63
60
  try {
@@ -1,4 +1,4 @@
1
- const require_base_executor = require('../../base-executor-KUL9jD5R.js');
1
+ const require_base_executor = require('../../base-executor-BxpIt0ZA.js');
2
2
  let defu = require("defu");
3
3
  defu = require_base_executor.__toESM(defu);
4
4
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "../../base-executor-B1EoXB-T.mjs";
2
2
  import defu from "defu";
3
3
 
4
4
  //#region src/executors/build/executor.ts
@@ -1,4 +1,4 @@
1
- const require_base_executor = require('../../base-executor-KUL9jD5R.js');
1
+ const require_base_executor = require('../../base-executor-BxpIt0ZA.js');
2
2
  let defu = require("defu");
3
3
 
4
4
  //#region src/executors/clean/executor.ts
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "../../base-executor-B1EoXB-T.mjs";
2
2
  import { defu as defu$1 } from "defu";
3
3
 
4
4
  //#region src/executors/clean/executor.ts
@@ -1,4 +1,4 @@
1
- const require_base_executor = require('../../base-executor-KUL9jD5R.js');
1
+ const require_base_executor = require('../../base-executor-BxpIt0ZA.js');
2
2
  let defu = require("defu");
3
3
  defu = require_base_executor.__toESM(defu);
4
4
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "../../base-executor-B1EoXB-T.mjs";
2
2
  import defu from "defu";
3
3
 
4
4
  //#region src/executors/docs/executor.ts
@@ -1,4 +1,4 @@
1
- const require_base_executor = require('../../base-executor-KUL9jD5R.js');
1
+ const require_base_executor = require('../../base-executor-BxpIt0ZA.js');
2
2
  let defu = require("defu");
3
3
  defu = require_base_executor.__toESM(defu);
4
4
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "../../base-executor-B1EoXB-T.mjs";
2
2
  import defu from "defu";
3
3
 
4
4
  //#region src/executors/lint/executor.ts
@@ -1,4 +1,4 @@
1
- const require_base_executor = require('../../base-executor-KUL9jD5R.js');
1
+ const require_base_executor = require('../../base-executor-BxpIt0ZA.js');
2
2
  let defu = require("defu");
3
3
  defu = require_base_executor.__toESM(defu);
4
4
 
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "../../base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "../../base-executor-B1EoXB-T.mjs";
2
2
  import defu from "defu";
3
3
 
4
4
  //#region src/executors/prepare/executor.ts
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
- const require_base_executor = require('./base-executor-KUL9jD5R.js');
2
+ const require_base_executor = require('./base-executor-BxpIt0ZA.js');
3
3
  let _powerlines_nx_base_base_executor_untyped = require("@powerlines/nx/base/base-executor.untyped");
4
4
  _powerlines_nx_base_base_executor_untyped = require_base_executor.__toESM(_powerlines_nx_base_base_executor_untyped);
5
5
  let untyped = require("untyped");
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { t as withExecutor } from "./base-executor-DojAZA0w.mjs";
1
+ import { t as withExecutor } from "./base-executor-B1EoXB-T.mjs";
2
2
  import baseExecutorSchema from "@powerlines/nx/base/base-executor.untyped";
3
3
  import { defineUntypedSchema } from "untyped";
4
4
 
@@ -1,6 +1,6 @@
1
1
  import { CreateNodesV2 } from "@nx/devkit";
2
2
 
3
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts
3
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts
4
4
  //#region src/types/plugin.d.ts
5
5
  interface NxPluginOptions {
6
6
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":["NxPluginOptions","clean","targetName","defaultConfiguration","dependsOn","inputs","outputs","executor","prepare","lint","build","docs","deploy","verboseOutput","debug"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts","../../src/plugin/index.ts"],"x_google_ignoreList":[0],"mappings":";;;;UACUA,eAAAA;;;;EAIRC,KAAAA;;;;;;IAMEC,UAAAA;IAgBAG;;;;;IAVAF,oBAAAA;IA2CAC;;;;;IArCAA,SAAAA;IAoEAD;;;IAhEAE,MAAAA;IAoFAE;;;IAhFAD,OAAAA;IAuGAF;;;;;IAjGAG,QAAAA;EAAAA;EAsIAH;;;EAjIFI,OAAAA;IAoJAI;;;;;IA9IEV,UAAAA;IA8KAK;;;;;IAxKAJ,oBAAAA;;;AChCJ;;;IDsCIC,SAAAA;ICtCqD;;;ID0CrDC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFE,IAAAA;;;;;;IAMEP,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFG,KAAAA;;;;;;IAMER,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFI,IAAAA;;;;;;IAMET,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFK,MAAAA;;;;;;IAMEV,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;;;;;;EAUFM,aAAAA;;;;;;EAMAC,KAAAA;AAAAA;;;cCxNW,aAAA,EAAe,aAAA,CAAc,eAAA"}
1
+ {"version":3,"file":"index.d.mts","names":["NxPluginOptions","clean","targetName","defaultConfiguration","dependsOn","inputs","outputs","executor","prepare","lint","build","docs","deploy","verboseOutput","debug"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts","../../src/plugin/index.ts"],"x_google_ignoreList":[0],"mappings":";;;;UACUA,eAAAA;;;;EAIRC,KAAAA;IAJuB;;;;;IAUrBC,UAAAA;IAoBAI;;;;;IAdAH,oBAAAA;IA+CAE;;;;;IAzCAD,SAAAA;IA0EAA;;;IAtEAC,MAAAA;IAyFFK;;;IArFEJ,OAAAA;IA2GAD;;;;;IArGAE,QAAAA;EAAAA;EA0IAF;;;EArIFG,OAAAA;IA0JEN;;;;;IApJAA,UAAAA;IAwLFW;;;;;IAlLEV,oBAAAA;;AChCJ;;;;IDsCIC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFE,IAAAA;;;;;;IAMEP,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFG,KAAAA;;;;;;IAMER,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFI,IAAAA;;;;;;IAMET,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFK,MAAAA;;;;;;IAMEV,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;;;;;;EAUFM,aAAAA;;;;;;EAMAC,KAAAA;AAAAA;;;cCxNW,aAAA,EAAe,aAAA,CAAc,eAAA"}
@@ -1,6 +1,6 @@
1
1
  import { CreateNodesV2 } from "@nx/devkit";
2
2
 
3
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts
3
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts
4
4
  //#region src/types/plugin.d.ts
5
5
  interface NxPluginOptions {
6
6
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":["NxPluginOptions","clean","targetName","defaultConfiguration","dependsOn","inputs","outputs","executor","prepare","lint","build","docs","deploy","verboseOutput","debug"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts","../../src/plugin/index.ts"],"x_google_ignoreList":[0],"mappings":";;;;UACUA,eAAAA;;;;EAIRC,KAAAA;IAJuB;;;;;IAUrBC,UAAAA;IAoBAI;;;;;IAdAH,oBAAAA;IA+CAE;;;;;IAzCAD,SAAAA;IA0EAA;;;IAtEAC,MAAAA;IAyFFK;;;IArFEJ,OAAAA;IA2GAD;;;;;IArGAE,QAAAA;EAAAA;EA0IAF;;;EArIFG,OAAAA;IA0JEN;;;;;IApJAA,UAAAA;IAwLFW;;;;;IAlLEV,oBAAAA;;AChCJ;;;;IDsCIC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFE,IAAAA;;;;;;IAMEP,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFG,KAAAA;;;;;;IAMER,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFI,IAAAA;;;;;;IAMET,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFK,MAAAA;;;;;;IAMEV,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;;;;;;EAUFM,aAAAA;;;;;;EAMAC,KAAAA;AAAAA;;;cCxNW,aAAA,EAAe,aAAA,CAAc,eAAA"}
1
+ {"version":3,"file":"index.d.ts","names":["NxPluginOptions","clean","targetName","defaultConfiguration","dependsOn","inputs","outputs","executor","prepare","lint","build","docs","deploy","verboseOutput","debug"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/types/plugin.d.mts","../../src/plugin/index.ts"],"x_google_ignoreList":[0],"mappings":";;;;UACUA,eAAAA;;;;EAIRC,KAAAA;IAJuB;;;;;IAUrBC,UAAAA;IAoBAI;;;;;IAdAH,oBAAAA;IA+CAE;;;;;IAzCAD,SAAAA;IA0EAA;;;IAtEAC,MAAAA;IAyFFK;;;IArFEJ,OAAAA;IA2GAD;;;;;IArGAE,QAAAA;EAAAA;EA0IAF;;;EArIFG,OAAAA;IA0JEN;;;;;IApJAA,UAAAA;IAwLFW;;;;;IAlLEV,oBAAAA;;AChCJ;;;;IDsCIC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFE,IAAAA;;;;;;IAMEP,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFG,KAAAA;;;;;;IAMER,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFI,IAAAA;;;;;;IAMET,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;EAKFK,MAAAA;;;;;;IAMEV,UAAAA;;;;;;IAMAC,oBAAAA;;;;;;IAMAC,SAAAA;;;;IAIAC,MAAAA;;;;IAIAC,OAAAA;;;;;;IAMAC,QAAAA;EAAAA;;;;;;;;;EAUFM,aAAAA;;;;;;EAMAC,KAAAA;AAAAA;;;cCxNW,aAAA,EAAe,aAAA,CAAc,eAAA"}
@@ -50,7 +50,7 @@ let jiti = require("jiti");
50
50
  let nx_src_config_nx_json_js = require("nx/src/config/nx-json.js");
51
51
  let nx_src_utils_package_json_js = require("nx/src/utils/package-json.js");
52
52
 
53
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs
53
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs
54
54
  /**
55
55
  * A list of Nx input strings that describe the Powerlines configuration file
56
56
  */
@@ -82,14 +82,14 @@ const CONFIG_INPUTS = [
82
82
  ];
83
83
 
84
84
  //#endregion
85
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/regex.mjs
85
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/regex.mjs
86
86
  const DRIVE_LETTER_START_REGEX = /^[A-Z]:\//i;
87
87
  const DRIVE_LETTER_REGEX = /^[A-Z]:$/i;
88
88
  const UNC_REGEX = /^[/\\]{2}/;
89
89
  const ABSOLUTE_PATH_REGEX = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^~[/\\]|^[A-Z]:[/\\]/i;
90
90
 
91
91
  //#endregion
92
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/slash.mjs
92
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/slash.mjs
93
93
  /**
94
94
  * Replace backslash to slash
95
95
  *
@@ -102,7 +102,7 @@ function slash(path) {
102
102
  }
103
103
 
104
104
  //#endregion
105
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/is-type.mjs
105
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/is-type.mjs
106
106
  /**
107
107
  * Check if the path is an absolute path.
108
108
  *
@@ -126,7 +126,7 @@ function isAbsolute(path) {
126
126
  }
127
127
 
128
128
  //#endregion
129
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/join-paths.mjs
129
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/join-paths.mjs
130
130
  function normalizeWindowsPath(input = "") {
131
131
  if (!input) return input;
132
132
  return input.replace(/\\/g, "/").replace(DRIVE_LETTER_START_REGEX, (r) => r.toUpperCase());
@@ -243,7 +243,7 @@ function normalizeString(path, allowAboveRoot) {
243
243
  }
244
244
 
245
245
  //#endregion
246
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs
246
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs
247
247
  /**
248
248
  * A running list of common acronyms and their meanings.
249
249
  *
@@ -654,7 +654,7 @@ Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.di
654
654
  Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.description]));
655
655
 
656
656
  //#endregion
657
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/combine.mjs
657
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/combine.mjs
658
658
  /**
659
659
  * Combine two strings with a space in between.
660
660
  *
@@ -667,7 +667,7 @@ function combine(acc, str) {
667
667
  }
668
668
 
669
669
  //#endregion
670
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs
670
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs
671
671
  /**
672
672
  * Convert a camelCase or PascalCase string to a snake_case string.
673
673
  *
@@ -679,7 +679,7 @@ function decamelize(value) {
679
679
  }
680
680
 
681
681
  //#endregion
682
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/articles.mjs
682
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/articles.mjs
683
683
  const ARTICLES = [
684
684
  "a",
685
685
  "an",
@@ -687,7 +687,7 @@ const ARTICLES = [
687
687
  ];
688
688
 
689
689
  //#endregion
690
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs
690
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs
691
691
  const CONJUNCTIONS = [
692
692
  "and",
693
693
  "that",
@@ -717,7 +717,7 @@ const CONJUNCTIONS = [
717
717
  ];
718
718
 
719
719
  //#endregion
720
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs
720
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs
721
721
  const PREPOSITIONS = [
722
722
  "about",
723
723
  "above",
@@ -783,7 +783,7 @@ const PREPOSITIONS = [
783
783
  ];
784
784
 
785
785
  //#endregion
786
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs
786
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs
787
787
  const SPECIAL_CASES = [
788
788
  "2FA",
789
789
  "4K",
@@ -834,7 +834,7 @@ const SPECIAL_CASES = [
834
834
  ];
835
835
 
836
836
  //#endregion
837
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs
837
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs
838
838
  /**
839
839
  * Handle special words in a title.
840
840
  *
@@ -860,7 +860,7 @@ function formatSpecialCases(value, index, words, options) {
860
860
  }
861
861
 
862
862
  //#endregion
863
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs
863
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs
864
864
  /**
865
865
  * Upper case the first character of an input string.
866
866
  *
@@ -875,7 +875,7 @@ function upperCaseFirst(input) {
875
875
  }
876
876
 
877
877
  //#endregion
878
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/title-case.mjs
878
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/title-case.mjs
879
879
  /**
880
880
  * Convert a string to title case.
881
881
  *
@@ -888,7 +888,7 @@ function titleCase$1(input, options) {
888
888
  }
889
889
 
890
890
  //#endregion
891
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/get-env-paths.mjs
891
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/get-env-paths.mjs
892
892
  const homedir = node_os.default.homedir();
893
893
  const tmpdir = node_os.default.tmpdir();
894
894
  const macos = (orgId) => {
@@ -966,7 +966,7 @@ function getEnvPaths(options = {}) {
966
966
  }
967
967
 
968
968
  //#endregion
969
- //#region ../../node_modules/.pnpm/@stryke+fs@0.33.63_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.18_@swc+helpers@0_c7d5763b9f424f5f33bc33dcc935ce61/node_modules/@stryke/fs/dist/exists.mjs
969
+ //#region ../../node_modules/.pnpm/@stryke+fs@0.33.64_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@0_519d46efa63a9dc425b667fedf027f52/node_modules/@stryke/fs/dist/exists.mjs
970
970
  /**
971
971
  * Check if a file exists
972
972
  *
@@ -978,7 +978,7 @@ function existsSync(filePath) {
978
978
  }
979
979
 
980
980
  //#endregion
981
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs
981
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs
982
982
  /**
983
983
  * Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.
984
984
  *
@@ -1,4 +1,3 @@
1
- import "../chunk-BCHjMept.mjs";
2
1
  import { isError } from "@stryke/type-checks/is-error";
3
2
  import defu from "defu";
4
3
  import { createNodesFromFiles } from "@nx/devkit";
@@ -20,7 +19,7 @@ import { createJiti } from "jiti";
20
19
  import { readNxJson } from "nx/src/config/nx-json.js";
21
20
  import { readTargetsFromPackageJson } from "nx/src/utils/package-json.js";
22
21
 
23
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs
22
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs
24
23
  /**
25
24
  * A list of Nx input strings that describe the Powerlines configuration file
26
25
  */
@@ -52,14 +51,14 @@ const CONFIG_INPUTS = [
52
51
  ];
53
52
 
54
53
  //#endregion
55
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/regex.mjs
54
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/regex.mjs
56
55
  const DRIVE_LETTER_START_REGEX = /^[A-Z]:\//i;
57
56
  const DRIVE_LETTER_REGEX = /^[A-Z]:$/i;
58
57
  const UNC_REGEX = /^[/\\]{2}/;
59
58
  const ABSOLUTE_PATH_REGEX = /^[/\\](?![/\\])|^[/\\]{2}(?!\.)|^~[/\\]|^[A-Z]:[/\\]/i;
60
59
 
61
60
  //#endregion
62
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/slash.mjs
61
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/slash.mjs
63
62
  /**
64
63
  * Replace backslash to slash
65
64
  *
@@ -72,7 +71,7 @@ function slash(path) {
72
71
  }
73
72
 
74
73
  //#endregion
75
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/is-type.mjs
74
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/is-type.mjs
76
75
  /**
77
76
  * Check if the path is an absolute path.
78
77
  *
@@ -96,7 +95,7 @@ function isAbsolute(path) {
96
95
  }
97
96
 
98
97
  //#endregion
99
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/join-paths.mjs
98
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/join-paths.mjs
100
99
  function normalizeWindowsPath(input = "") {
101
100
  if (!input) return input;
102
101
  return input.replace(/\\/g, "/").replace(DRIVE_LETTER_START_REGEX, (r) => r.toUpperCase());
@@ -213,7 +212,7 @@ function normalizeString(path, allowAboveRoot) {
213
212
  }
214
213
 
215
214
  //#endregion
216
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs
215
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs
217
216
  /**
218
217
  * A running list of common acronyms and their meanings.
219
218
  *
@@ -624,7 +623,7 @@ Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.di
624
623
  Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.description]));
625
624
 
626
625
  //#endregion
627
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/combine.mjs
626
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/combine.mjs
628
627
  /**
629
628
  * Combine two strings with a space in between.
630
629
  *
@@ -637,7 +636,7 @@ function combine(acc, str) {
637
636
  }
638
637
 
639
638
  //#endregion
640
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs
639
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs
641
640
  /**
642
641
  * Convert a camelCase or PascalCase string to a snake_case string.
643
642
  *
@@ -649,7 +648,7 @@ function decamelize(value) {
649
648
  }
650
649
 
651
650
  //#endregion
652
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/articles.mjs
651
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/articles.mjs
653
652
  const ARTICLES = [
654
653
  "a",
655
654
  "an",
@@ -657,7 +656,7 @@ const ARTICLES = [
657
656
  ];
658
657
 
659
658
  //#endregion
660
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs
659
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs
661
660
  const CONJUNCTIONS = [
662
661
  "and",
663
662
  "that",
@@ -687,7 +686,7 @@ const CONJUNCTIONS = [
687
686
  ];
688
687
 
689
688
  //#endregion
690
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs
689
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs
691
690
  const PREPOSITIONS = [
692
691
  "about",
693
692
  "above",
@@ -753,7 +752,7 @@ const PREPOSITIONS = [
753
752
  ];
754
753
 
755
754
  //#endregion
756
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs
755
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs
757
756
  const SPECIAL_CASES = [
758
757
  "2FA",
759
758
  "4K",
@@ -804,7 +803,7 @@ const SPECIAL_CASES = [
804
803
  ];
805
804
 
806
805
  //#endregion
807
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs
806
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs
808
807
  /**
809
808
  * Handle special words in a title.
810
809
  *
@@ -830,7 +829,7 @@ function formatSpecialCases(value, index, words, options) {
830
829
  }
831
830
 
832
831
  //#endregion
833
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs
832
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs
834
833
  /**
835
834
  * Upper case the first character of an input string.
836
835
  *
@@ -845,7 +844,7 @@ function upperCaseFirst(input) {
845
844
  }
846
845
 
847
846
  //#endregion
848
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/title-case.mjs
847
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/title-case.mjs
849
848
  /**
850
849
  * Convert a string to title case.
851
850
  *
@@ -858,7 +857,7 @@ function titleCase$1(input, options) {
858
857
  }
859
858
 
860
859
  //#endregion
861
- //#region ../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/get-env-paths.mjs
860
+ //#region ../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/get-env-paths.mjs
862
861
  const homedir = os.homedir();
863
862
  const tmpdir = os.tmpdir();
864
863
  const macos = (orgId) => {
@@ -936,7 +935,7 @@ function getEnvPaths(options = {}) {
936
935
  }
937
936
 
938
937
  //#endregion
939
- //#region ../../node_modules/.pnpm/@stryke+fs@0.33.63_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.18_@swc+helpers@0_c7d5763b9f424f5f33bc33dcc935ce61/node_modules/@stryke/fs/dist/exists.mjs
938
+ //#region ../../node_modules/.pnpm/@stryke+fs@0.33.64_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@0_519d46efa63a9dc425b667fedf027f52/node_modules/@stryke/fs/dist/exists.mjs
940
939
  /**
941
940
  * Check if a file exists
942
941
  *
@@ -948,7 +947,7 @@ function existsSync$1(filePath) {
948
947
  }
949
948
 
950
949
  //#endregion
951
- //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs
950
+ //#region ../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs
952
951
  /**
953
952
  * Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.
954
953
  *
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":["joinPaths","titleCase","joinPaths","titleCase","existsSync","existsSync$1","existsSync"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/regex.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/slash.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/is-type.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/path/src/join-paths.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/combine.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/articles.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/string-format/src/title-case.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.80_@types+picomatch@4.0.2_nx@22.6.1_@swc-node+register@1.11.1_@swc+cor_41216bf7e00b4911311d60ce1beade8c/node_modules/@stryke/env/dist/get-env-paths.mjs","../../../../node_modules/.pnpm/@stryke+fs@0.33.63_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.18_@swc+helpers@0_c7d5763b9f424f5f33bc33dcc935ce61/node_modules/@stryke/fs/dist/exists.mjs","../../../../node_modules/.pnpm/@powerlines+nx@0.11.298_67e4e454f99fcecbdb022af586e4d5de/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs","../../src/plugin/index.ts"],"sourcesContent":["//#region src/helpers/constants.ts\n/**\n* A list of Nx input strings that describe the Powerlines configuration file\n*/\nconst CONFIG_INPUTS = [\n\t\"{projectRoot}/{framework}.json\",\n\t\"{projectRoot}/{framework}.*.json\",\n\t\"{projectRoot}/{framework}.jsonc\",\n\t\"{projectRoot}/{framework}.*.jsonc\",\n\t\"{projectRoot}/{framework}.json5\",\n\t\"{projectRoot}/{framework}.*.json5\",\n\t\"{projectRoot}/{framework}.yaml\",\n\t\"{projectRoot}/{framework}.*.yaml\",\n\t\"{projectRoot}/{framework}.yml\",\n\t\"{projectRoot}/{framework}.*.yml\",\n\t\"{projectRoot}/{framework}.toml\",\n\t\"{projectRoot}/{framework}.*.toml\",\n\t\"{projectRoot}/{framework}.config.js\",\n\t\"{projectRoot}/{framework}.*.config.js\",\n\t\"{projectRoot}/{framework}.config.cjs\",\n\t\"{projectRoot}/{framework}.*.config.cjs\",\n\t\"{projectRoot}/{framework}.config.mjs\",\n\t\"{projectRoot}/{framework}.*.config.mjs\",\n\t\"{projectRoot}/{framework}.config.ts\",\n\t\"{projectRoot}/{framework}.*.config.ts\",\n\t\"{projectRoot}/{framework}.config.cts\",\n\t\"{projectRoot}/{framework}.*.config.cts\",\n\t\"{projectRoot}/{framework}.config.mts\",\n\t\"{projectRoot}/{framework}.*.config.mts\"\n];\n\n//#endregion\nexport { CONFIG_INPUTS };\n//# sourceMappingURL=constants.mjs.map","//#region ../path/src/regex.ts\nconst DRIVE_LETTER_START_REGEX = /^[A-Z]:\\//i;\nconst DRIVE_LETTER_REGEX = /^[A-Z]:$/i;\nconst UNC_REGEX = /^[/\\\\]{2}/;\nconst ABSOLUTE_PATH_REGEX = /^[/\\\\](?![/\\\\])|^[/\\\\]{2}(?!\\.)|^~[/\\\\]|^[A-Z]:[/\\\\]/i;\n\n//#endregion\nexport { ABSOLUTE_PATH_REGEX, DRIVE_LETTER_REGEX, DRIVE_LETTER_START_REGEX, UNC_REGEX };\n//# sourceMappingURL=regex.mjs.map","//#region ../path/src/slash.ts\n/**\n* Replace backslash to slash\n*\n* @param path - The string to replace\n* @returns The string with replaced backslashes\n*/\nfunction slash(path) {\n\tif (path.startsWith(\"\\\\\\\\?\\\\\")) return path;\n\treturn path.replace(/\\\\/g, \"/\");\n}\n\n//#endregion\nexport { slash };\n//# sourceMappingURL=slash.mjs.map","import { ABSOLUTE_PATH_REGEX } from \"./regex.mjs\";\nimport { slash } from \"./slash.mjs\";\n\n//#region ../path/src/is-type.ts\n/**\n* Check if the path is an absolute path.\n*\n* @param path - The path to check\n* @returns An indicator specifying if the path is an absolute path\n*/\nfunction isAbsolutePath(path) {\n\treturn ABSOLUTE_PATH_REGEX.test(slash(path));\n}\n/**\n* Check if the path is an absolute path.\n*\n* @remarks\n* This is an alias for {@link isAbsolutePath}.\n*\n* @param path - The path to check\n* @returns An indicator specifying if the path is an absolute path\n*/\nfunction isAbsolute(path) {\n\treturn isAbsolutePath(path);\n}\n\n//#endregion\nexport { isAbsolute };\n//# sourceMappingURL=is-type.mjs.map","import { DRIVE_LETTER_REGEX, DRIVE_LETTER_START_REGEX, UNC_REGEX } from \"./regex.mjs\";\nimport { slash } from \"./slash.mjs\";\nimport { isAbsolute } from \"./is-type.mjs\";\n\n//#region ../path/src/join-paths.ts\nfunction normalizeWindowsPath(input = \"\") {\n\tif (!input) return input;\n\treturn input.replace(/\\\\/g, \"/\").replace(DRIVE_LETTER_START_REGEX, (r) => r.toUpperCase());\n}\nfunction correctPaths(path) {\n\tif (!path || path.length === 0) return \".\";\n\tpath = normalizeWindowsPath(path);\n\tconst isUNCPath = path.match(UNC_REGEX);\n\tconst isPathAbsolute = isAbsolute(path);\n\tconst trailingSeparator = path[path.length - 1] === \"/\";\n\tpath = normalizeString(path, !isPathAbsolute);\n\tif (path.length === 0) {\n\t\tif (isPathAbsolute) return \"/\";\n\t\treturn trailingSeparator ? \"./\" : \".\";\n\t}\n\tif (trailingSeparator) path += \"/\";\n\tif (DRIVE_LETTER_REGEX.test(path)) path += \"/\";\n\tif (isUNCPath) {\n\t\tif (!isPathAbsolute) return `//./${path}`;\n\t\treturn `//${path}`;\n\t}\n\treturn isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;\n}\n/**\n* Joins all given path segments together using the platform-specific separator as a delimiter.\n*\n* @remarks\n* Multiple segments can be provided as separate arguments. The resulting path is normalized to remove any redundant or unnecessary segments.\n*\n* @example\n* ```ts\n* import { joinPaths } from 'stryke/path';\n*\n* const fullPath = joinPaths('folder1', 'folder2', '..', 'folder3', 'file.txt');\n* console.log(fullPath); // Output: 'folder1/folder3/file.txt'\n*\n* const absolutePath = joinPaths('/root', 'folder', '.', 'subfolder', 'file.txt');\n* console.log(absolutePath); // Output: '/root/folder/subfolder/file.txt'\n*\n* const windowsPath = joinPaths('C:\\\\', 'Users', 'Public', '..', 'Documents', 'file.txt');\n* console.log(windowsPath); // Output: 'C:/Users/Documents/file.txt'\n*\n* const uncPath = joinPaths('\\\\\\\\Server\\\\Share', 'Folder', 'File.txt');\n* console.log(uncPath); // Output: '//Server/Share/Folder/File.txt'\n* ```\n*\n* @param segments - The path segments to join.\n* @returns The joined and normalized path string.\n*/\nfunction joinPaths(...segments) {\n\tlet result = \"\";\n\tfor (const segment of segments) if (segment && slash(segment).replaceAll(/\\//g, \"\") !== \".\") {\n\t\tif (result) if (slash(segment).replaceAll(/\\//g, \"\") === \"..\") result = slash(result).replace(/\\/+$/, \"\").replace(/\\/*[^/]+$/, \"\");\n\t\telse result = `${slash(result).replace(/\\/+$/, \"\")}/${slash(segment).replace(/^\\/+/, \"\")}`;\n\t\telse if (slash(segment).replaceAll(/\\//g, \"\") !== \"..\") result = segment;\n\t}\n\treturn correctPaths(result);\n}\n/**\n* Resolves a string path, resolving '.' and '.' segments and allowing paths above the root.\n*\n* @param path - The path to normalize.\n* @param allowAboveRoot - Whether to allow the resulting path to be above the root directory.\n* @returns the normalized path string.\n*/\nfunction normalizeString(path, allowAboveRoot) {\n\tlet res = \"\";\n\tlet lastSegmentLength = 0;\n\tlet lastSlash = -1;\n\tlet dots = 0;\n\tlet char = null;\n\tfor (let index = 0; index <= path.length; ++index) {\n\t\tif (index < path.length) char = path[index];\n\t\telse if (char === \"/\") break;\n\t\telse char = \"/\";\n\t\tif (char === \"/\") {\n\t\t\tif (lastSlash === index - 1 || dots === 1) {} else if (dots === 2) {\n\t\t\t\tif (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== \".\" || res[res.length - 2] !== \".\") {\n\t\t\t\t\tif (res.length > 2) {\n\t\t\t\t\t\tconst lastSlashIndex = res.lastIndexOf(\"/\");\n\t\t\t\t\t\tif (lastSlashIndex === -1) {\n\t\t\t\t\t\t\tres = \"\";\n\t\t\t\t\t\t\tlastSegmentLength = 0;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tres = res.slice(0, lastSlashIndex);\n\t\t\t\t\t\t\tlastSegmentLength = res.length - 1 - res.lastIndexOf(\"/\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlastSlash = index;\n\t\t\t\t\t\tdots = 0;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t} else if (res.length > 0) {\n\t\t\t\t\t\tres = \"\";\n\t\t\t\t\t\tlastSegmentLength = 0;\n\t\t\t\t\t\tlastSlash = index;\n\t\t\t\t\t\tdots = 0;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (allowAboveRoot) {\n\t\t\t\t\tres += res.length > 0 ? \"/..\" : \"..\";\n\t\t\t\t\tlastSegmentLength = 2;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (res.length > 0) res += `/${path.slice(lastSlash + 1, index)}`;\n\t\t\t\telse res = path.slice(lastSlash + 1, index);\n\t\t\t\tlastSegmentLength = index - lastSlash - 1;\n\t\t\t}\n\t\t\tlastSlash = index;\n\t\t\tdots = 0;\n\t\t} else if (char === \".\" && dots !== -1) ++dots;\n\t\telse dots = -1;\n\t}\n\treturn res;\n}\n\n//#endregion\nexport { joinPaths };\n//# sourceMappingURL=join-paths.mjs.map","//#region ../string-format/src/acronyms.ts\n/**\n* A running list of common acronyms and their meanings.\n*\n* @remarks\n* This list is not exhaustive and may be updated over time.\n*/\nconst ACRONYMS = {\n\t\"2D\": {\n\t\tdescription: \"Two-Dimensional\",\n\t\tdisplay: \"2d\"\n\t},\n\t\"3D\": {\n\t\tdescription: \"Three-Dimensional\",\n\t\tdisplay: \"3d\"\n\t},\n\t\"4D\": {\n\t\tdescription: \"Four-Dimensional\",\n\t\tdisplay: \"4d\"\n\t},\n\t\"5G\": { description: \"Fifth Generation (mobile networks)\" },\n\t\"6G\": { description: \"Sixth Generation (mobile networks)\" },\n\t\"7G\": { description: \"Seventh Generation (mobile networks)\" },\n\t\"8G\": { description: \"Eighth Generation (mobile networks)\" },\n\tACID: { description: \"Atomicity, Consistency, Isolation, Durability\" },\n\tAITA: { description: \"Am I The Asshole\" },\n\tAES: { description: \"Advanced Encryption Standard\" },\n\tAI: { description: \"Artificial Intelligence\" },\n\tAJAX: { description: \"Asynchronous JavaScript and XML\" },\n\tAPI: { description: \"Application Programming Interface\" },\n\tAR: { description: \"Augmented Reality\" },\n\tASCII: { description: \"American Standard Code for Information Interchange\" },\n\tATF: { description: \"Bureau of Alcohol, Tobacco, Firearms and Explosives\" },\n\tATM: { description: \"Automated Teller Machine\" },\n\tB2B: { description: \"Business to Business\" },\n\tB2C: { description: \"Business to Consumer\" },\n\tBATFE: { description: \"Bureau of Alcohol, Tobacco, Firearms and Explosives\" },\n\tBFF: { description: \"Best Friends Forever\" },\n\tBFFS: { description: \"Best Friends Forever (plural)\" },\n\tBI: { description: \"Business Intelligence\" },\n\tBIOS: { description: \"Basic Input/Output System\" },\n\tBGP: { description: \"Border Gateway Protocol\" },\n\tBOM: { description: \"Bill of Materials / Byte Order Mark\" },\n\tBSON: { description: \"Binary JSON\" },\n\tBYOD: { description: \"Bring Your Own Device\" },\n\tC2C: { description: \"Consumer to Consumer\" },\n\tCAGR: { description: \"Compound Annual Growth Rate\" },\n\tCAPTCHA: { description: \"Completely Automated Public Turing test to tell Computers and Humans Apart\" },\n\tCCTV: { description: \"Closed-Circuit Television\" },\n\tCD: { description: \"Continuous Delivery / Compact Disc\" },\n\tCDN: { description: \"Content Delivery Network\" },\n\tCDP: { description: \"Customer Data Platform\" },\n\tCDT: { description: \"Central Daylight Time\" },\n\tCIA: { description: \"Central Intelligence Agency\" },\n\tCI: { description: \"Continuous Integration\" },\n\t\"CI/CD\": { description: \"Continuous Integration/Continuous Delivery\" },\n\tCIAM: { description: \"Customer Identity and Access Management\" },\n\tCICD: {\n\t\tdescription: \"Continuous Integration Continuous Delivery\",\n\t\tdisplay: \"CI/CD\"\n\t},\n\tCLI: { description: \"Command Line Interface\" },\n\tCMDB: { description: \"Configuration Management Database\" },\n\tCORS: { description: \"Cross-Origin Resource Sharing\" },\n\tCPA: { description: \"Certified Public Accountant\" },\n\tCPU: { description: \"Central Processing Unit\" },\n\tCRUD: { description: \"Create, Read, Update, Delete\" },\n\tCSR: { description: \"Certificate Signing Request / Corporate Social Responsibility\" },\n\tCSS: { description: \"Cascading Style Sheets\" },\n\tCST: { description: \"Central Standard Time\" },\n\tCTA: { description: \"Call To Action\" },\n\tCWD: { description: \"Current Working Directory\" },\n\tCX: { description: \"Customer Experience\" },\n\tDAG: { description: \"Directed Acyclic Graph\" },\n\tDBMS: { description: \"Database Management System\" },\n\tDDOS: {\n\t\tdescription: \"Distributed Denial of Service\",\n\t\tdisplay: \"DDoS\"\n\t},\n\tDEA: { description: \"Drug Enforcement Administration\" },\n\tDEVENV: {\n\t\tdescription: \"Devenv\",\n\t\tdisplay: \"Devenv\"\n\t},\n\tDEVOPS: {\n\t\tdescription: \"Development Operations\",\n\t\tdisplay: \"DevOps\"\n\t},\n\tDHS: { description: \"Department of Homeland Security\" },\n\tDEST: { description: \"Destination\" },\n\tDESTDIR: { description: \"Destination Directory\" },\n\tDESTPATH: { description: \"Destination Path\" },\n\tDIRENV: {\n\t\tdescription: \"DirEnv\",\n\t\tdisplay: \"DirEnv\"\n\t},\n\tDNC: { description: \"Democratic National Committee / Do Not Call\" },\n\tDNS: { description: \"Domain Name System\" },\n\tDNSSEC: { description: \"Domain Name System Security Extensions\" },\n\tDOD: {\n\t\tdescription: \"Department of Defense\",\n\t\tdisplay: \"DoD\"\n\t},\n\tDOJ: {\n\t\tdescription: \"Department of Justice\",\n\t\tdisplay: \"DoJ\"\n\t},\n\tDOM: { description: \"Document Object Model\" },\n\tDOT: {\n\t\tdescription: \"Department of Transportation\",\n\t\tdisplay: \"DoT\"\n\t},\n\tDOTENV: {\n\t\tdescription: \"Dotenv (.env)\",\n\t\tdisplay: \"Dotenv\"\n\t},\n\tDR: { description: \"Disaster Recovery\" },\n\tDRM: { description: \"Digital Rights Management\" },\n\tDSN: { description: \"Data Source Name\" },\n\tDWH: { description: \"Data Warehouse\" },\n\tE2E: { description: \"End to End\" },\n\tEAI: { description: \"Enterprise Application Integration\" },\n\tEDT: { description: \"Eastern Daylight Time\" },\n\tEEA: { description: \"European Economic Area\" },\n\tEKS: { description: \"Elastic Kubernetes Service\" },\n\tEOF: { description: \"End Of File\" },\n\tEOD: { description: \"End Of Day / Explosive Ordnance Disposal\" },\n\tEPA: { description: \"Environmental Protection Agency\" },\n\tER: { description: \"Emergency Room / Entity Relationship\" },\n\tEST: { description: \"Eastern Standard Time\" },\n\tETC: { description: \"Et Cetera\" },\n\tETL: { description: \"Extract, Transform, Load\" },\n\tEULA: { description: \"End User License Agreement\" },\n\tFAAS: {\n\t\tdescription: \"Function as a Service\",\n\t\tdisplay: \"FaaS\"\n\t},\n\tFAQ: {\n\t\tdescription: \"Frequently Asked Questions\",\n\t\tdisplay: \"FAQs\"\n\t},\n\tFAQS: { description: \"Frequently Asked Questions\" },\n\tFBI: { description: \"Federal Bureau of Investigation\" },\n\tFCC: { description: \"Federal Communications Commission\" },\n\tFDA: { description: \"Food and Drug Administration\" },\n\tFIDO: { description: \"Fast IDentity Online\" },\n\tFLOTUS: { description: \"First Lady of the United States\" },\n\tFQDN: { description: \"Fully Qualified Domain Name\" },\n\tFTC: { description: \"Federal Trade Commission\" },\n\tFTP: { description: \"File Transfer Protocol\" },\n\tGC: { description: \"Garbage Collection\" },\n\tGCP: { description: \"Google Cloud Platform\" },\n\tGDPR: { description: \"General Data Protection Regulation\" },\n\tGMT: { description: \"Greenwich Mean Time\" },\n\tGOP: { description: \"Grand Old Party\" },\n\tGPU: { description: \"Graphics Processing Unit\" },\n\tGUID: { description: \"Globally Unique Identifier\" },\n\tGUI: { description: \"Graphical User Interface\" },\n\tGZIP: { description: \"GNU Zip\" },\n\tHCI: { description: \"Human Computer Interaction / Hyper-Converged Infrastructure\" },\n\tHDD: { description: \"Hard Disk Drive\" },\n\tHDFS: { description: \"Hadoop Distributed File System\" },\n\tHHS: { description: \"Health and Human Services\" },\n\tHIPAA: { description: \"Health Insurance Portability and Accountability Act\" },\n\tHMAC: { description: \"Hash-based Message Authentication Code\" },\n\tHOTP: { description: \"HMAC-based One-Time Password\" },\n\tHSM: { description: \"Hardware Security Module\" },\n\tHTML: { description: \"HyperText Markup Language\" },\n\tHTTP: { description: \"HyperText Transfer Protocol (HTTP)\" },\n\t\"HTTP/2\": { description: \"HyperText Transfer Protocol Version 2 (HTTP/2)\" },\n\t\"HTTP/2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\t\"HTTP/3\": { description: \"HyperText Transfer Protocol Version 3 (HTTP/3)\" },\n\t\"HTTP/3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\tHTTP2: {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\t\"HTTP2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\tHTTP3: {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\t\"HTTP3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\tHTTPS: { description: \"HyperText Transfer Protocol Secure (HTTPS)\" },\n\t\"HTTPS/2\": { description: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\" },\n\t\"HTTPS/2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\t\"HTTPS/3\": { description: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\" },\n\t\"HTTPS/3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\tHTTPS2: {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\t\"HTTPS2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\tHTTPS3: {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\t\"HTTPS3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\tIAAS: {\n\t\tdescription: \"Infrastructure as a Service\",\n\t\tdisplay: \"IaaS\"\n\t},\n\tIAM: { description: \"Identity and Access Management\" },\n\tIAMM: { description: \"Identity and Access Management and Monitoring\" },\n\tIAMT: { description: \"Identity and Access Management Tool\" },\n\tID: {\n\t\tdescription: \"Identifier\",\n\t\tdisplay: \"Id\"\n\t},\n\tIFTTT: { description: \"If This Then That\" },\n\tIMAP: { description: \"Internet Message Access Protocol\" },\n\tIO: { description: \"Input/Output\" },\n\tIP: { description: \"Internet Protocol\" },\n\tIPFS: { description: \"InterPlanetary File System\" },\n\tIPS: { description: \"Intrusion Prevention System\" },\n\tISO: { description: \"International Organization for Standardization\" },\n\tIQ: {\n\t\tdescription: \"Intelligence Quotient\",\n\t\tdisplay: \"IQ\"\n\t},\n\tIOT: {\n\t\tdescription: \"Internet of Things\",\n\t\tdisplay: \"IoT\"\n\t},\n\tJSON: { description: \"JavaScript Object Notation\" },\n\tJSONP: { description: \"JSON with Padding\" },\n\tJWT: { description: \"JSON Web Token\" },\n\tK8S: {\n\t\tdescription: \"Kubernetes\",\n\t\tdisplay: \"K8s\"\n\t},\n\tKMS: { description: \"Key Management Service\" },\n\tKPI: { description: \"Key Performance Indicator\" },\n\tKV: { description: \"Key Value\" },\n\tLAN: { description: \"Local Area Network\" },\n\tLHS: { description: \"Left Hand Side\" },\n\tLPGA: { description: \"Ladies Professional Golf Association\" },\n\tLXC: { description: \"Linux Containers\" },\n\tMDT: { description: \"Mountain Daylight Time\" },\n\tMFA: { description: \"Multi-Factor Authentication\" },\n\tML: { description: \"Machine Learning\" },\n\tMLB: { description: \"Major League Baseball\" },\n\tMLOps: { description: \"Machine Learning Operations\" },\n\tMPA: { description: \"Multi-Page Application\" },\n\tMST: { description: \"Mountain Standard Time\" },\n\tMVC: { description: \"Model View Controller\" },\n\tMVP: { description: \"Minimum Viable Product / Most Valuable Player\" },\n\tNAIA: { description: \"National Association of Intercollegiate Athletics\" },\n\tNAS: { description: \"Network Attached Storage\" },\n\tNASA: { description: \"National Aeronautics and Space Administration\" },\n\tNASCAR: { description: \"National Association for Stock Car Auto Racing\" },\n\tNAT: { description: \"Network Address Translation\" },\n\tNBA: { description: \"National Basketball Association\" },\n\tNCAA: { description: \"National Collegiate Athletic Association\" },\n\tNDA: { description: \"Non-Disclosure Agreement\" },\n\tNFS: { description: \"Network File System\" },\n\tNHL: { description: \"National Hockey League\" },\n\tNIST: { description: \"National Institute of Standards and Technology\" },\n\tNLP: { description: \"Natural Language Processing\" },\n\tNPS: { description: \"Net Promoter Score\" },\n\tNRA: { description: \"National Rifle Association\" },\n\tNSFW: { description: \"Not Safe For Work\" },\n\tNX: {\n\t\tdescription: \"Nx\",\n\t\tdisplay: \"Nx\"\n\t},\n\tOCR: { description: \"Optical Character Recognition\" },\n\tOEM: { description: \"Original Equipment Manufacturer\" },\n\tOKR: { description: \"Objectives and Key Results\" },\n\tOLAP: { description: \"Online Analytical Processing\" },\n\tOLTP: { description: \"Online Transaction Processing\" },\n\tOOP: { description: \"Object Oriented Programming\" },\n\tORM: { description: \"Object Relational Mapping\" },\n\tOS: { description: \"Operating System\" },\n\tOSINT: { description: \"Open Source Intelligence\" },\n\tOSS: { description: \"Open Source Software\" },\n\tOTP: { description: \"One-Time Password\" },\n\tP2P: { description: \"Peer to Peer\" },\n\tPAAS: {\n\t\tdescription: \"Platform as a Service\",\n\t\tdisplay: \"PaaS\"\n\t},\n\tPCI: { description: \"Payment Card Industry\" },\n\tPDP: { description: \"Policy Decision Point / Product Detail Page\" },\n\tPDT: { description: \"Pacific Daylight Time\" },\n\tPGA: { description: \"Professional Golfers' Association\" },\n\tPOTUS: { description: \"President of the United States\" },\n\tPP: { description: \"Pages / PayPal / Percentage Points\" },\n\tPST: { description: \"Pacific Standard Time\" },\n\tPTO: { description: \"Paid Time Off / Power Take-Off\" },\n\tPKI: { description: \"Public Key Infrastructure\" },\n\tPWA: { description: \"Progressive Web App\" },\n\tPX: { description: \"Pixel\" },\n\tQA: { description: \"Quality Assurance\" },\n\tR2: { description: \"R2\" },\n\tRAID: { description: \"Redundant Array of Independent Disks\" },\n\tRAM: { description: \"Random Access Memory\" },\n\tRDS: { description: \"Relational Database Service\" },\n\tREST: { description: \"Representational State Transfer\" },\n\tRHS: { description: \"Right Hand Side\" },\n\tROI: { description: \"Return on Investment\" },\n\tRPC: { description: \"Remote Procedure Call\" },\n\tRPA: { description: \"Robotic Process Automation\" },\n\tRSC: { description: \"React Server Components\" },\n\tRSS: { description: \"Really Simple Syndication\" },\n\tRUM: { description: \"Real User Monitoring\" },\n\tS3: { description: \"Simple Storage Service (S3)\" },\n\tSAN: { description: \"Storage Area Network\" },\n\tSASE: { description: \"Secure Access Service Edge\" },\n\tSCOTUS: { description: \"Supreme Court of the United States\" },\n\tSDLC: { description: \"Software Development Life Cycle\" },\n\tSDK: { description: \"Software Development Kit\" },\n\tSEC: { description: \"Securities and Exchange Commission\" },\n\tSEO: { description: \"Search Engine Optimization\" },\n\tSFTP: { description: \"SSH File Transfer Protocol / Secure File Transfer Protocol\" },\n\tSIEM: { description: \"Security Information and Event Management\" },\n\tSLA: { description: \"Service Level Agreement\" },\n\tSMB: { description: \"Server Message Block / Small and Medium Business\" },\n\tSMTP: { description: \"Simple Mail Transfer Protocol\" },\n\tSOAP: { description: \"Simple Object Access Protocol\" },\n\tSOA: { description: \"Service Oriented Architecture\" },\n\tSOC: { description: \"Security Operations Center / System on Chip\" },\n\tSPA: { description: \"Single Page Application\" },\n\tSPDY: { description: \"Speedy (pronounced \\\"SPeeDY\\\")\" },\n\tSPF: { description: \"Sender Policy Framework\" },\n\tSQL: { description: \"Structured Query Language\" },\n\tSRC: { description: \"Source\" },\n\tSRCDIR: { description: \"Source Directory\" },\n\tSRCPATH: { description: \"Source Path\" },\n\tSRV: { description: \"Service\" },\n\tSRE: { description: \"Site Reliability Engineering\" },\n\tSSH: { description: \"Secure Shell\" },\n\tSSDL: { description: \"Secure Software Development Lifecycle\" },\n\tSSG: { description: \"Static Site Generation\" },\n\tSSR: { description: \"Server Side Rendering\" },\n\tSSO: { description: \"Single Sign-On\" },\n\tSSL: { description: \"Secure Sockets Layer\" },\n\tTDD: { description: \"Test Driven Development\" },\n\tTLD: { description: \"Top Level Domain\" },\n\tTLS: { description: \"Transport Layer Security\" },\n\t\"TLS1.3\": { description: \"Transport Layer Security 1.3\" },\n\tTOR: { description: \"The Onion Router\" },\n\tTOTP: { description: \"Time-based One-Time Password\" },\n\tTRPC: { description: \"TypeScript Remote Procedure Call\" },\n\tTSA: { description: \"Transportation Security Administration\" },\n\tTTL: { description: \"Time To Live\" },\n\tUDP: { description: \"User Datagram Protocol\" },\n\tUI: { description: \"User Interface\" },\n\tUID: { description: \"Unique Identifier\" },\n\tURI: { description: \"Uniform Resource Identifier\" },\n\tURL: { description: \"Uniform Resource Locator\" },\n\tUSOPC: { description: \"United States Olympic & Paralympic Committee\" },\n\tUSPS: { description: \"United States Postal Service\" },\n\tUSTA: { description: \"United States Tennis Association\" },\n\tUTF: { description: \"Unicode Transformation Format\" },\n\tUTC: { description: \"Coordinated Universal Time\" },\n\tUUID: { description: \"Universally Unique Identifier\" },\n\tUX: { description: \"User Experience\" },\n\tVM: { description: \"Virtual Machine\" },\n\tVLAN: { description: \"Virtual Local Area Network\" },\n\tVPN: { description: \"Virtual Private Network\" },\n\tVPPA: { description: \"Video Privacy Protection Act\" },\n\tVR: { description: \"Virtual Reality\" },\n\tWAF: { description: \"Web Application Firewall\" },\n\tWAN: { description: \"Wide Area Network\" },\n\tWNBA: { description: \"Women's National Basketball Association\" },\n\tWLAN: { description: \"Wireless Local Area Network\" },\n\tWPA: { description: \"Wi-Fi Protected Access\" },\n\tWPA2: { description: \"Wi-Fi Protected Access II\" },\n\tWPA3: { description: \"Wi-Fi Protected Access III\" },\n\tWWW: { description: \"World Wide Web\" },\n\tWYSIWYG: { description: \"What You See Is What You Get\" },\n\tXACML: { description: \"eXtensible Access Control Markup Language\" },\n\tXDG: { description: \"Cross-Desktop Group\" },\n\tXML: { description: \"eXtensible Markup Language\" },\n\tXSRF: { description: \"Cross-Site Request Forgery\" },\n\tXSS: { description: \"Cross-Site Scripting\" },\n\tXR: { description: \"Extended Reality\" },\n\tYAML: { description: \"YAML Ain't Markup Language\" },\n\tYMCA: { description: \"Young Men's Christian Association\" },\n\tYWCA: { description: \"Young Women's Christian Association\" },\n\tZTA: { description: \"Zero Trust Architecture\" }\n};\nconst ACRONYM_DISPLAY = Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.display ?? key]));\nconst ACRONYM_DESCRIPTION = Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.description]));\nconst ACRONYM_LIST = Object.keys(ACRONYMS);\n\n//#endregion\nexport { ACRONYMS };\n//# sourceMappingURL=acronyms.mjs.map","//#region ../string-format/src/combine.ts\n/**\n* Combine two strings with a space in between.\n*\n* @param acc - The accumulated string.\n* @param str - The string to add.\n* @returns The combined string.\n*/\nfunction combine(acc, str) {\n\treturn `${acc} ${str}`;\n}\n\n//#endregion\nexport { combine };\n//# sourceMappingURL=combine.mjs.map","//#region ../string-format/src/decamelize.ts\n/**\n* Convert a camelCase or PascalCase string to a snake_case string.\n*\n* @param value - The camelCase or PascalCase string to convert.\n* @returns The converted snake_case string.\n*/\nfunction decamelize(value) {\n\treturn value.replace(/([a-z\\d])([A-Z])/g, \"$1_$2\").replace(/([A-Z]+)([A-Z][a-z\\d]+)/g, \"$1_$2\").toLowerCase();\n}\n\n//#endregion\nexport { decamelize };\n//# sourceMappingURL=decamelize.mjs.map","//#region ../string-format/src/articles.ts\nconst ARTICLES = [\n\t\"a\",\n\t\"an\",\n\t\"the\"\n];\n\n//#endregion\nexport { ARTICLES };\n//# sourceMappingURL=articles.mjs.map","//#region ../string-format/src/conjunctions.ts\nconst CONJUNCTIONS = [\n\t\"and\",\n\t\"that\",\n\t\"but\",\n\t\"or\",\n\t\"as\",\n\t\"if\",\n\t\"when\",\n\t\"than\",\n\t\"because\",\n\t\"while\",\n\t\"where\",\n\t\"after\",\n\t\"so\",\n\t\"though\",\n\t\"since\",\n\t\"until\",\n\t\"whether\",\n\t\"before\",\n\t\"although\",\n\t\"nor\",\n\t\"like\",\n\t\"once\",\n\t\"unless\",\n\t\"now\",\n\t\"except\"\n];\n\n//#endregion\nexport { CONJUNCTIONS };\n//# sourceMappingURL=conjunctions.mjs.map","//#region ../string-format/src/prepositions.ts\nconst PREPOSITIONS = [\n\t\"about\",\n\t\"above\",\n\t\"across\",\n\t\"after\",\n\t\"against\",\n\t\"along\",\n\t\"among\",\n\t\"around\",\n\t\"at\",\n\t\"because of\",\n\t\"before\",\n\t\"behind\",\n\t\"below\",\n\t\"beneath\",\n\t\"beside\",\n\t\"besides\",\n\t\"between\",\n\t\"beyond\",\n\t\"but\",\n\t\"by\",\n\t\"concerning\",\n\t\"despite\",\n\t\"down\",\n\t\"during\",\n\t\"except\",\n\t\"excepting\",\n\t\"for\",\n\t\"from\",\n\t\"in\",\n\t\"in front of\",\n\t\"inside\",\n\t\"in spite of\",\n\t\"instead of\",\n\t\"into\",\n\t\"like\",\n\t\"near\",\n\t\"of\",\n\t\"off\",\n\t\"on\",\n\t\"onto\",\n\t\"out\",\n\t\"outside\",\n\t\"over\",\n\t\"past\",\n\t\"regarding\",\n\t\"since\",\n\t\"through\",\n\t\"throughout\",\n\t\"to\",\n\t\"toward\",\n\t\"under\",\n\t\"underneath\",\n\t\"until\",\n\t\"up\",\n\t\"upon\",\n\t\"up to\",\n\t\"with\",\n\t\"within\",\n\t\"without\",\n\t\"with regard to\",\n\t\"with respect to\"\n];\n\n//#endregion\nexport { PREPOSITIONS };\n//# sourceMappingURL=prepositions.mjs.map","//#region ../string-format/src/special-cases.ts\nconst SPECIAL_CASES = [\n\t\"2FA\",\n\t\"4K\",\n\t\"5K\",\n\t\"8K\",\n\t\"AGI\",\n\t\"BI\",\n\t\"ChatGPT\",\n\t\"CTA\",\n\t\"DateTime\",\n\t\"FMS\",\n\t\"GitHub\",\n\t\"GPT\",\n\t\"HD\",\n\t\"IBMid\",\n\t\"IDs\",\n\t\"iMac\",\n\t\"IMAX\",\n\t\"iOS\",\n\t\"iPad\",\n\t\"iPhone\",\n\t\"iPod\",\n\t\"LDAP\",\n\t\"LinkedIn\",\n\t\"LLM\",\n\t\"macOS\",\n\t\"McDonalds\",\n\t\"MCP\",\n\t\"ML\",\n\t\"MySQL\",\n\t\"NLG\",\n\t\"NLP\",\n\t\"NLU\",\n\t\"OpenAI\",\n\t\"PDFs\",\n\t\"PIM\",\n\t\"PEFT\",\n\t\"pH\",\n\t\"PostgreSQL\",\n\t\"SEO\",\n\t\"TTS\",\n\t\"UHD\",\n\t\"UUID\",\n\t\"XSS\",\n\t\"YouTube\",\n\t\"CSpell\",\n\t\"ESLint\"\n];\n\n//#endregion\nexport { SPECIAL_CASES };\n//# sourceMappingURL=special-cases.mjs.map","import { ACRONYMS } from \"./acronyms.mjs\";\nimport { ARTICLES } from \"./articles.mjs\";\nimport { CONJUNCTIONS } from \"./conjunctions.mjs\";\nimport { PREPOSITIONS } from \"./prepositions.mjs\";\nimport { SPECIAL_CASES } from \"./special-cases.mjs\";\n\n//#region ../string-format/src/format-special-cases.ts\n/**\n* Handle special words in a title.\n*\n* @see https://apastyle.apa.org/style-grammar-guidelines/capitalization/title-case\n*\n* @param value - The word to handle\n* @param index - The index of the word in the title\n* @param words - The full title as an array of words\n* @returns The formatted word\n*/\nfunction formatSpecialCases(value, index, words, options) {\n\tconst lowercaseStr = value.toLowerCase();\n\tconst uppercaseStr = value.toUpperCase();\n\tfor (const special of SPECIAL_CASES) if (special.toLowerCase() === lowercaseStr) return special;\n\tif (ACRONYMS[uppercaseStr]) return options?.useDescriptions !== false ? ACRONYMS[uppercaseStr].description : ACRONYMS[uppercaseStr].display || uppercaseStr;\n\tif (index === 0) return value;\n\tif (index === words.length - 1) return value;\n\tif (value.length >= 4) return value;\n\tif (PREPOSITIONS.includes(lowercaseStr)) return lowercaseStr;\n\tif (CONJUNCTIONS.includes(lowercaseStr)) return lowercaseStr;\n\tif (ARTICLES.includes(lowercaseStr)) return lowercaseStr;\n\treturn value;\n}\n\n//#endregion\nexport { formatSpecialCases };\n//# sourceMappingURL=format-special-cases.mjs.map","//#region ../string-format/src/upper-case-first.ts\n/**\n* Upper case the first character of an input string.\n*\n* @remarks\n* \"Thisisanexample\"\n*\n* @param input - The input string.\n* @returns The capitalized string.\n*/\nfunction upperCaseFirst(input) {\n\treturn input ? input.charAt(0).toUpperCase() + input.slice(1) : input;\n}\n\n//#endregion\nexport { upperCaseFirst };\n//# sourceMappingURL=upper-case-first.mjs.map","import { ACRONYMS } from \"./acronyms.mjs\";\nimport { combine } from \"./combine.mjs\";\nimport { decamelize } from \"./decamelize.mjs\";\nimport { formatSpecialCases } from \"./format-special-cases.mjs\";\nimport { upperCaseFirst } from \"./upper-case-first.mjs\";\n\n//#region ../string-format/src/title-case.ts\n/**\n* Convert a string to title case.\n*\n* @param input - The input string to convert.\n* @param options - Options for formatting special cases.\n* @returns The title cased string.\n*/\nfunction titleCase(input, options) {\n\treturn input?.split(/\\s+-\\s+/).map((segment) => decamelize(segment).split(/[\\s\\-_]/).map(upperCaseFirst).map((value) => options?.expandAcronyms ? ACRONYMS[value]?.description || value : value).map((value, index, array) => formatSpecialCases(value, index, array, options)).reduce(combine)).join(\" - \");\n}\n\n//#endregion\nexport { titleCase };\n//# sourceMappingURL=title-case.mjs.map","import { joinPaths } from \"./path/src/join-paths.mjs\";\nimport { titleCase } from \"./string-format/src/title-case.mjs\";\nimport os from \"node:os\";\nimport path from \"node:path\";\n\n//#region src/get-env-paths.ts\nconst homedir = os.homedir();\nconst tmpdir = os.tmpdir();\nconst macos = (orgId) => {\n\tconst library = joinPaths(homedir, \"Library\");\n\treturn {\n\t\tdata: joinPaths(library, \"Application Support\", orgId),\n\t\tconfig: joinPaths(library, \"Preferences\", orgId),\n\t\tcache: joinPaths(library, \"Caches\", orgId),\n\t\tlog: joinPaths(library, \"Logs\", orgId),\n\t\ttemp: joinPaths(tmpdir, orgId)\n\t};\n};\nconst windows = (orgId) => {\n\tconst appData = process.env.APPDATA || joinPaths(homedir, \"AppData\", \"Roaming\");\n\tconst localAppData = process.env.LOCALAPPDATA || joinPaths(homedir, \"AppData\", \"Local\");\n\tconst windowsFormattedOrgId = titleCase(orgId).trim().replace(/\\s+/g, \"\");\n\treturn {\n\t\tdata: joinPaths(localAppData, windowsFormattedOrgId, \"Data\"),\n\t\tconfig: joinPaths(appData, windowsFormattedOrgId, \"Config\"),\n\t\tcache: joinPaths(localAppData, \"Cache\", orgId),\n\t\tlog: joinPaths(localAppData, windowsFormattedOrgId, \"Log\"),\n\t\ttemp: joinPaths(tmpdir, orgId)\n\t};\n};\nconst linux = (orgId) => {\n\tconst username = path.basename(homedir);\n\treturn {\n\t\tdata: joinPaths(process.env.XDG_DATA_HOME || joinPaths(homedir, \".local\", \"share\"), orgId),\n\t\tconfig: joinPaths(process.env.XDG_CONFIG_HOME || joinPaths(homedir, \".config\"), orgId),\n\t\tcache: joinPaths(process.env.XDG_CACHE_HOME || joinPaths(homedir, \".cache\"), orgId),\n\t\tlog: joinPaths(process.env.XDG_STATE_HOME || joinPaths(homedir, \".local\", \"state\"), orgId),\n\t\ttemp: process.env.DEVENV_RUNTIME || process.env.XDG_RUNTIME_DIR ? joinPaths(process.env.DEVENV_RUNTIME || process.env.XDG_RUNTIME_DIR, orgId) : joinPaths(tmpdir, username, orgId)\n\t};\n};\n/**\n* Get paths for storing things like data, config, logs, and cache in the current runtime environment.\n*\n* @remarks\n* On macOS, directories are generally created in `~/Library/Application Support/<name>`.\n* On Windows, directories are generally created in `%AppData%/<name>`.\n* On Linux, directories are generally created in `~/.config/<name>` - this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/).\n*\n* If the `STORM_DATA_DIR`, `STORM_CONFIG_DIR`, `STORM_CACHE_DIR`, `STORM_LOG_DIR`, or `STORM_TEMP_DIR` environment variables are set, they will be used instead of the default paths.\n*\n* @param options - Parameters used to determine the specific paths for the current project/runtime environment\n* @returns An object containing the various paths for the runtime environment\n*/\nfunction getEnvPaths(options = {}) {\n\tlet orgId = options.orgId || \"storm-software\";\n\tif (!orgId) throw new Error(\"You need to provide an orgId to the `getEnvPaths` function\");\n\tif (options.suffix) orgId += `-${typeof options.suffix === \"string\" ? options.suffix : \"nodejs\"}`;\n\tlet result = {};\n\tif (process.platform === \"darwin\") result = macos(orgId);\n\telse if (process.platform === \"win32\") result = windows(orgId);\n\telse result = linux(orgId);\n\tif (process.env.STORM_DATA_DIR) result.data = process.env.STORM_DATA_DIR;\n\telse if (process.env.STORM_CONFIG_DIR) result.config = process.env.STORM_CONFIG_DIR;\n\telse if (process.env.STORM_CACHE_DIR) result.cache = process.env.STORM_CACHE_DIR;\n\telse if (process.env.STORM_LOG_DIR) result.log = process.env.STORM_LOG_DIR;\n\telse if (process.env.STORM_TEMP_DIR) result.temp = process.env.STORM_TEMP_DIR;\n\tif (options.workspaceRoot) {\n\t\tresult.cache ??= joinPaths(options.workspaceRoot, \"node_modules\", \".cache\", orgId);\n\t\tresult.temp ??= joinPaths(options.workspaceRoot, \"tmp\", orgId);\n\t\tresult.log ??= joinPaths(result.temp, \"logs\");\n\t\tresult.config ??= joinPaths(options.workspaceRoot, \".config\", orgId);\n\t}\n\treturn Object.keys(result).reduce((ret, key) => {\n\t\tif (result[key]) {\n\t\t\tconst filePath = result[key];\n\t\t\tret[key] = options.appId && options.appId !== options.orgId && options.appId !== options.nestedDir ? joinPaths(filePath, options.appId) : filePath;\n\t\t\tif (options.nestedDir && options.nestedDir !== options.orgId && options.nestedDir !== options.appId) ret[key] = joinPaths(ret[key], options.nestedDir);\n\t\t}\n\t\treturn ret;\n\t}, {});\n}\n\n//#endregion\nexport { getEnvPaths };\n//# sourceMappingURL=get-env-paths.mjs.map","import { existsSync as existsSync$1 } from \"node:fs\";\nimport { access, constants as constants$1 } from \"node:fs/promises\";\n\n//#region src/exists.ts\n/**\n* Check if a file exists\n*\n* @param filePath - The file path to check\n* @returns An indicator specifying if the file exists\n*/\nfunction existsSync(filePath) {\n\treturn existsSync$1(filePath);\n}\n/**\n* Check if a file exists\n*\n* @param filePath - The file path to check\n* @returns An indicator specifying if the file exists\n*/\nasync function exists(filePath) {\n\treturn access(filePath, constants$1.F_OK).then(() => true).catch(() => false);\n}\n\n//#endregion\nexport { exists, existsSync };\n//# sourceMappingURL=exists.mjs.map","import { CONFIG_INPUTS } from \"./constants.mjs\";\nimport { isError } from \"@stryke/type-checks/is-error\";\nimport defu from \"defu\";\nimport { createNodesFromFiles } from \"@nx/devkit\";\nimport { withNamedInputs } from \"@storm-software/workspace-tools/utils/nx-json\";\nimport { getProjectConfigFromProjectRoot, getProjectRoot, getRoot } from \"@storm-software/workspace-tools/utils/plugin-helpers\";\nimport { addProjectTag, setDefaultProjectTags } from \"@storm-software/workspace-tools/utils/project-tags\";\nimport { getEnvPaths } from \"@stryke/env/get-env-paths\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { murmurhash } from \"@stryke/hash\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { camelCase } from \"@stryke/string-format/camel-case\";\nimport { kebabCase } from \"@stryke/string-format/kebab-case\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { createJiti } from \"jiti\";\nimport { readFile } from \"node:fs/promises\";\nimport { readNxJson } from \"nx/src/config/nx-json.js\";\nimport { readTargetsFromPackageJson } from \"nx/src/utils/package-json.js\";\n\n//#region src/helpers/plugin-utilities.ts\n/**\n* Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.\n*\n* @param framework - The framework name to use in the input strings\n* @returns An array of Nx input strings for the configuration file\n*/\nfunction getNxTargetInputs(framework) {\n\treturn CONFIG_INPUTS.map((input) => input.replace(\"{framework}\", framework));\n}\n/**\n* Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.\n*\n* @param framework - The framework name to use in the input strings\n* @returns An array of Nx input strings for the configuration file\n*/\nfunction getNxPluginInputs(framework) {\n\treturn `**/{${getNxTargetInputs(framework).map((input) => input.replace(\"{projectRoot}/\", \"\")).join(\",\")}}`;\n}\n/**\n* Creates an Nx plugin that integrates Powerlines into the Nx build process.\n*\n* @param opts - Options for creating the Nx plugin\n* @returns A CreateNodesV2 function that can be used as an Nx plugin\n*/\nfunction createNxPlugin(opts) {\n\tconst framework = opts?.framework || \"powerlines\";\n\tconst title = `${titleCase(framework)} Nx Plugin`;\n\ttry {\n\t\tconst name = opts?.name || `${framework}/nx/plugin`;\n\t\tconst artifactsFolder = opts?.artifactsFolder || `{projectRoot}/.${framework}`;\n\t\tconst targetInputs = getNxTargetInputs(framework);\n\t\tconst pluginInputs = getNxPluginInputs(framework);\n\t\treturn [pluginInputs, async (configFiles, options, contextV2) => {\n\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Initializing the ${title} for the following inputs: ${pluginInputs}`);\n\t\t\tconst envPaths = getEnvPaths({\n\t\t\t\torgId: \"storm-software\",\n\t\t\t\tappId: framework,\n\t\t\t\tworkspaceRoot: contextV2.workspaceRoot\n\t\t\t});\n\t\t\tif (!envPaths.cache) throw new Error(\"The cache directory could not be determined.\");\n\t\t\tconst nxJson = readNxJson(contextV2.workspaceRoot);\n\t\t\tconst resolver = createJiti(contextV2.workspaceRoot, {\n\t\t\t\tdebug: !!options?.debug,\n\t\t\t\tinteropDefault: true,\n\t\t\t\tfsCache: joinPaths(envPaths.cache, \"nx-plugin\", murmurhash(contextV2.workspaceRoot, { maxLength: 45 }), \"jiti\"),\n\t\t\t\tmoduleCache: true\n\t\t\t});\n\t\t\tlet loadUserConfigFile;\n\t\t\ttry {\n\t\t\t\tloadUserConfigFile = await resolver.import(resolver.esmResolve(\"powerlines/config\")).then((mod) => mod?.loadUserConfigFile);\n\t\t\t} catch (error) {\n\t\t\t\tconsole.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to load user configuration file function: ${isError(error) ? error.message : \"Unknown error\"}`);\n\t\t\t}\n\t\t\treturn createNodesFromFiles(async (configFile, _, context) => {\n\t\t\t\ttry {\n\t\t\t\t\tconst projectRoot = getProjectRoot(configFile, contextV2.workspaceRoot);\n\t\t\t\t\tif (!projectRoot) {\n\t\t\t\t\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - package.json and ${framework} configuration files (i.e. ${framework}.config.ts) must be located in the project root directory: ${configFile}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst root = getRoot(projectRoot, context);\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);\n\t\t\t\t\tlet userConfig = {};\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif (loadUserConfigFile) userConfig = await loadUserConfigFile(projectRoot, contextV2.workspaceRoot, resolver, \"build\", \"development\", configFile, framework);\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\tconsole.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to load user configuration for project in ${projectRoot} - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown error\"} \\n\\nThis error can occur if the project depends on another package in the workspace and the dependent package has not been built yet. To resolve this issue, please ensure that all dependent packages have been built successfully.`);\n\t\t\t\t\t}\n\t\t\t\t\tif (!existsSync(joinPaths(contextV2.workspaceRoot, projectRoot, \"package.json\"))) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Cannot find \\`package.json\\` file in the project's root directory (path: \"${joinPaths(contextV2.workspaceRoot, projectRoot)}\"). Skipping project configuration.`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst packageJsonContent = await readFile(joinPaths(contextV2.workspaceRoot, projectRoot, \"package.json\"), \"utf8\");\n\t\t\t\t\tif (!packageJsonContent) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No package.json file found for project in root directory ${projectRoot}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst packageJson = JSON.parse(packageJsonContent);\n\t\t\t\t\tif (!userConfig.configFile && !packageJson?.[camelCase(framework)]) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst projectConfig = getProjectConfigFromProjectRoot(projectRoot, packageJson);\n\t\t\t\t\tif (!projectConfig) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No project configuration found for project in root directory ${projectRoot}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst targets = readTargetsFromPackageJson(packageJson, nxJson, projectRoot, context.workspaceRoot);\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);\n\t\t\t\t\tif (options?.clean !== false && !targets[options?.clean?.targetName || \"clean\"]) targets[options?.clean?.targetName || \"clean\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : withNamedInputs(targetInputs, [options?.clean?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.clean?.outputs,\n\t\t\t\t\t\texecutor: options?.clean?.executor || `@${framework}/nx:${options?.clean?.targetName || \"clean\"}`,\n\t\t\t\t\t\tdependsOn: options?.clean?.dependsOn ?? [`^${options?.clean?.targetName || \"clean\"}`],\n\t\t\t\t\t\tdefaultConfiguration: options?.clean?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.prepare !== false && !targets[options?.prepare?.targetName || \"prepare\"]) targets[options?.prepare?.targetName || \"prepare\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.prepare?.inputs) ? options.prepare.inputs : withNamedInputs(targetInputs, [options?.prepare?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.prepare?.outputs ?? [artifactsFolder],\n\t\t\t\t\t\texecutor: options?.prepare?.executor || `@${framework}/nx:${options?.prepare?.targetName || \"prepare\"}`,\n\t\t\t\t\t\tdependsOn: options?.prepare?.dependsOn ?? [`^${options?.prepare?.targetName || \"build\"}`, options?.clean !== false && `${options?.clean?.targetName || \"clean\"}`].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.prepare?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.build !== false && !targets[options?.build?.targetName || \"build\"]) targets[options?.build?.targetName || \"build\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.build?.inputs) ? options.build.inputs : withNamedInputs(targetInputs, [options?.build?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.build?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\tdependsOn: options?.build?.dependsOn ?? [`^${options?.build?.targetName || \"build\"}`, userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.build?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.lint !== false && !targets[options?.lint?.targetName || \"lint\"]) targets[options?.lint?.targetName || \"lint\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.lint?.inputs) ? options.lint.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.lint?.inputs ? [options.lint.inputs] : [\"linting\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.lint?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || \"lint\"}`,\n\t\t\t\t\t\tdependsOn: options?.lint?.dependsOn ?? [`^${options?.lint?.targetName || \"lint\"}`, userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.lint?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.docs !== false && !targets[options?.docs?.targetName || \"docs\"]) targets[options?.docs?.targetName || \"docs\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.docs?.inputs) ? options.docs.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.docs?.inputs ? [options.docs.inputs] : [\"documentation\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.docs?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || \"docs\"}`,\n\t\t\t\t\t\tdependsOn: options?.docs?.dependsOn ?? [\n\t\t\t\t\t\t\t`^${options?.docs?.targetName || \"docs\"}`,\n\t\t\t\t\t\t\toptions?.build !== false && `${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\t\tuserConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"\n\t\t\t\t\t\t].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.docs?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.deploy !== false && !targets[options?.deploy?.targetName || \"deploy\"]) targets[options?.deploy?.targetName || \"deploy\"] = {\n\t\t\t\t\t\tinputs: Array.isArray(options?.deploy?.inputs) ? options.deploy.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.deploy?.inputs ? [options.deploy.inputs] : [\"documentation\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.deploy?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || \"deploy\"}`,\n\t\t\t\t\t\tdependsOn: options?.deploy?.dependsOn ?? [\n\t\t\t\t\t\t\t`^${options?.deploy?.targetName || \"deploy\"}`,\n\t\t\t\t\t\t\toptions?.build !== false && `${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\t\tuserConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"\n\t\t\t\t\t\t].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.deploy?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tsetDefaultProjectTags(projectConfig, name);\n\t\t\t\t\taddProjectTag(projectConfig, framework, projectConfig.projectType || \"library\", { overwrite: true });\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);\n\t\t\t\t\treturn { projects: { [root]: defu(projectConfig, {\n\t\t\t\t\t\tname: kebabCase(userConfig.name),\n\t\t\t\t\t\tprojectType: projectConfig.projectType || \"library\",\n\t\t\t\t\t\troot,\n\t\t\t\t\t\tsourceRoot: joinPaths(root, \"src\"),\n\t\t\t\t\t\ttargets\n\t\t\t\t\t}) } };\n\t\t\t\t} catch (error) {\n\t\t\t\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to process the project configuration for file \"${configFile}\" - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown fatal error\"}`);\n\t\t\t\t\treturn {};\n\t\t\t\t}\n\t\t\t}, configFiles, options, contextV2);\n\t\t}];\n\t} catch (error) {\n\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown fatal error during plugin initialization\"}`);\n\t\tthrow new Error(`Failed to initialize the ${title} - ${isError(error) ? error.message : isSetString(error) ? error : \"See previous logs for more details\"}`, { cause: error instanceof Error ? error : void 0 });\n\t}\n}\n\n//#endregion\nexport { createNxPlugin, getNxPluginInputs, getNxTargetInputs };\n//# sourceMappingURL=plugin-utilities.mjs.map","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { CreateNodesV2 } from \"@nx/devkit\";\nimport type { NxPluginOptions } from \"@powerlines/nx\";\nimport { createNxPlugin } from \"@powerlines/nx/helpers/plugin-utilities\";\n\nexport const createNodesV2: CreateNodesV2<NxPluginOptions> =\n createNxPlugin<NxPluginOptions>({\n framework: \"shell-shock\"\n });\n"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"mappings":"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;CAClD,MAAM,EAAE,aAAa,8BAA8B;CACnD,KAAK,EAAE,aAAa,wBAAwB;CAC5C,IAAI,EAAE,aAAa,oBAAoB;CACvC,MAAM,EAAE,aAAa,8BAA8B;CACnD,MAAM,EAAE,aAAa,qCAAqC;CAC1D,MAAM,EAAE,aAAa,uCAAuC;CAC5D,KAAK,EAAE,aAAa,2BAA2B;CAC/C;AACuB,OAAO,YAAY,OAAO,QAAQ,SAAS,CAAC,KAAK,CAAC,KAAK,WAAW,CAAC,KAAK,MAAM,WAAW,IAAI,CAAC,CAAC;AAC3F,OAAO,YAAY,OAAO,QAAQ,SAAS,CAAC,KAAK,CAAC,KAAK,WAAW,CAAC,KAAK,MAAM,YAAY,CAAC,CAAC;;;;;;;;;;;AChZxH,SAAS,QAAQ,KAAK,KAAK;AAC1B,QAAO,GAAG,IAAI,GAAG;;;;;;;;;;;ACFlB,SAAS,WAAW,OAAO;AAC1B,QAAO,MAAM,QAAQ,qBAAqB,QAAQ,CAAC,QAAQ,4BAA4B,QAAQ,CAAC,aAAa;;;;;ACP9G,MAAM,WAAW;CAChB;CACA;CACA;CACA;;;;ACJD,MAAM,eAAe;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;;AC1BD,MAAM,eAAe;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;;AC9DD,MAAM,gBAAgB;CACrB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA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"}
1
+ {"version":3,"file":"index.mjs","names":["joinPaths","titleCase","joinPaths","titleCase","existsSync","existsSync$1","existsSync"],"sources":["../../../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/constants.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/regex.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/slash.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/is-type.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/path/src/join-paths.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/acronyms.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/combine.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/decamelize.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/articles.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/conjunctions.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/prepositions.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/special-cases.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/format-special-cases.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/upper-case-first.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/string-format/src/title-case.mjs","../../../../node_modules/.pnpm/@stryke+env@0.20.81_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@_3ad76732613fffed325b0ad6b70ff574/node_modules/@stryke/env/dist/get-env-paths.mjs","../../../../node_modules/.pnpm/@stryke+fs@0.33.64_nx@22.6.1_@swc-node+register@1.11.1_@swc+core@1.15.21_@swc+helpers@0_519d46efa63a9dc425b667fedf027f52/node_modules/@stryke/fs/dist/exists.mjs","../../../../node_modules/.pnpm/@powerlines+nx@0.11.310_9e4119a8bda93da2c2f3b5c9a345b424/node_modules/@powerlines/nx/dist/src/helpers/plugin-utilities.mjs","../../src/plugin/index.ts"],"sourcesContent":["//#region src/helpers/constants.ts\n/**\n* A list of Nx input strings that describe the Powerlines configuration file\n*/\nconst CONFIG_INPUTS = [\n\t\"{projectRoot}/{framework}.json\",\n\t\"{projectRoot}/{framework}.*.json\",\n\t\"{projectRoot}/{framework}.jsonc\",\n\t\"{projectRoot}/{framework}.*.jsonc\",\n\t\"{projectRoot}/{framework}.json5\",\n\t\"{projectRoot}/{framework}.*.json5\",\n\t\"{projectRoot}/{framework}.yaml\",\n\t\"{projectRoot}/{framework}.*.yaml\",\n\t\"{projectRoot}/{framework}.yml\",\n\t\"{projectRoot}/{framework}.*.yml\",\n\t\"{projectRoot}/{framework}.toml\",\n\t\"{projectRoot}/{framework}.*.toml\",\n\t\"{projectRoot}/{framework}.config.js\",\n\t\"{projectRoot}/{framework}.*.config.js\",\n\t\"{projectRoot}/{framework}.config.cjs\",\n\t\"{projectRoot}/{framework}.*.config.cjs\",\n\t\"{projectRoot}/{framework}.config.mjs\",\n\t\"{projectRoot}/{framework}.*.config.mjs\",\n\t\"{projectRoot}/{framework}.config.ts\",\n\t\"{projectRoot}/{framework}.*.config.ts\",\n\t\"{projectRoot}/{framework}.config.cts\",\n\t\"{projectRoot}/{framework}.*.config.cts\",\n\t\"{projectRoot}/{framework}.config.mts\",\n\t\"{projectRoot}/{framework}.*.config.mts\"\n];\n\n//#endregion\nexport { CONFIG_INPUTS };\n//# sourceMappingURL=constants.mjs.map","//#region ../path/src/regex.ts\nconst DRIVE_LETTER_START_REGEX = /^[A-Z]:\\//i;\nconst DRIVE_LETTER_REGEX = /^[A-Z]:$/i;\nconst UNC_REGEX = /^[/\\\\]{2}/;\nconst ABSOLUTE_PATH_REGEX = /^[/\\\\](?![/\\\\])|^[/\\\\]{2}(?!\\.)|^~[/\\\\]|^[A-Z]:[/\\\\]/i;\n\n//#endregion\nexport { ABSOLUTE_PATH_REGEX, DRIVE_LETTER_REGEX, DRIVE_LETTER_START_REGEX, UNC_REGEX };\n//# sourceMappingURL=regex.mjs.map","//#region ../path/src/slash.ts\n/**\n* Replace backslash to slash\n*\n* @param path - The string to replace\n* @returns The string with replaced backslashes\n*/\nfunction slash(path) {\n\tif (path.startsWith(\"\\\\\\\\?\\\\\")) return path;\n\treturn path.replace(/\\\\/g, \"/\");\n}\n\n//#endregion\nexport { slash };\n//# sourceMappingURL=slash.mjs.map","import { ABSOLUTE_PATH_REGEX } from \"./regex.mjs\";\nimport { slash } from \"./slash.mjs\";\n\n//#region ../path/src/is-type.ts\n/**\n* Check if the path is an absolute path.\n*\n* @param path - The path to check\n* @returns An indicator specifying if the path is an absolute path\n*/\nfunction isAbsolutePath(path) {\n\treturn ABSOLUTE_PATH_REGEX.test(slash(path));\n}\n/**\n* Check if the path is an absolute path.\n*\n* @remarks\n* This is an alias for {@link isAbsolutePath}.\n*\n* @param path - The path to check\n* @returns An indicator specifying if the path is an absolute path\n*/\nfunction isAbsolute(path) {\n\treturn isAbsolutePath(path);\n}\n\n//#endregion\nexport { isAbsolute };\n//# sourceMappingURL=is-type.mjs.map","import { DRIVE_LETTER_REGEX, DRIVE_LETTER_START_REGEX, UNC_REGEX } from \"./regex.mjs\";\nimport { slash } from \"./slash.mjs\";\nimport { isAbsolute } from \"./is-type.mjs\";\n\n//#region ../path/src/join-paths.ts\nfunction normalizeWindowsPath(input = \"\") {\n\tif (!input) return input;\n\treturn input.replace(/\\\\/g, \"/\").replace(DRIVE_LETTER_START_REGEX, (r) => r.toUpperCase());\n}\nfunction correctPaths(path) {\n\tif (!path || path.length === 0) return \".\";\n\tpath = normalizeWindowsPath(path);\n\tconst isUNCPath = path.match(UNC_REGEX);\n\tconst isPathAbsolute = isAbsolute(path);\n\tconst trailingSeparator = path[path.length - 1] === \"/\";\n\tpath = normalizeString(path, !isPathAbsolute);\n\tif (path.length === 0) {\n\t\tif (isPathAbsolute) return \"/\";\n\t\treturn trailingSeparator ? \"./\" : \".\";\n\t}\n\tif (trailingSeparator) path += \"/\";\n\tif (DRIVE_LETTER_REGEX.test(path)) path += \"/\";\n\tif (isUNCPath) {\n\t\tif (!isPathAbsolute) return `//./${path}`;\n\t\treturn `//${path}`;\n\t}\n\treturn isPathAbsolute && !isAbsolute(path) ? `/${path}` : path;\n}\n/**\n* Joins all given path segments together using the platform-specific separator as a delimiter.\n*\n* @remarks\n* Multiple segments can be provided as separate arguments. The resulting path is normalized to remove any redundant or unnecessary segments.\n*\n* @example\n* ```ts\n* import { joinPaths } from 'stryke/path';\n*\n* const fullPath = joinPaths('folder1', 'folder2', '..', 'folder3', 'file.txt');\n* console.log(fullPath); // Output: 'folder1/folder3/file.txt'\n*\n* const absolutePath = joinPaths('/root', 'folder', '.', 'subfolder', 'file.txt');\n* console.log(absolutePath); // Output: '/root/folder/subfolder/file.txt'\n*\n* const windowsPath = joinPaths('C:\\\\', 'Users', 'Public', '..', 'Documents', 'file.txt');\n* console.log(windowsPath); // Output: 'C:/Users/Documents/file.txt'\n*\n* const uncPath = joinPaths('\\\\\\\\Server\\\\Share', 'Folder', 'File.txt');\n* console.log(uncPath); // Output: '//Server/Share/Folder/File.txt'\n* ```\n*\n* @param segments - The path segments to join.\n* @returns The joined and normalized path string.\n*/\nfunction joinPaths(...segments) {\n\tlet result = \"\";\n\tfor (const segment of segments) if (segment && slash(segment).replaceAll(/\\//g, \"\") !== \".\") {\n\t\tif (result) if (slash(segment).replaceAll(/\\//g, \"\") === \"..\") result = slash(result).replace(/\\/+$/, \"\").replace(/\\/*[^/]+$/, \"\");\n\t\telse result = `${slash(result).replace(/\\/+$/, \"\")}/${slash(segment).replace(/^\\/+/, \"\")}`;\n\t\telse if (slash(segment).replaceAll(/\\//g, \"\") !== \"..\") result = segment;\n\t}\n\treturn correctPaths(result);\n}\n/**\n* Resolves a string path, resolving '.' and '.' segments and allowing paths above the root.\n*\n* @param path - The path to normalize.\n* @param allowAboveRoot - Whether to allow the resulting path to be above the root directory.\n* @returns the normalized path string.\n*/\nfunction normalizeString(path, allowAboveRoot) {\n\tlet res = \"\";\n\tlet lastSegmentLength = 0;\n\tlet lastSlash = -1;\n\tlet dots = 0;\n\tlet char = null;\n\tfor (let index = 0; index <= path.length; ++index) {\n\t\tif (index < path.length) char = path[index];\n\t\telse if (char === \"/\") break;\n\t\telse char = \"/\";\n\t\tif (char === \"/\") {\n\t\t\tif (lastSlash === index - 1 || dots === 1) {} else if (dots === 2) {\n\t\t\t\tif (res.length < 2 || lastSegmentLength !== 2 || res[res.length - 1] !== \".\" || res[res.length - 2] !== \".\") {\n\t\t\t\t\tif (res.length > 2) {\n\t\t\t\t\t\tconst lastSlashIndex = res.lastIndexOf(\"/\");\n\t\t\t\t\t\tif (lastSlashIndex === -1) {\n\t\t\t\t\t\t\tres = \"\";\n\t\t\t\t\t\t\tlastSegmentLength = 0;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tres = res.slice(0, lastSlashIndex);\n\t\t\t\t\t\t\tlastSegmentLength = res.length - 1 - res.lastIndexOf(\"/\");\n\t\t\t\t\t\t}\n\t\t\t\t\t\tlastSlash = index;\n\t\t\t\t\t\tdots = 0;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t} else if (res.length > 0) {\n\t\t\t\t\t\tres = \"\";\n\t\t\t\t\t\tlastSegmentLength = 0;\n\t\t\t\t\t\tlastSlash = index;\n\t\t\t\t\t\tdots = 0;\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif (allowAboveRoot) {\n\t\t\t\t\tres += res.length > 0 ? \"/..\" : \"..\";\n\t\t\t\t\tlastSegmentLength = 2;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tif (res.length > 0) res += `/${path.slice(lastSlash + 1, index)}`;\n\t\t\t\telse res = path.slice(lastSlash + 1, index);\n\t\t\t\tlastSegmentLength = index - lastSlash - 1;\n\t\t\t}\n\t\t\tlastSlash = index;\n\t\t\tdots = 0;\n\t\t} else if (char === \".\" && dots !== -1) ++dots;\n\t\telse dots = -1;\n\t}\n\treturn res;\n}\n\n//#endregion\nexport { joinPaths };\n//# sourceMappingURL=join-paths.mjs.map","//#region ../string-format/src/acronyms.ts\n/**\n* A running list of common acronyms and their meanings.\n*\n* @remarks\n* This list is not exhaustive and may be updated over time.\n*/\nconst ACRONYMS = {\n\t\"2D\": {\n\t\tdescription: \"Two-Dimensional\",\n\t\tdisplay: \"2d\"\n\t},\n\t\"3D\": {\n\t\tdescription: \"Three-Dimensional\",\n\t\tdisplay: \"3d\"\n\t},\n\t\"4D\": {\n\t\tdescription: \"Four-Dimensional\",\n\t\tdisplay: \"4d\"\n\t},\n\t\"5G\": { description: \"Fifth Generation (mobile networks)\" },\n\t\"6G\": { description: \"Sixth Generation (mobile networks)\" },\n\t\"7G\": { description: \"Seventh Generation (mobile networks)\" },\n\t\"8G\": { description: \"Eighth Generation (mobile networks)\" },\n\tACID: { description: \"Atomicity, Consistency, Isolation, Durability\" },\n\tAITA: { description: \"Am I The Asshole\" },\n\tAES: { description: \"Advanced Encryption Standard\" },\n\tAI: { description: \"Artificial Intelligence\" },\n\tAJAX: { description: \"Asynchronous JavaScript and XML\" },\n\tAPI: { description: \"Application Programming Interface\" },\n\tAR: { description: \"Augmented Reality\" },\n\tASCII: { description: \"American Standard Code for Information Interchange\" },\n\tATF: { description: \"Bureau of Alcohol, Tobacco, Firearms and Explosives\" },\n\tATM: { description: \"Automated Teller Machine\" },\n\tB2B: { description: \"Business to Business\" },\n\tB2C: { description: \"Business to Consumer\" },\n\tBATFE: { description: \"Bureau of Alcohol, Tobacco, Firearms and Explosives\" },\n\tBFF: { description: \"Best Friends Forever\" },\n\tBFFS: { description: \"Best Friends Forever (plural)\" },\n\tBI: { description: \"Business Intelligence\" },\n\tBIOS: { description: \"Basic Input/Output System\" },\n\tBGP: { description: \"Border Gateway Protocol\" },\n\tBOM: { description: \"Bill of Materials / Byte Order Mark\" },\n\tBSON: { description: \"Binary JSON\" },\n\tBYOD: { description: \"Bring Your Own Device\" },\n\tC2C: { description: \"Consumer to Consumer\" },\n\tCAGR: { description: \"Compound Annual Growth Rate\" },\n\tCAPTCHA: { description: \"Completely Automated Public Turing test to tell Computers and Humans Apart\" },\n\tCCTV: { description: \"Closed-Circuit Television\" },\n\tCD: { description: \"Continuous Delivery / Compact Disc\" },\n\tCDN: { description: \"Content Delivery Network\" },\n\tCDP: { description: \"Customer Data Platform\" },\n\tCDT: { description: \"Central Daylight Time\" },\n\tCIA: { description: \"Central Intelligence Agency\" },\n\tCI: { description: \"Continuous Integration\" },\n\t\"CI/CD\": { description: \"Continuous Integration/Continuous Delivery\" },\n\tCIAM: { description: \"Customer Identity and Access Management\" },\n\tCICD: {\n\t\tdescription: \"Continuous Integration Continuous Delivery\",\n\t\tdisplay: \"CI/CD\"\n\t},\n\tCLI: { description: \"Command Line Interface\" },\n\tCMDB: { description: \"Configuration Management Database\" },\n\tCORS: { description: \"Cross-Origin Resource Sharing\" },\n\tCPA: { description: \"Certified Public Accountant\" },\n\tCPU: { description: \"Central Processing Unit\" },\n\tCRUD: { description: \"Create, Read, Update, Delete\" },\n\tCSR: { description: \"Certificate Signing Request / Corporate Social Responsibility\" },\n\tCSS: { description: \"Cascading Style Sheets\" },\n\tCST: { description: \"Central Standard Time\" },\n\tCTA: { description: \"Call To Action\" },\n\tCWD: { description: \"Current Working Directory\" },\n\tCX: { description: \"Customer Experience\" },\n\tDAG: { description: \"Directed Acyclic Graph\" },\n\tDBMS: { description: \"Database Management System\" },\n\tDDOS: {\n\t\tdescription: \"Distributed Denial of Service\",\n\t\tdisplay: \"DDoS\"\n\t},\n\tDEA: { description: \"Drug Enforcement Administration\" },\n\tDEVENV: {\n\t\tdescription: \"Devenv\",\n\t\tdisplay: \"Devenv\"\n\t},\n\tDEVOPS: {\n\t\tdescription: \"Development Operations\",\n\t\tdisplay: \"DevOps\"\n\t},\n\tDHS: { description: \"Department of Homeland Security\" },\n\tDEST: { description: \"Destination\" },\n\tDESTDIR: { description: \"Destination Directory\" },\n\tDESTPATH: { description: \"Destination Path\" },\n\tDIRENV: {\n\t\tdescription: \"DirEnv\",\n\t\tdisplay: \"DirEnv\"\n\t},\n\tDNC: { description: \"Democratic National Committee / Do Not Call\" },\n\tDNS: { description: \"Domain Name System\" },\n\tDNSSEC: { description: \"Domain Name System Security Extensions\" },\n\tDOD: {\n\t\tdescription: \"Department of Defense\",\n\t\tdisplay: \"DoD\"\n\t},\n\tDOJ: {\n\t\tdescription: \"Department of Justice\",\n\t\tdisplay: \"DoJ\"\n\t},\n\tDOM: { description: \"Document Object Model\" },\n\tDOT: {\n\t\tdescription: \"Department of Transportation\",\n\t\tdisplay: \"DoT\"\n\t},\n\tDOTENV: {\n\t\tdescription: \"Dotenv (.env)\",\n\t\tdisplay: \"Dotenv\"\n\t},\n\tDR: { description: \"Disaster Recovery\" },\n\tDRM: { description: \"Digital Rights Management\" },\n\tDSN: { description: \"Data Source Name\" },\n\tDWH: { description: \"Data Warehouse\" },\n\tE2E: { description: \"End to End\" },\n\tEAI: { description: \"Enterprise Application Integration\" },\n\tEDT: { description: \"Eastern Daylight Time\" },\n\tEEA: { description: \"European Economic Area\" },\n\tEKS: { description: \"Elastic Kubernetes Service\" },\n\tEOF: { description: \"End Of File\" },\n\tEOD: { description: \"End Of Day / Explosive Ordnance Disposal\" },\n\tEPA: { description: \"Environmental Protection Agency\" },\n\tER: { description: \"Emergency Room / Entity Relationship\" },\n\tEST: { description: \"Eastern Standard Time\" },\n\tETC: { description: \"Et Cetera\" },\n\tETL: { description: \"Extract, Transform, Load\" },\n\tEULA: { description: \"End User License Agreement\" },\n\tFAAS: {\n\t\tdescription: \"Function as a Service\",\n\t\tdisplay: \"FaaS\"\n\t},\n\tFAQ: {\n\t\tdescription: \"Frequently Asked Questions\",\n\t\tdisplay: \"FAQs\"\n\t},\n\tFAQS: { description: \"Frequently Asked Questions\" },\n\tFBI: { description: \"Federal Bureau of Investigation\" },\n\tFCC: { description: \"Federal Communications Commission\" },\n\tFDA: { description: \"Food and Drug Administration\" },\n\tFIDO: { description: \"Fast IDentity Online\" },\n\tFLOTUS: { description: \"First Lady of the United States\" },\n\tFQDN: { description: \"Fully Qualified Domain Name\" },\n\tFTC: { description: \"Federal Trade Commission\" },\n\tFTP: { description: \"File Transfer Protocol\" },\n\tGC: { description: \"Garbage Collection\" },\n\tGCP: { description: \"Google Cloud Platform\" },\n\tGDPR: { description: \"General Data Protection Regulation\" },\n\tGMT: { description: \"Greenwich Mean Time\" },\n\tGOP: { description: \"Grand Old Party\" },\n\tGPU: { description: \"Graphics Processing Unit\" },\n\tGUID: { description: \"Globally Unique Identifier\" },\n\tGUI: { description: \"Graphical User Interface\" },\n\tGZIP: { description: \"GNU Zip\" },\n\tHCI: { description: \"Human Computer Interaction / Hyper-Converged Infrastructure\" },\n\tHDD: { description: \"Hard Disk Drive\" },\n\tHDFS: { description: \"Hadoop Distributed File System\" },\n\tHHS: { description: \"Health and Human Services\" },\n\tHIPAA: { description: \"Health Insurance Portability and Accountability Act\" },\n\tHMAC: { description: \"Hash-based Message Authentication Code\" },\n\tHOTP: { description: \"HMAC-based One-Time Password\" },\n\tHSM: { description: \"Hardware Security Module\" },\n\tHTML: { description: \"HyperText Markup Language\" },\n\tHTTP: { description: \"HyperText Transfer Protocol (HTTP)\" },\n\t\"HTTP/2\": { description: \"HyperText Transfer Protocol Version 2 (HTTP/2)\" },\n\t\"HTTP/2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\t\"HTTP/3\": { description: \"HyperText Transfer Protocol Version 3 (HTTP/3)\" },\n\t\"HTTP/3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\tHTTP2: {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\t\"HTTP2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 2 (HTTP/2)\",\n\t\tdisplay: \"HTTP2\"\n\t},\n\tHTTP3: {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\t\"HTTP3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Version 3 (HTTP/3)\",\n\t\tdisplay: \"HTTP3\"\n\t},\n\tHTTPS: { description: \"HyperText Transfer Protocol Secure (HTTPS)\" },\n\t\"HTTPS/2\": { description: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\" },\n\t\"HTTPS/2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\t\"HTTPS/3\": { description: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\" },\n\t\"HTTPS/3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\tHTTPS2: {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\t\"HTTPS2.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 2 (HTTPS/2)\",\n\t\tdisplay: \"HTTPS2\"\n\t},\n\tHTTPS3: {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\t\"HTTPS3.0\": {\n\t\tdescription: \"HyperText Transfer Protocol Secure Version 3 (HTTPS/3)\",\n\t\tdisplay: \"HTTPS3\"\n\t},\n\tIAAS: {\n\t\tdescription: \"Infrastructure as a Service\",\n\t\tdisplay: \"IaaS\"\n\t},\n\tIAM: { description: \"Identity and Access Management\" },\n\tIAMM: { description: \"Identity and Access Management and Monitoring\" },\n\tIAMT: { description: \"Identity and Access Management Tool\" },\n\tID: {\n\t\tdescription: \"Identifier\",\n\t\tdisplay: \"Id\"\n\t},\n\tIFTTT: { description: \"If This Then That\" },\n\tIMAP: { description: \"Internet Message Access Protocol\" },\n\tIO: { description: \"Input/Output\" },\n\tIP: { description: \"Internet Protocol\" },\n\tIPFS: { description: \"InterPlanetary File System\" },\n\tIPS: { description: \"Intrusion Prevention System\" },\n\tISO: { description: \"International Organization for Standardization\" },\n\tIQ: {\n\t\tdescription: \"Intelligence Quotient\",\n\t\tdisplay: \"IQ\"\n\t},\n\tIOT: {\n\t\tdescription: \"Internet of Things\",\n\t\tdisplay: \"IoT\"\n\t},\n\tJSON: { description: \"JavaScript Object Notation\" },\n\tJSONP: { description: \"JSON with Padding\" },\n\tJWT: { description: \"JSON Web Token\" },\n\tK8S: {\n\t\tdescription: \"Kubernetes\",\n\t\tdisplay: \"K8s\"\n\t},\n\tKMS: { description: \"Key Management Service\" },\n\tKPI: { description: \"Key Performance Indicator\" },\n\tKV: { description: \"Key Value\" },\n\tLAN: { description: \"Local Area Network\" },\n\tLHS: { description: \"Left Hand Side\" },\n\tLPGA: { description: \"Ladies Professional Golf Association\" },\n\tLXC: { description: \"Linux Containers\" },\n\tMDT: { description: \"Mountain Daylight Time\" },\n\tMFA: { description: \"Multi-Factor Authentication\" },\n\tML: { description: \"Machine Learning\" },\n\tMLB: { description: \"Major League Baseball\" },\n\tMLOps: { description: \"Machine Learning Operations\" },\n\tMPA: { description: \"Multi-Page Application\" },\n\tMST: { description: \"Mountain Standard Time\" },\n\tMVC: { description: \"Model View Controller\" },\n\tMVP: { description: \"Minimum Viable Product / Most Valuable Player\" },\n\tNAIA: { description: \"National Association of Intercollegiate Athletics\" },\n\tNAS: { description: \"Network Attached Storage\" },\n\tNASA: { description: \"National Aeronautics and Space Administration\" },\n\tNASCAR: { description: \"National Association for Stock Car Auto Racing\" },\n\tNAT: { description: \"Network Address Translation\" },\n\tNBA: { description: \"National Basketball Association\" },\n\tNCAA: { description: \"National Collegiate Athletic Association\" },\n\tNDA: { description: \"Non-Disclosure Agreement\" },\n\tNFS: { description: \"Network File System\" },\n\tNHL: { description: \"National Hockey League\" },\n\tNIST: { description: \"National Institute of Standards and Technology\" },\n\tNLP: { description: \"Natural Language Processing\" },\n\tNPS: { description: \"Net Promoter Score\" },\n\tNRA: { description: \"National Rifle Association\" },\n\tNSFW: { description: \"Not Safe For Work\" },\n\tNX: {\n\t\tdescription: \"Nx\",\n\t\tdisplay: \"Nx\"\n\t},\n\tOCR: { description: \"Optical Character Recognition\" },\n\tOEM: { description: \"Original Equipment Manufacturer\" },\n\tOKR: { description: \"Objectives and Key Results\" },\n\tOLAP: { description: \"Online Analytical Processing\" },\n\tOLTP: { description: \"Online Transaction Processing\" },\n\tOOP: { description: \"Object Oriented Programming\" },\n\tORM: { description: \"Object Relational Mapping\" },\n\tOS: { description: \"Operating System\" },\n\tOSINT: { description: \"Open Source Intelligence\" },\n\tOSS: { description: \"Open Source Software\" },\n\tOTP: { description: \"One-Time Password\" },\n\tP2P: { description: \"Peer to Peer\" },\n\tPAAS: {\n\t\tdescription: \"Platform as a Service\",\n\t\tdisplay: \"PaaS\"\n\t},\n\tPCI: { description: \"Payment Card Industry\" },\n\tPDP: { description: \"Policy Decision Point / Product Detail Page\" },\n\tPDT: { description: \"Pacific Daylight Time\" },\n\tPGA: { description: \"Professional Golfers' Association\" },\n\tPOTUS: { description: \"President of the United States\" },\n\tPP: { description: \"Pages / PayPal / Percentage Points\" },\n\tPST: { description: \"Pacific Standard Time\" },\n\tPTO: { description: \"Paid Time Off / Power Take-Off\" },\n\tPKI: { description: \"Public Key Infrastructure\" },\n\tPWA: { description: \"Progressive Web App\" },\n\tPX: { description: \"Pixel\" },\n\tQA: { description: \"Quality Assurance\" },\n\tR2: { description: \"R2\" },\n\tRAID: { description: \"Redundant Array of Independent Disks\" },\n\tRAM: { description: \"Random Access Memory\" },\n\tRDS: { description: \"Relational Database Service\" },\n\tREST: { description: \"Representational State Transfer\" },\n\tRHS: { description: \"Right Hand Side\" },\n\tROI: { description: \"Return on Investment\" },\n\tRPC: { description: \"Remote Procedure Call\" },\n\tRPA: { description: \"Robotic Process Automation\" },\n\tRSC: { description: \"React Server Components\" },\n\tRSS: { description: \"Really Simple Syndication\" },\n\tRUM: { description: \"Real User Monitoring\" },\n\tS3: { description: \"Simple Storage Service (S3)\" },\n\tSAN: { description: \"Storage Area Network\" },\n\tSASE: { description: \"Secure Access Service Edge\" },\n\tSCOTUS: { description: \"Supreme Court of the United States\" },\n\tSDLC: { description: \"Software Development Life Cycle\" },\n\tSDK: { description: \"Software Development Kit\" },\n\tSEC: { description: \"Securities and Exchange Commission\" },\n\tSEO: { description: \"Search Engine Optimization\" },\n\tSFTP: { description: \"SSH File Transfer Protocol / Secure File Transfer Protocol\" },\n\tSIEM: { description: \"Security Information and Event Management\" },\n\tSLA: { description: \"Service Level Agreement\" },\n\tSMB: { description: \"Server Message Block / Small and Medium Business\" },\n\tSMTP: { description: \"Simple Mail Transfer Protocol\" },\n\tSOAP: { description: \"Simple Object Access Protocol\" },\n\tSOA: { description: \"Service Oriented Architecture\" },\n\tSOC: { description: \"Security Operations Center / System on Chip\" },\n\tSPA: { description: \"Single Page Application\" },\n\tSPDY: { description: \"Speedy (pronounced \\\"SPeeDY\\\")\" },\n\tSPF: { description: \"Sender Policy Framework\" },\n\tSQL: { description: \"Structured Query Language\" },\n\tSRC: { description: \"Source\" },\n\tSRCDIR: { description: \"Source Directory\" },\n\tSRCPATH: { description: \"Source Path\" },\n\tSRV: { description: \"Service\" },\n\tSRE: { description: \"Site Reliability Engineering\" },\n\tSSH: { description: \"Secure Shell\" },\n\tSSDL: { description: \"Secure Software Development Lifecycle\" },\n\tSSG: { description: \"Static Site Generation\" },\n\tSSR: { description: \"Server Side Rendering\" },\n\tSSO: { description: \"Single Sign-On\" },\n\tSSL: { description: \"Secure Sockets Layer\" },\n\tTDD: { description: \"Test Driven Development\" },\n\tTLD: { description: \"Top Level Domain\" },\n\tTLS: { description: \"Transport Layer Security\" },\n\t\"TLS1.3\": { description: \"Transport Layer Security 1.3\" },\n\tTOR: { description: \"The Onion Router\" },\n\tTOTP: { description: \"Time-based One-Time Password\" },\n\tTRPC: { description: \"TypeScript Remote Procedure Call\" },\n\tTSA: { description: \"Transportation Security Administration\" },\n\tTTL: { description: \"Time To Live\" },\n\tUDP: { description: \"User Datagram Protocol\" },\n\tUI: { description: \"User Interface\" },\n\tUID: { description: \"Unique Identifier\" },\n\tURI: { description: \"Uniform Resource Identifier\" },\n\tURL: { description: \"Uniform Resource Locator\" },\n\tUSOPC: { description: \"United States Olympic & Paralympic Committee\" },\n\tUSPS: { description: \"United States Postal Service\" },\n\tUSTA: { description: \"United States Tennis Association\" },\n\tUTF: { description: \"Unicode Transformation Format\" },\n\tUTC: { description: \"Coordinated Universal Time\" },\n\tUUID: { description: \"Universally Unique Identifier\" },\n\tUX: { description: \"User Experience\" },\n\tVM: { description: \"Virtual Machine\" },\n\tVLAN: { description: \"Virtual Local Area Network\" },\n\tVPN: { description: \"Virtual Private Network\" },\n\tVPPA: { description: \"Video Privacy Protection Act\" },\n\tVR: { description: \"Virtual Reality\" },\n\tWAF: { description: \"Web Application Firewall\" },\n\tWAN: { description: \"Wide Area Network\" },\n\tWNBA: { description: \"Women's National Basketball Association\" },\n\tWLAN: { description: \"Wireless Local Area Network\" },\n\tWPA: { description: \"Wi-Fi Protected Access\" },\n\tWPA2: { description: \"Wi-Fi Protected Access II\" },\n\tWPA3: { description: \"Wi-Fi Protected Access III\" },\n\tWWW: { description: \"World Wide Web\" },\n\tWYSIWYG: { description: \"What You See Is What You Get\" },\n\tXACML: { description: \"eXtensible Access Control Markup Language\" },\n\tXDG: { description: \"Cross-Desktop Group\" },\n\tXML: { description: \"eXtensible Markup Language\" },\n\tXSRF: { description: \"Cross-Site Request Forgery\" },\n\tXSS: { description: \"Cross-Site Scripting\" },\n\tXR: { description: \"Extended Reality\" },\n\tYAML: { description: \"YAML Ain't Markup Language\" },\n\tYMCA: { description: \"Young Men's Christian Association\" },\n\tYWCA: { description: \"Young Women's Christian Association\" },\n\tZTA: { description: \"Zero Trust Architecture\" }\n};\nconst ACRONYM_DISPLAY = Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.display ?? key]));\nconst ACRONYM_DESCRIPTION = Object.fromEntries(Object.entries(ACRONYMS).map(([key, value]) => [key, value.description]));\nconst ACRONYM_LIST = Object.keys(ACRONYMS);\n\n//#endregion\nexport { ACRONYMS };\n//# sourceMappingURL=acronyms.mjs.map","//#region ../string-format/src/combine.ts\n/**\n* Combine two strings with a space in between.\n*\n* @param acc - The accumulated string.\n* @param str - The string to add.\n* @returns The combined string.\n*/\nfunction combine(acc, str) {\n\treturn `${acc} ${str}`;\n}\n\n//#endregion\nexport { combine };\n//# sourceMappingURL=combine.mjs.map","//#region ../string-format/src/decamelize.ts\n/**\n* Convert a camelCase or PascalCase string to a snake_case string.\n*\n* @param value - The camelCase or PascalCase string to convert.\n* @returns The converted snake_case string.\n*/\nfunction decamelize(value) {\n\treturn value.replace(/([a-z\\d])([A-Z])/g, \"$1_$2\").replace(/([A-Z]+)([A-Z][a-z\\d]+)/g, \"$1_$2\").toLowerCase();\n}\n\n//#endregion\nexport { decamelize };\n//# sourceMappingURL=decamelize.mjs.map","//#region ../string-format/src/articles.ts\nconst ARTICLES = [\n\t\"a\",\n\t\"an\",\n\t\"the\"\n];\n\n//#endregion\nexport { ARTICLES };\n//# sourceMappingURL=articles.mjs.map","//#region ../string-format/src/conjunctions.ts\nconst CONJUNCTIONS = [\n\t\"and\",\n\t\"that\",\n\t\"but\",\n\t\"or\",\n\t\"as\",\n\t\"if\",\n\t\"when\",\n\t\"than\",\n\t\"because\",\n\t\"while\",\n\t\"where\",\n\t\"after\",\n\t\"so\",\n\t\"though\",\n\t\"since\",\n\t\"until\",\n\t\"whether\",\n\t\"before\",\n\t\"although\",\n\t\"nor\",\n\t\"like\",\n\t\"once\",\n\t\"unless\",\n\t\"now\",\n\t\"except\"\n];\n\n//#endregion\nexport { CONJUNCTIONS };\n//# sourceMappingURL=conjunctions.mjs.map","//#region ../string-format/src/prepositions.ts\nconst PREPOSITIONS = [\n\t\"about\",\n\t\"above\",\n\t\"across\",\n\t\"after\",\n\t\"against\",\n\t\"along\",\n\t\"among\",\n\t\"around\",\n\t\"at\",\n\t\"because of\",\n\t\"before\",\n\t\"behind\",\n\t\"below\",\n\t\"beneath\",\n\t\"beside\",\n\t\"besides\",\n\t\"between\",\n\t\"beyond\",\n\t\"but\",\n\t\"by\",\n\t\"concerning\",\n\t\"despite\",\n\t\"down\",\n\t\"during\",\n\t\"except\",\n\t\"excepting\",\n\t\"for\",\n\t\"from\",\n\t\"in\",\n\t\"in front of\",\n\t\"inside\",\n\t\"in spite of\",\n\t\"instead of\",\n\t\"into\",\n\t\"like\",\n\t\"near\",\n\t\"of\",\n\t\"off\",\n\t\"on\",\n\t\"onto\",\n\t\"out\",\n\t\"outside\",\n\t\"over\",\n\t\"past\",\n\t\"regarding\",\n\t\"since\",\n\t\"through\",\n\t\"throughout\",\n\t\"to\",\n\t\"toward\",\n\t\"under\",\n\t\"underneath\",\n\t\"until\",\n\t\"up\",\n\t\"upon\",\n\t\"up to\",\n\t\"with\",\n\t\"within\",\n\t\"without\",\n\t\"with regard to\",\n\t\"with respect to\"\n];\n\n//#endregion\nexport { PREPOSITIONS };\n//# sourceMappingURL=prepositions.mjs.map","//#region ../string-format/src/special-cases.ts\nconst SPECIAL_CASES = [\n\t\"2FA\",\n\t\"4K\",\n\t\"5K\",\n\t\"8K\",\n\t\"AGI\",\n\t\"BI\",\n\t\"ChatGPT\",\n\t\"CTA\",\n\t\"DateTime\",\n\t\"FMS\",\n\t\"GitHub\",\n\t\"GPT\",\n\t\"HD\",\n\t\"IBMid\",\n\t\"IDs\",\n\t\"iMac\",\n\t\"IMAX\",\n\t\"iOS\",\n\t\"iPad\",\n\t\"iPhone\",\n\t\"iPod\",\n\t\"LDAP\",\n\t\"LinkedIn\",\n\t\"LLM\",\n\t\"macOS\",\n\t\"McDonalds\",\n\t\"MCP\",\n\t\"ML\",\n\t\"MySQL\",\n\t\"NLG\",\n\t\"NLP\",\n\t\"NLU\",\n\t\"OpenAI\",\n\t\"PDFs\",\n\t\"PIM\",\n\t\"PEFT\",\n\t\"pH\",\n\t\"PostgreSQL\",\n\t\"SEO\",\n\t\"TTS\",\n\t\"UHD\",\n\t\"UUID\",\n\t\"XSS\",\n\t\"YouTube\",\n\t\"CSpell\",\n\t\"ESLint\"\n];\n\n//#endregion\nexport { SPECIAL_CASES };\n//# sourceMappingURL=special-cases.mjs.map","import { ACRONYMS } from \"./acronyms.mjs\";\nimport { ARTICLES } from \"./articles.mjs\";\nimport { CONJUNCTIONS } from \"./conjunctions.mjs\";\nimport { PREPOSITIONS } from \"./prepositions.mjs\";\nimport { SPECIAL_CASES } from \"./special-cases.mjs\";\n\n//#region ../string-format/src/format-special-cases.ts\n/**\n* Handle special words in a title.\n*\n* @see https://apastyle.apa.org/style-grammar-guidelines/capitalization/title-case\n*\n* @param value - The word to handle\n* @param index - The index of the word in the title\n* @param words - The full title as an array of words\n* @returns The formatted word\n*/\nfunction formatSpecialCases(value, index, words, options) {\n\tconst lowercaseStr = value.toLowerCase();\n\tconst uppercaseStr = value.toUpperCase();\n\tfor (const special of SPECIAL_CASES) if (special.toLowerCase() === lowercaseStr) return special;\n\tif (ACRONYMS[uppercaseStr]) return options?.useDescriptions !== false ? ACRONYMS[uppercaseStr].description : ACRONYMS[uppercaseStr].display || uppercaseStr;\n\tif (index === 0) return value;\n\tif (index === words.length - 1) return value;\n\tif (value.length >= 4) return value;\n\tif (PREPOSITIONS.includes(lowercaseStr)) return lowercaseStr;\n\tif (CONJUNCTIONS.includes(lowercaseStr)) return lowercaseStr;\n\tif (ARTICLES.includes(lowercaseStr)) return lowercaseStr;\n\treturn value;\n}\n\n//#endregion\nexport { formatSpecialCases };\n//# sourceMappingURL=format-special-cases.mjs.map","//#region ../string-format/src/upper-case-first.ts\n/**\n* Upper case the first character of an input string.\n*\n* @remarks\n* \"Thisisanexample\"\n*\n* @param input - The input string.\n* @returns The capitalized string.\n*/\nfunction upperCaseFirst(input) {\n\treturn input ? input.charAt(0).toUpperCase() + input.slice(1) : input;\n}\n\n//#endregion\nexport { upperCaseFirst };\n//# sourceMappingURL=upper-case-first.mjs.map","import { ACRONYMS } from \"./acronyms.mjs\";\nimport { combine } from \"./combine.mjs\";\nimport { decamelize } from \"./decamelize.mjs\";\nimport { formatSpecialCases } from \"./format-special-cases.mjs\";\nimport { upperCaseFirst } from \"./upper-case-first.mjs\";\n\n//#region ../string-format/src/title-case.ts\n/**\n* Convert a string to title case.\n*\n* @param input - The input string to convert.\n* @param options - Options for formatting special cases.\n* @returns The title cased string.\n*/\nfunction titleCase(input, options) {\n\treturn input?.split(/\\s+-\\s+/).map((segment) => decamelize(segment).split(/[\\s\\-_]/).map(upperCaseFirst).map((value) => options?.expandAcronyms ? ACRONYMS[value]?.description || value : value).map((value, index, array) => formatSpecialCases(value, index, array, options)).reduce(combine)).join(\" - \");\n}\n\n//#endregion\nexport { titleCase };\n//# sourceMappingURL=title-case.mjs.map","import { joinPaths } from \"./path/src/join-paths.mjs\";\nimport { titleCase } from \"./string-format/src/title-case.mjs\";\nimport os from \"node:os\";\nimport path from \"node:path\";\n\n//#region src/get-env-paths.ts\nconst homedir = os.homedir();\nconst tmpdir = os.tmpdir();\nconst macos = (orgId) => {\n\tconst library = joinPaths(homedir, \"Library\");\n\treturn {\n\t\tdata: joinPaths(library, \"Application Support\", orgId),\n\t\tconfig: joinPaths(library, \"Preferences\", orgId),\n\t\tcache: joinPaths(library, \"Caches\", orgId),\n\t\tlog: joinPaths(library, \"Logs\", orgId),\n\t\ttemp: joinPaths(tmpdir, orgId)\n\t};\n};\nconst windows = (orgId) => {\n\tconst appData = process.env.APPDATA || joinPaths(homedir, \"AppData\", \"Roaming\");\n\tconst localAppData = process.env.LOCALAPPDATA || joinPaths(homedir, \"AppData\", \"Local\");\n\tconst windowsFormattedOrgId = titleCase(orgId).trim().replace(/\\s+/g, \"\");\n\treturn {\n\t\tdata: joinPaths(localAppData, windowsFormattedOrgId, \"Data\"),\n\t\tconfig: joinPaths(appData, windowsFormattedOrgId, \"Config\"),\n\t\tcache: joinPaths(localAppData, \"Cache\", orgId),\n\t\tlog: joinPaths(localAppData, windowsFormattedOrgId, \"Log\"),\n\t\ttemp: joinPaths(tmpdir, orgId)\n\t};\n};\nconst linux = (orgId) => {\n\tconst username = path.basename(homedir);\n\treturn {\n\t\tdata: joinPaths(process.env.XDG_DATA_HOME || joinPaths(homedir, \".local\", \"share\"), orgId),\n\t\tconfig: joinPaths(process.env.XDG_CONFIG_HOME || joinPaths(homedir, \".config\"), orgId),\n\t\tcache: joinPaths(process.env.XDG_CACHE_HOME || joinPaths(homedir, \".cache\"), orgId),\n\t\tlog: joinPaths(process.env.XDG_STATE_HOME || joinPaths(homedir, \".local\", \"state\"), orgId),\n\t\ttemp: process.env.DEVENV_RUNTIME || process.env.XDG_RUNTIME_DIR ? joinPaths(process.env.DEVENV_RUNTIME || process.env.XDG_RUNTIME_DIR, orgId) : joinPaths(tmpdir, username, orgId)\n\t};\n};\n/**\n* Get paths for storing things like data, config, logs, and cache in the current runtime environment.\n*\n* @remarks\n* On macOS, directories are generally created in `~/Library/Application Support/<name>`.\n* On Windows, directories are generally created in `%AppData%/<name>`.\n* On Linux, directories are generally created in `~/.config/<name>` - this is determined via the [XDG Base Directory spec](https://specifications.freedesktop.org/basedir-spec/latest/).\n*\n* If the `STORM_DATA_DIR`, `STORM_CONFIG_DIR`, `STORM_CACHE_DIR`, `STORM_LOG_DIR`, or `STORM_TEMP_DIR` environment variables are set, they will be used instead of the default paths.\n*\n* @param options - Parameters used to determine the specific paths for the current project/runtime environment\n* @returns An object containing the various paths for the runtime environment\n*/\nfunction getEnvPaths(options = {}) {\n\tlet orgId = options.orgId || \"storm-software\";\n\tif (!orgId) throw new Error(\"You need to provide an orgId to the `getEnvPaths` function\");\n\tif (options.suffix) orgId += `-${typeof options.suffix === \"string\" ? options.suffix : \"nodejs\"}`;\n\tlet result = {};\n\tif (process.platform === \"darwin\") result = macos(orgId);\n\telse if (process.platform === \"win32\") result = windows(orgId);\n\telse result = linux(orgId);\n\tif (process.env.STORM_DATA_DIR) result.data = process.env.STORM_DATA_DIR;\n\telse if (process.env.STORM_CONFIG_DIR) result.config = process.env.STORM_CONFIG_DIR;\n\telse if (process.env.STORM_CACHE_DIR) result.cache = process.env.STORM_CACHE_DIR;\n\telse if (process.env.STORM_LOG_DIR) result.log = process.env.STORM_LOG_DIR;\n\telse if (process.env.STORM_TEMP_DIR) result.temp = process.env.STORM_TEMP_DIR;\n\tif (options.workspaceRoot) {\n\t\tresult.cache ??= joinPaths(options.workspaceRoot, \"node_modules\", \".cache\", orgId);\n\t\tresult.temp ??= joinPaths(options.workspaceRoot, \"tmp\", orgId);\n\t\tresult.log ??= joinPaths(result.temp, \"logs\");\n\t\tresult.config ??= joinPaths(options.workspaceRoot, \".config\", orgId);\n\t}\n\treturn Object.keys(result).reduce((ret, key) => {\n\t\tif (result[key]) {\n\t\t\tconst filePath = result[key];\n\t\t\tret[key] = options.appId && options.appId !== options.orgId && options.appId !== options.nestedDir ? joinPaths(filePath, options.appId) : filePath;\n\t\t\tif (options.nestedDir && options.nestedDir !== options.orgId && options.nestedDir !== options.appId) ret[key] = joinPaths(ret[key], options.nestedDir);\n\t\t}\n\t\treturn ret;\n\t}, {});\n}\n\n//#endregion\nexport { getEnvPaths };\n//# sourceMappingURL=get-env-paths.mjs.map","import { existsSync as existsSync$1 } from \"node:fs\";\nimport { access, constants as constants$1 } from \"node:fs/promises\";\n\n//#region src/exists.ts\n/**\n* Check if a file exists\n*\n* @param filePath - The file path to check\n* @returns An indicator specifying if the file exists\n*/\nfunction existsSync(filePath) {\n\treturn existsSync$1(filePath);\n}\n/**\n* Check if a file exists\n*\n* @param filePath - The file path to check\n* @returns An indicator specifying if the file exists\n*/\nasync function exists(filePath) {\n\treturn access(filePath, constants$1.F_OK).then(() => true).catch(() => false);\n}\n\n//#endregion\nexport { exists, existsSync };\n//# sourceMappingURL=exists.mjs.map","import { CONFIG_INPUTS } from \"./constants.mjs\";\nimport { isError } from \"@stryke/type-checks/is-error\";\nimport defu from \"defu\";\nimport { createNodesFromFiles } from \"@nx/devkit\";\nimport { withNamedInputs } from \"@storm-software/workspace-tools/utils/nx-json\";\nimport { getProjectConfigFromProjectRoot, getProjectRoot, getRoot } from \"@storm-software/workspace-tools/utils/plugin-helpers\";\nimport { addProjectTag, setDefaultProjectTags } from \"@storm-software/workspace-tools/utils/project-tags\";\nimport { getEnvPaths } from \"@stryke/env/get-env-paths\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { murmurhash } from \"@stryke/hash\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { camelCase } from \"@stryke/string-format/camel-case\";\nimport { kebabCase } from \"@stryke/string-format/kebab-case\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { createJiti } from \"jiti\";\nimport { readFile } from \"node:fs/promises\";\nimport { readNxJson } from \"nx/src/config/nx-json.js\";\nimport { readTargetsFromPackageJson } from \"nx/src/utils/package-json.js\";\n\n//#region src/helpers/plugin-utilities.ts\n/**\n* Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.\n*\n* @param framework - The framework name to use in the input strings\n* @returns An array of Nx input strings for the configuration file\n*/\nfunction getNxTargetInputs(framework) {\n\treturn CONFIG_INPUTS.map((input) => input.replace(\"{framework}\", framework));\n}\n/**\n* Generates Nx input strings for the Powerlines configuration file, replacing the `{framework}` placeholder with the specified framework name.\n*\n* @param framework - The framework name to use in the input strings\n* @returns An array of Nx input strings for the configuration file\n*/\nfunction getNxPluginInputs(framework) {\n\treturn `**/{${getNxTargetInputs(framework).map((input) => input.replace(\"{projectRoot}/\", \"\")).join(\",\")}}`;\n}\n/**\n* Creates an Nx plugin that integrates Powerlines into the Nx build process.\n*\n* @param opts - Options for creating the Nx plugin\n* @returns A CreateNodesV2 function that can be used as an Nx plugin\n*/\nfunction createNxPlugin(opts) {\n\tconst framework = opts?.framework || \"powerlines\";\n\tconst title = `${titleCase(framework)} Nx Plugin`;\n\ttry {\n\t\tconst name = opts?.name || `${framework}/nx/plugin`;\n\t\tconst artifactsFolder = opts?.artifactsFolder || `{projectRoot}/.${framework}`;\n\t\tconst targetInputs = getNxTargetInputs(framework);\n\t\tconst pluginInputs = getNxPluginInputs(framework);\n\t\treturn [pluginInputs, async (configFiles, options, contextV2) => {\n\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Initializing the ${title} for the following inputs: ${pluginInputs}`);\n\t\t\tconst envPaths = getEnvPaths({\n\t\t\t\torgId: \"storm-software\",\n\t\t\t\tappId: framework,\n\t\t\t\tworkspaceRoot: contextV2.workspaceRoot\n\t\t\t});\n\t\t\tif (!envPaths.cache) throw new Error(\"The cache directory could not be determined.\");\n\t\t\tconst nxJson = readNxJson(contextV2.workspaceRoot);\n\t\t\tconst resolver = createJiti(contextV2.workspaceRoot, {\n\t\t\t\tdebug: !!options?.debug,\n\t\t\t\tinteropDefault: true,\n\t\t\t\tfsCache: joinPaths(envPaths.cache, \"nx-plugin\", murmurhash(contextV2.workspaceRoot, { maxLength: 45 }), \"jiti\"),\n\t\t\t\tmoduleCache: true\n\t\t\t});\n\t\t\tlet loadUserConfigFile;\n\t\t\ttry {\n\t\t\t\tloadUserConfigFile = await resolver.import(resolver.esmResolve(\"powerlines/config\")).then((mod) => mod?.loadUserConfigFile);\n\t\t\t} catch (error) {\n\t\t\t\tconsole.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to load user configuration file function: ${isError(error) ? error.message : \"Unknown error\"}`);\n\t\t\t}\n\t\t\treturn createNodesFromFiles(async (configFile, _, context) => {\n\t\t\t\ttry {\n\t\t\t\t\tconst projectRoot = getProjectRoot(configFile, contextV2.workspaceRoot);\n\t\t\t\t\tif (!projectRoot) {\n\t\t\t\t\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - package.json and ${framework} configuration files (i.e. ${framework}.config.ts) must be located in the project root directory: ${configFile}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst root = getRoot(projectRoot, context);\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Loading ${framework} user configuration for project in root directory ${projectRoot}.`);\n\t\t\t\t\tlet userConfig = {};\n\t\t\t\t\ttry {\n\t\t\t\t\t\tif (loadUserConfigFile) userConfig = await loadUserConfigFile(projectRoot, contextV2.workspaceRoot, resolver, \"build\", \"development\", configFile, framework);\n\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\tconsole.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to load user configuration for project in ${projectRoot} - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown error\"} \\n\\nThis error can occur if the project depends on another package in the workspace and the dependent package has not been built yet. To resolve this issue, please ensure that all dependent packages have been built successfully.`);\n\t\t\t\t\t}\n\t\t\t\t\tif (!existsSync(joinPaths(contextV2.workspaceRoot, projectRoot, \"package.json\"))) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Cannot find \\`package.json\\` file in the project's root directory (path: \"${joinPaths(contextV2.workspaceRoot, projectRoot)}\"). Skipping project configuration.`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst packageJsonContent = await readFile(joinPaths(contextV2.workspaceRoot, projectRoot, \"package.json\"), \"utf8\");\n\t\t\t\t\tif (!packageJsonContent) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No package.json file found for project in root directory ${projectRoot}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst packageJson = JSON.parse(packageJsonContent);\n\t\t\t\t\tif (!userConfig.configFile && !packageJson?.[camelCase(framework)]) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Skipping ${projectRoot} - no ${framework} configuration found for project in root directory.`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst projectConfig = getProjectConfigFromProjectRoot(projectRoot, packageJson);\n\t\t\t\t\tif (!projectConfig) {\n\t\t\t\t\t\tif (options?.verboseOutput) console.warn(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - No project configuration found for project in root directory ${projectRoot}`);\n\t\t\t\t\t\treturn {};\n\t\t\t\t\t}\n\t\t\t\t\tconst targets = readTargetsFromPackageJson(packageJson, nxJson, projectRoot, context.workspaceRoot);\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Preparing Nx targets for project in root directory ${projectRoot}.`);\n\t\t\t\t\tif (options?.clean !== false && !targets[options?.clean?.targetName || \"clean\"]) targets[options?.clean?.targetName || \"clean\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.clean?.inputs) ? options.clean.inputs : withNamedInputs(targetInputs, [options?.clean?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.clean?.outputs,\n\t\t\t\t\t\texecutor: options?.clean?.executor || `@${framework}/nx:${options?.clean?.targetName || \"clean\"}`,\n\t\t\t\t\t\tdependsOn: options?.clean?.dependsOn ?? [`^${options?.clean?.targetName || \"clean\"}`],\n\t\t\t\t\t\tdefaultConfiguration: options?.clean?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.prepare !== false && !targets[options?.prepare?.targetName || \"prepare\"]) targets[options?.prepare?.targetName || \"prepare\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.prepare?.inputs) ? options.prepare.inputs : withNamedInputs(targetInputs, [options?.prepare?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.prepare?.outputs ?? [artifactsFolder],\n\t\t\t\t\t\texecutor: options?.prepare?.executor || `@${framework}/nx:${options?.prepare?.targetName || \"prepare\"}`,\n\t\t\t\t\t\tdependsOn: options?.prepare?.dependsOn ?? [`^${options?.prepare?.targetName || \"build\"}`, options?.clean !== false && `${options?.clean?.targetName || \"clean\"}`].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.prepare?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.build !== false && !targets[options?.build?.targetName || \"build\"]) targets[options?.build?.targetName || \"build\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.build?.inputs) ? options.build.inputs : withNamedInputs(targetInputs, [options?.build?.inputs || \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.build?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.build?.executor || `@${framework}/nx:${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\tdependsOn: options?.build?.dependsOn ?? [`^${options?.build?.targetName || \"build\"}`, userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.build?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.lint !== false && !targets[options?.lint?.targetName || \"lint\"]) targets[options?.lint?.targetName || \"lint\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.lint?.inputs) ? options.lint.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.lint?.inputs ? [options.lint.inputs] : [\"linting\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.lint?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.lint?.executor || `@${framework}/nx:${options?.lint?.targetName || \"lint\"}`,\n\t\t\t\t\t\tdependsOn: options?.lint?.dependsOn ?? [`^${options?.lint?.targetName || \"lint\"}`, userConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.lint?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.docs !== false && !targets[options?.docs?.targetName || \"docs\"]) targets[options?.docs?.targetName || \"docs\"] = {\n\t\t\t\t\t\tcache: true,\n\t\t\t\t\t\tinputs: Array.isArray(options?.docs?.inputs) ? options.docs.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.docs?.inputs ? [options.docs.inputs] : [\"documentation\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.docs?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.docs?.executor || `@${framework}/nx:${options?.docs?.targetName || \"docs\"}`,\n\t\t\t\t\t\tdependsOn: options?.docs?.dependsOn ?? [\n\t\t\t\t\t\t\t`^${options?.docs?.targetName || \"docs\"}`,\n\t\t\t\t\t\t\toptions?.build !== false && `${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\t\tuserConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"\n\t\t\t\t\t\t].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.docs?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tif (options?.deploy !== false && !targets[options?.deploy?.targetName || \"deploy\"]) targets[options?.deploy?.targetName || \"deploy\"] = {\n\t\t\t\t\t\tinputs: Array.isArray(options?.deploy?.inputs) ? options.deploy.inputs : withNamedInputs([...targetInputs, artifactsFolder], options?.deploy?.inputs ? [options.deploy.inputs] : [\"documentation\", \"typescript\"]),\n\t\t\t\t\t\toutputs: options?.deploy?.outputs ?? [\"{options.outputPath}\"],\n\t\t\t\t\t\texecutor: options?.deploy?.executor || `@${framework}/nx:${options?.deploy?.targetName || \"deploy\"}`,\n\t\t\t\t\t\tdependsOn: options?.deploy?.dependsOn ?? [\n\t\t\t\t\t\t\t`^${options?.deploy?.targetName || \"deploy\"}`,\n\t\t\t\t\t\t\toptions?.build !== false && `${options?.build?.targetName || \"build\"}`,\n\t\t\t\t\t\t\tuserConfig.skipCache ? void 0 : isSetObject(options?.prepare) && options?.prepare?.targetName ? options?.prepare?.targetName : \"prepare\"\n\t\t\t\t\t\t].filter(Boolean),\n\t\t\t\t\t\tdefaultConfiguration: options?.deploy?.defaultConfiguration || \"production\",\n\t\t\t\t\t\toptions: {\n\t\t\t\t\t\t\tprojectType: projectConfig.projectType,\n\t\t\t\t\t\t\toutputPath: `{workspaceRoot}/${projectRoot}/dist`,\n\t\t\t\t\t\t\tcopyPath: `{workspaceRoot}/dist/${projectRoot}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\tconfigurations: {\n\t\t\t\t\t\t\tproduction: { mode: \"production\" },\n\t\t\t\t\t\t\ttest: { mode: \"test\" },\n\t\t\t\t\t\t\tdevelopment: {\n\t\t\t\t\t\t\t\tmode: \"development\",\n\t\t\t\t\t\t\t\tskipCache: true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\tsetDefaultProjectTags(projectConfig, name);\n\t\t\t\t\taddProjectTag(projectConfig, framework, projectConfig.projectType || \"library\", { overwrite: true });\n\t\t\t\t\tif (options?.verboseOutput) console.debug(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Completed preparing Nx configuration for project in root directory ${projectRoot}.`);\n\t\t\t\t\treturn { projects: { [root]: defu(projectConfig, {\n\t\t\t\t\t\tname: kebabCase(userConfig.name),\n\t\t\t\t\t\tprojectType: projectConfig.projectType || \"library\",\n\t\t\t\t\t\troot,\n\t\t\t\t\t\tsourceRoot: joinPaths(root, \"src\"),\n\t\t\t\t\t\ttargets\n\t\t\t\t\t}) } };\n\t\t\t\t} catch (error) {\n\t\t\t\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - Failed to process the project configuration for file \"${configFile}\" - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown fatal error\"}`);\n\t\t\t\t\treturn {};\n\t\t\t\t}\n\t\t\t}, configFiles, options, contextV2);\n\t\t}];\n\t} catch (error) {\n\t\tconsole.error(`[${title}] - ${(/* @__PURE__ */ new Date()).toISOString()} - ${isError(error) ? error.message : isSetString(error) ? error : \"Unknown fatal error during plugin initialization\"}`);\n\t\tthrow new Error(`Failed to initialize the ${title} - ${isError(error) ? error.message : isSetString(error) ? error : \"See previous logs for more details\"}`, { cause: error instanceof Error ? error : void 0 });\n\t}\n}\n\n//#endregion\nexport { createNxPlugin, getNxPluginInputs, getNxTargetInputs };\n//# sourceMappingURL=plugin-utilities.mjs.map","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { CreateNodesV2 } from \"@nx/devkit\";\nimport type { NxPluginOptions } from \"@powerlines/nx\";\nimport { createNxPlugin } from \"@powerlines/nx/helpers/plugin-utilities\";\n\nexport const createNodesV2: CreateNodesV2<NxPluginOptions> =\n createNxPlugin<NxPluginOptions>({\n framework: \"shell-shock\"\n });\n"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17],"mappings":"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CAClD,MAAM,EAAE,aAAa,8BAA8B;CACnD,KAAK,EAAE,aAAa,wBAAwB;CAC5C,IAAI,EAAE,aAAa,oBAAoB;CACvC,MAAM,EAAE,aAAa,8BAA8B;CACnD,MAAM,EAAE,aAAa,qCAAqC;CAC1D,MAAM,EAAE,aAAa,uCAAuC;CAC5D,KAAK,EAAE,aAAa,2BAA2B;CAC/C;AACuB,OAAO,YAAY,OAAO,QAAQ,SAAS,CAAC,KAAK,CAAC,KAAK,WAAW,CAAC,KAAK,MAAM,WAAW,IAAI,CAAC,CAAC;AAC3F,OAAO,YAAY,OAAO,QAAQ,SAAS,CAAC,KAAK,CAAC,KAAK,WAAW,CAAC,KAAK,MAAM,YAAY,CAAC,CAAC;;;;;;;;;;;AChZxH,SAAS,QAAQ,KAAK,KAAK;AAC1B,QAAO,GAAG,IAAI,GAAG;;;;;;;;;;;ACFlB,SAAS,WAAW,OAAO;AAC1B,QAAO,MAAM,QAAQ,qBAAqB,QAAQ,CAAC,QAAQ,4BAA4B,QAAQ,CAAC,aAAa;;;;;ACP9G,MAAM,WAAW;CAChB;CACA;CACA;CACA;;;;ACJD,MAAM,eAAe;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;;AC1BD,MAAM,eAAe;CACpB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;;AC9DD,MAAM,gBAAgB;CACrB;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shell-shock/nx",
3
- "version": "0.0.51",
3
+ "version": "0.0.53",
4
4
  "description": "A Nx plugin to support Shell Shock development in Nx monorepos.",
5
5
  "repository": {
6
6
  "type": "github",
@@ -81,29 +81,29 @@
81
81
  "peerDependencies": { "nx": ">=22.5.0", "powerlines": ">=0.42.10" },
82
82
  "dependencies": {
83
83
  "@nx/devkit": "22.6.1",
84
- "@shell-shock/core": "^0.13.7",
85
- "@storm-software/config": "^1.137.0",
86
- "@storm-software/config-tools": "^1.189.46",
87
- "@storm-software/workspace-tools": "^1.295.22",
88
- "@stryke/type-checks": "^0.5.41",
89
- "@stryke/string-format": "^0.17.6",
90
- "@stryke/hash": "^0.13.16",
91
- "@stryke/path": "^0.27.2",
84
+ "@shell-shock/core": "^0.13.9",
85
+ "@storm-software/config": "^1.137.12",
86
+ "@storm-software/config-tools": "^1.189.58",
87
+ "@storm-software/workspace-tools": "^1.295.34",
88
+ "@stryke/type-checks": "^0.6.0",
89
+ "@stryke/string-format": "^0.17.7",
90
+ "@stryke/hash": "^0.13.17",
91
+ "@stryke/path": "^0.27.3",
92
92
  "defu": "^6.1.4",
93
93
  "jiti": "^2.6.1",
94
94
  "untyped": "^1.5.2"
95
95
  },
96
96
  "devDependencies": {
97
- "@powerlines/nx": "^0.11.298",
98
- "@powerlines/plugin-tsdown": "^0.1.317",
99
- "@powerlines/plugin-untyped": "^0.2.322",
100
- "@storm-software/testing-tools": "^1.119.121",
97
+ "@powerlines/nx": "^0.11.310",
98
+ "@powerlines/plugin-tsdown": "^0.1.323",
99
+ "@powerlines/plugin-untyped": "^0.2.334",
100
+ "@storm-software/testing-tools": "^1.119.133",
101
101
  "@types/node": "^25.5.0",
102
102
  "eslint-flat-config-utils": "^2.1.4",
103
103
  "jsonc-eslint-parser": "^2.4.2",
104
- "powerlines": "^0.42.10"
104
+ "powerlines": "^0.42.22"
105
105
  },
106
106
  "publishConfig": { "access": "public" },
107
107
  "executors": "./executors.json",
108
- "gitHead": "bcec2ffe57f7284d7726461908827541dc907a23"
108
+ "gitHead": "036578a29fdeedf3a93c53a1ea4cf0a180b8f5bb"
109
109
  }
@@ -1,3 +0,0 @@
1
- import "node:module";
2
-
3
- export { };