powerlines 0.42.34 → 0.42.35

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.
@@ -1,7 +1,7 @@
1
1
  import { n as createProgram } from "./ts-morph-B85ZbV1Q.mjs";
2
2
  import { t as utils_exports } from "./utils.mjs";
3
3
  import { t as plugin_utils_exports } from "./plugin-utils.mjs";
4
- import { d as writeMetaFile, f as callHook, p as mergeConfigs, t as PowerlinesAPIContext } from "./api-context-CmuOyg7q.mjs";
4
+ import { d as writeMetaFile, f as callHook, p as mergeConfigs, t as PowerlinesAPIContext } from "./api-context-CEJ3s11k.mjs";
5
5
  import { a as isIncludeMatchFound, i as getTsconfigFilePath, r as getParsedTypeScriptConfig } from "./tsconfig-DoV1dUYg.mjs";
6
6
  import { formatLogMessage } from "@storm-software/config-tools/logger/console";
7
7
  import { toArray } from "@stryke/convert/to-array";
@@ -41,7 +41,7 @@ import { StormJSON } from "@stryke/json/storm-json";
41
41
 
42
42
  //#region package.json
43
43
  var name = "powerlines";
44
- var version = "0.42.34";
44
+ var version = "0.42.35";
45
45
 
46
46
  //#endregion
47
47
  //#region src/_internal/helpers/generate-types.ts
@@ -54,7 +54,7 @@ var version = "0.42.34";
54
54
  function formatTypes(code = "") {
55
55
  return code.replaceAll("#private;", "").replace(/__Ω/g, "");
56
56
  }
57
- async function extractModuleDeclarations(context, filePath, id, code, fileToModuleMap) {
57
+ async function writeModuleDeclarations(context, filePath, id, code, fileToModuleMap) {
58
58
  const mappings = /* @__PURE__ */ new Map();
59
59
  const ambient = [];
60
60
  const sourceFile = new Project({ useInMemoryFileSystem: true }).createSourceFile("module.d.ts", code);
@@ -218,7 +218,7 @@ async function emitBuiltinTypes(context, files) {
218
218
  for (const entry of emittedBuiltinFiles) {
219
219
  context.trace(`Processing emitted type declaration file: ${entry.filePath}`);
220
220
  const moduleId = fileToModuleMap.get(entry.filePath);
221
- const moduleDecl = await extractModuleDeclarations(context, entry.filePath, moduleId, entry.text, fileToModuleMap);
221
+ const moduleDecl = await writeModuleDeclarations(context, entry.filePath, moduleId, entry.text, fileToModuleMap);
222
222
  if (!isFirst) code += "\n\n";
223
223
  isFirst = false;
224
224
  code += moduleDecl.content;
@@ -433,6 +433,7 @@ var PowerlinesAPI = class PowerlinesAPI {
433
433
  api,
434
434
  addPlugin: api.#addPlugin.bind(api)
435
435
  };
436
+ const timer = api.context.timer("Initialization");
436
437
  api.context.info(`🔌 The Powerlines Engine v${version} has started`);
437
438
  for (const plugin of api.context.config.plugins.flat(10) ?? []) await api.#addPlugin(plugin);
438
439
  if (api.context.plugins.length === 0) api.context.warn("No Powerlines plugins were specified in the options. Please ensure this is correct, as it is generally not recommended.");
@@ -444,6 +445,7 @@ var PowerlinesAPI = class PowerlinesAPI {
444
445
  merge: mergeConfigs
445
446
  });
446
447
  await api.context.withUserConfig(pluginConfig, { isHighPriority: false });
448
+ timer();
447
449
  return api;
448
450
  }
449
451
  /**
@@ -455,6 +457,7 @@ var PowerlinesAPI = class PowerlinesAPI {
455
457
  * @param inlineConfig - The inline configuration for the types command
456
458
  */
457
459
  async types(inlineConfig = { command: "types" }) {
460
+ const timer = this.context.timer("Types");
458
461
  this.context.info(" 🏗️ Generating typescript declarations for the Powerlines project");
459
462
  this.context.debug(" Aggregating configuration options for the Powerlines project");
460
463
  inlineConfig.command ??= "types";
@@ -498,6 +501,7 @@ var PowerlinesAPI = class PowerlinesAPI {
498
501
  context.persistedMeta = context.meta;
499
502
  });
500
503
  this.context.debug("✔ Powerlines types generation has completed successfully");
504
+ timer();
501
505
  }
502
506
  /**
503
507
  * Prepare the Powerlines API
@@ -508,6 +512,7 @@ var PowerlinesAPI = class PowerlinesAPI {
508
512
  * @param inlineConfig - The inline configuration for the prepare command
509
513
  */
510
514
  async prepare(inlineConfig = { command: "prepare" }) {
515
+ const timer = this.context.timer("Prepare");
511
516
  this.context.info(" 🏗️ Preparing the Powerlines project");
512
517
  this.context.debug(" Aggregating configuration options for the Powerlines project");
513
518
  inlineConfig.command ??= "prepare";
@@ -558,6 +563,7 @@ var PowerlinesAPI = class PowerlinesAPI {
558
563
  context.persistedMeta = context.meta;
559
564
  });
560
565
  this.context.debug("✔ Powerlines preparation has completed successfully");
566
+ timer();
561
567
  }
562
568
  /**
563
569
  * Create a new Powerlines project
@@ -569,6 +575,7 @@ var PowerlinesAPI = class PowerlinesAPI {
569
575
  * @returns A promise that resolves when the project has been created
570
576
  */
571
577
  async new(inlineConfig) {
578
+ const timer = this.context.timer("New");
572
579
  this.context.info(" 🆕 Creating a new Powerlines project");
573
580
  inlineConfig.command ??= "new";
574
581
  await this.prepare(inlineConfig);
@@ -609,6 +616,7 @@ var PowerlinesAPI = class PowerlinesAPI {
609
616
  });
610
617
  });
611
618
  this.context.debug("✔ Powerlines new command completed successfully");
619
+ timer();
612
620
  }
613
621
  /**
614
622
  * Clean any previously prepared artifacts
@@ -620,6 +628,7 @@ var PowerlinesAPI = class PowerlinesAPI {
620
628
  * @returns A promise that resolves when the clean command has completed
621
629
  */
622
630
  async clean(inlineConfig = { command: "clean" }) {
631
+ const timer = this.context.timer("Clean");
623
632
  this.context.info(" 🧹 Cleaning the previous Powerlines artifacts");
624
633
  inlineConfig.command ??= "clean";
625
634
  await this.prepare(inlineConfig);
@@ -633,6 +642,7 @@ var PowerlinesAPI = class PowerlinesAPI {
633
642
  });
634
643
  });
635
644
  this.context.debug("✔ Powerlines cleaning completed successfully");
645
+ timer();
636
646
  }
637
647
  /**
638
648
  * Lint the project
@@ -641,6 +651,7 @@ var PowerlinesAPI = class PowerlinesAPI {
641
651
  * @returns A promise that resolves when the lint command has completed
642
652
  */
643
653
  async lint(inlineConfig = { command: "lint" }) {
654
+ const timer = this.context.timer("Lint");
644
655
  this.context.info(" 📝 Linting the Powerlines project");
645
656
  inlineConfig.command ??= "lint";
646
657
  await this.prepare(inlineConfig);
@@ -651,6 +662,7 @@ var PowerlinesAPI = class PowerlinesAPI {
651
662
  });
652
663
  });
653
664
  this.context.debug("✔ Powerlines linting completed successfully");
665
+ timer();
654
666
  }
655
667
  /**
656
668
  * Build the project
@@ -662,6 +674,7 @@ var PowerlinesAPI = class PowerlinesAPI {
662
674
  * @returns A promise that resolves when the build command has completed
663
675
  */
664
676
  async build(inlineConfig = { command: "build" }) {
677
+ const timer = this.context.timer("Build");
665
678
  this.context.info(" 📦 Building the Powerlines project");
666
679
  await this.context.generateChecksum();
667
680
  if (this.context.meta.checksum !== this.context.persistedMeta?.checksum || this.context.config.skipCache) {
@@ -674,6 +687,7 @@ var PowerlinesAPI = class PowerlinesAPI {
674
687
  await this.#handleBuild(context);
675
688
  });
676
689
  this.context.debug("✔ Powerlines build completed successfully");
690
+ timer();
677
691
  }
678
692
  /**
679
693
  * Prepare the documentation for the project
@@ -682,6 +696,7 @@ var PowerlinesAPI = class PowerlinesAPI {
682
696
  * @returns A promise that resolves when the documentation generation has completed
683
697
  */
684
698
  async docs(inlineConfig = { command: "docs" }) {
699
+ const timer = this.context.timer("Docs");
685
700
  this.context.info(" 📓 Generating documentation for the Powerlines project");
686
701
  inlineConfig.command ??= "docs";
687
702
  await this.prepare(inlineConfig);
@@ -694,6 +709,7 @@ var PowerlinesAPI = class PowerlinesAPI {
694
709
  });
695
710
  });
696
711
  this.context.debug("✔ Powerlines documentation generation completed successfully");
712
+ timer();
697
713
  }
698
714
  /**
699
715
  * Deploy the project source code
@@ -704,6 +720,7 @@ var PowerlinesAPI = class PowerlinesAPI {
704
720
  * @param inlineConfig - The inline configuration for the deploy command
705
721
  */
706
722
  async deploy(inlineConfig = { command: "deploy" }) {
723
+ const timer = this.context.timer("Deploy");
707
724
  this.context.info(" 🚀 Deploying the Powerlines project");
708
725
  inlineConfig.command ??= "deploy";
709
726
  await this.prepare(inlineConfig);
@@ -711,9 +728,10 @@ var PowerlinesAPI = class PowerlinesAPI {
711
728
  await this.callHook("deploy", { environment: context });
712
729
  });
713
730
  this.context.debug("✔ Powerlines deploy completed successfully");
731
+ timer();
714
732
  }
715
733
  /**
716
- * Finalization process
734
+ * Finalization/cleanup processing for the Powerlines API
717
735
  *
718
736
  * @remarks
719
737
  * This step includes any final processes or clean up required by Powerlines. It will be run after each Powerlines command.
@@ -721,6 +739,7 @@ var PowerlinesAPI = class PowerlinesAPI {
721
739
  * @returns A promise that resolves when the finalization process has completed
722
740
  */
723
741
  async finalize() {
742
+ const timer = this.context.timer("Finalization");
724
743
  this.context.info(" 🏁 Powerlines finalization processes started");
725
744
  await this.#executeEnvironments(async (context) => {
726
745
  await this.callHook("finalize", { environment: context });
@@ -728,6 +747,7 @@ var PowerlinesAPI = class PowerlinesAPI {
728
747
  if (existsSync(context.cachePath) && !(await listFiles(joinPaths(context.cachePath, "**/*")))?.length) await removeDirectory(context.cachePath);
729
748
  });
730
749
  this.context.debug("✔ Powerlines finalization completed successfully");
750
+ timer();
731
751
  }
732
752
  /**
733
753
  * Invokes the configured plugin hooks
@@ -1007,4 +1027,4 @@ ${formatTypes(code)}
1007
1027
 
1008
1028
  //#endregion
1009
1029
  export { name as n, version as r, PowerlinesAPI as t };
1010
- //# sourceMappingURL=api-0aKfs398.mjs.map
1030
+ //# sourceMappingURL=api-DBPe7xMz.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-DBPe7xMz.mjs","names":["#context","#addPlugin","packageJson.version","#executeEnvironments","defu","#types","#handleBuild","#getEnvironments","#initPlugin","#resolvePlugin","isPlugin","isPluginConfig"],"sources":["../package.json","../src/_internal/helpers/generate-types.ts","../src/_internal/helpers/install.ts","../src/_internal/helpers/install-dependencies.ts","../src/_internal/helpers/resolve-tsconfig.ts","../src/api.ts"],"sourcesContent":["","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { appendPath } from \"@stryke/path/append\";\nimport { findFileName } from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { replaceExtension, replacePath } from \"@stryke/path/replace\";\nimport { prettyBytes } from \"@stryke/string-format/pretty-bytes\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { DiagnosticCategory, Node, Project } from \"ts-morph\";\nimport { Context } from \"../../types\";\nimport { createProgram } from \"../../typescript/ts-morph\";\nimport { format } from \"../../utils\";\n\ninterface ModuleReference {\n id: string;\n external: boolean;\n}\n\ninterface Mapping {\n source: string;\n line: number;\n column: number;\n}\n\ninterface BaseModuleDeclaration {\n content: string;\n mappings: Map<string, Mapping>;\n ambient: ModuleReference[];\n}\n\n// interface ModuleDeclaration {\n// sourceFile: SourceFile;\n// content: string;\n// mappings: Map<string, Mapping>;\n// exports: string[];\n// ambient: ModuleReference[];\n// builtinImports: string[];\n// }\n\n/**\n * Formats the generated TypeScript types source code.\n *\n * @param code - The generated TypeScript code.\n * @returns The formatted TypeScript code.\n */\nexport function formatTypes(code = \"\"): string {\n return code.replaceAll(\"#private;\", \"\").replace(/__Ω/g, \"\");\n}\n\n/* async function extractModuleDeclarations(\n context: Context,\n filePath: string,\n id: string,\n code: string,\n fileToModuleMap: Map<string, string>\n): Promise<ModuleDeclaration> {\n const mappings = new Map<string, Mapping>();\n const ambient: ModuleReference[] = [];\n\n // Parse the emitted .d.ts content using an in-memory ts-morph project\n const project = new Project({ useInMemoryFileSystem: true });\n const sourceFile = project.createSourceFile(\"module.d.ts\", code);\n\n // Collect /// <reference types=\"...\" /> directives as ambient dependencies\n for (const ref of sourceFile.getTypeReferenceDirectives()) {\n ambient.push({ id: ref.getFileName(), external: true });\n }\n\n const importLines: string[] = [];\n const reExportLines: string[] = [];\n const declarationLines: string[] = [];\n\n for (const statement of sourceFile.getStatements()) {\n // --- Import declarations ---\n if (Node.isImportDeclaration(statement)) {\n const moduleSpec = statement.getModuleSpecifierValue();\n const defaultImport = statement.getDefaultImport();\n const namedImports = statement.getNamedImports();\n const namespaceImport = statement.getNamespaceImport();\n\n // Side-effect import (no import clause) → ambient dependency\n if (!defaultImport && namedImports.length === 0 && !namespaceImport) {\n ambient.push({\n id: moduleSpec,\n external: !context.fs.isResolvableId(moduleSpec, filePath)\n });\n continue;\n }\n\n // Resolve the module specifier for the output\n let resolvedSpec = moduleSpec;\n if (context.fs.isResolvableId(moduleSpec, filePath)) {\n const resolved = await context.resolve(moduleSpec, filePath);\n if (resolved) {\n const mapped = fileToModuleMap.get(resolved.id);\n if (mapped) {\n resolvedSpec = mapped;\n } else {\n context.trace(\n `Could not resolve relative import '${moduleSpec}' from '${filePath}' to a builtin module. Keeping as-is.`\n );\n }\n }\n }\n\n // Namespace import: import * as X from '...'\n if (namespaceImport) {\n importLines.push(\n `\\timport * as ${namespaceImport.getText()} from '${resolvedSpec}';`\n );\n } else {\n const specifiers: string[] = [];\n\n if (defaultImport) {\n specifiers.push(`default as ${defaultImport.getText()}`);\n }\n\n for (const named of namedImports) {\n const alias = named.getAliasNode()?.getText();\n specifiers.push(\n alias ? `${named.getName()} as ${alias}` : named.getName()\n );\n }\n\n if (specifiers.length > 0) {\n const typeOnly = statement.isTypeOnly() ? \" type\" : \"\";\n importLines.push(\n `\\timport${typeOnly} { ${specifiers.join(\", \")} } from '${resolvedSpec}';`\n );\n }\n }\n\n continue;\n }\n\n // --- Export declarations ---\n if (Node.isExportDeclaration(statement)) {\n const moduleSpec = statement.getModuleSpecifierValue();\n\n if (moduleSpec) {\n // Resolve the module specifier\n let resolvedSpec = moduleSpec;\n if (context.fs.isResolvableId(moduleSpec, filePath)) {\n const resolved = await context.resolve(moduleSpec, filePath);\n if (resolved) {\n const mapped = fileToModuleMap.get(resolved.id);\n if (mapped) {\n resolvedSpec = mapped;\n } else {\n context.trace(\n `Could not resolve relative import '${moduleSpec}' from '${filePath}' to a builtin module. Keeping as-is.`\n );\n }\n }\n }\n\n // Re-export from another module\n const namedExports = statement.getNamedExports();\n if (namedExports.length > 0) {\n const specifiers = namedExports.map(named => {\n const alias = named.getAliasNode()?.getText();\n\n return alias ? `${named.getName()} as ${alias}` : named.getName();\n });\n const typeOnly = statement.isTypeOnly() ? \" type\" : \"\";\n reExportLines.push(\n `\\texport${typeOnly} { ${specifiers.join(\", \")} } from '${resolvedSpec}';`\n );\n } else {\n // export * from '...'\n reExportLines.push(`\\texport * from '${resolvedSpec}';`);\n }\n } else {\n // Local export { foo, bar } — keep as-is\n declarationLines.push(`\\t${statement.getText()}`);\n }\n\n continue;\n }\n\n // --- Export assignments (export default ...) ---\n if (Node.isExportAssignment(statement)) {\n declarationLines.push(`\\t${statement.getText()}`);\n continue;\n }\n\n // --- All other statements (declarations) ---\n const text = statement.getText();\n if (text.includes(\"//# sourceMappingURL=\")) {\n continue;\n }\n\n declarationLines.push(\n formatTypes(text.replace(/^(export\\s+)?declare\\s+/, \"$1\"))\n .split(\"\\n\")\n .map(line => `\\t${line}`)\n .join(\"\\n\")\n );\n }\n\n const moduleComment = code\n .match(\n new RegExp(\n `\\\\/\\\\*\\\\*(?s:.)*?@module\\\\s+${\n context.config.framework\n }:${id}(?s:.)*?\\\\*\\\\/\\\\s+`\n )\n )\n ?.find(comment => isSetString(comment?.trim()));\n\n let content = `${\n moduleComment ? `${moduleComment.trim()}\\n` : \"\"\n }declare module \"${context.config.framework}:${id}\" {`;\n for (const line of importLines) {\n content += `\\n${line}`;\n }\n\n for (const line of reExportLines) {\n content += `\\n${line}`;\n }\n\n for (const line of declarationLines) {\n content += `\\n${line}`;\n }\n\n content += \"\\n}\";\n return { content, mappings, ambient };\n} */\n\nasync function writeModuleDeclarations(\n context: Context,\n filePath: string,\n id: string,\n code: string,\n fileToModuleMap: Map<string, string>\n): Promise<BaseModuleDeclaration> {\n const mappings = new Map<string, Mapping>();\n const ambient: ModuleReference[] = [];\n\n // Parse the emitted .d.ts content using an in-memory ts-morph project\n const project = new Project({ useInMemoryFileSystem: true });\n const sourceFile = project.createSourceFile(\"module.d.ts\", code);\n\n // Collect /// <reference types=\"...\" /> directives as ambient dependencies\n for (const ref of sourceFile.getTypeReferenceDirectives()) {\n ambient.push({ id: ref.getFileName(), external: true });\n }\n\n const importLines: string[] = [];\n const reExportLines: string[] = [];\n const declarationLines: string[] = [];\n\n for (const statement of sourceFile.getStatements()) {\n // --- Import declarations ---\n if (Node.isImportDeclaration(statement)) {\n const moduleSpec = statement.getModuleSpecifierValue();\n const defaultImport = statement.getDefaultImport();\n const namedImports = statement.getNamedImports();\n const namespaceImport = statement.getNamespaceImport();\n\n // Side-effect import (no import clause) → ambient dependency\n if (!defaultImport && namedImports.length === 0 && !namespaceImport) {\n ambient.push({\n id: moduleSpec,\n external: !context.fs.isResolvableId(moduleSpec, filePath)\n });\n continue;\n }\n\n // Resolve the module specifier for the output\n let resolvedSpec = moduleSpec;\n if (context.fs.isResolvableId(moduleSpec, filePath)) {\n const resolved = await context.resolve(moduleSpec, filePath);\n if (resolved) {\n const mapped = fileToModuleMap.get(resolved.id);\n if (mapped) {\n resolvedSpec = mapped;\n } else {\n context.trace(\n `Could not resolve relative import '${moduleSpec}' from '${filePath}' to a builtin module. Keeping as-is.`\n );\n }\n }\n }\n\n // Namespace import: import * as X from '...'\n if (namespaceImport) {\n importLines.push(\n `\\timport * as ${namespaceImport.getText()} from '${resolvedSpec}';`\n );\n } else {\n const specifiers: string[] = [];\n\n if (defaultImport) {\n specifiers.push(`default as ${defaultImport.getText()}`);\n }\n\n for (const named of namedImports) {\n const alias = named.getAliasNode()?.getText();\n specifiers.push(\n alias ? `${named.getName()} as ${alias}` : named.getName()\n );\n }\n\n if (specifiers.length > 0) {\n const typeOnly = statement.isTypeOnly() ? \" type\" : \"\";\n importLines.push(\n `\\timport${typeOnly} { ${specifiers.join(\", \")} } from '${resolvedSpec}';`\n );\n }\n }\n\n continue;\n }\n\n // --- Export declarations ---\n if (Node.isExportDeclaration(statement)) {\n const moduleSpec = statement.getModuleSpecifierValue();\n\n if (moduleSpec) {\n // Resolve the module specifier\n let resolvedSpec = moduleSpec;\n if (context.fs.isResolvableId(moduleSpec, filePath)) {\n const resolved = await context.resolve(moduleSpec, filePath);\n if (resolved) {\n const mapped = fileToModuleMap.get(resolved.id);\n if (mapped) {\n resolvedSpec = mapped;\n } else {\n context.trace(\n `Could not resolve relative import '${moduleSpec}' from '${filePath}' to a builtin module. Keeping as-is.`\n );\n }\n }\n }\n\n // Re-export from another module\n const namedExports = statement.getNamedExports();\n if (namedExports.length > 0) {\n const specifiers = namedExports.map(named => {\n const alias = named.getAliasNode()?.getText();\n\n return alias ? `${named.getName()} as ${alias}` : named.getName();\n });\n const typeOnly = statement.isTypeOnly() ? \" type\" : \"\";\n reExportLines.push(\n `\\texport${typeOnly} { ${specifiers.join(\", \")} } from '${resolvedSpec}';`\n );\n } else {\n // export * from '...'\n reExportLines.push(`\\texport * from '${resolvedSpec}';`);\n }\n } else {\n // Local export { foo, bar } — keep as-is\n declarationLines.push(`\\t${statement.getText()}`);\n }\n\n continue;\n }\n\n // --- Export assignments (export default ...) ---\n if (Node.isExportAssignment(statement)) {\n declarationLines.push(`\\t${statement.getText()}`);\n continue;\n }\n\n // --- All other statements (declarations) ---\n const text = statement.getText();\n if (text.includes(\"//# sourceMappingURL=\")) {\n continue;\n }\n\n declarationLines.push(\n formatTypes(text.replace(/^(export\\s+)?declare\\s+/, \"$1\"))\n .split(\"\\n\")\n .map(line => `\\t${line}`)\n .join(\"\\n\")\n );\n }\n\n const moduleComment = code\n .match(\n new RegExp(\n `\\\\/\\\\*\\\\*(?s:.)*?@module\\\\s+${\n context.config.framework\n }:${id}(?s:.)*?\\\\*\\\\/\\\\s+`\n )\n )\n ?.find(comment => isSetString(comment?.trim()));\n\n let content = `${moduleComment ? `${moduleComment.trim()}\\n` : \"\"}declare module \"${context.config.framework}:${id}\" {`;\n for (const line of importLines) {\n content += `\\n${line}`;\n }\n\n for (const line of reExportLines) {\n content += `\\n${line}`;\n }\n\n for (const line of declarationLines) {\n content += `\\n${line}`;\n }\n\n content += \"\\n}\";\n return { content, mappings, ambient };\n}\n\n/**\n * Emits TypeScript declaration types for the provided files using the given TypeScript configuration.\n *\n * @param context - The context containing options and environment paths.\n * @param files - The list of files to generate types for.\n * @returns A promise that resolves to the generated TypeScript declaration types.\n */\nexport async function emitBuiltinTypes<TContext extends Context>(\n context: TContext,\n files: string[]\n): Promise<{ code: string; directives: string[] }> {\n if (files.length === 0) {\n context.debug(\n \"No files provided for TypeScript types generation. Typescript compilation for built-in modules will be skipped.\"\n );\n return { code: \"\", directives: [] };\n }\n\n context.debug(\n `Running the TypeScript compiler for ${\n files.length\n } generated built-in module files.`\n );\n\n const program = createProgram(context, {\n skipAddingFilesFromTsConfig: true,\n compilerOptions: {\n declaration: true,\n declarationMap: false,\n emitDeclarationOnly: true,\n sourceMap: false,\n outDir: replacePath(\n context.builtinsPath,\n context.workspaceConfig.workspaceRoot\n ),\n composite: false,\n incremental: false,\n tsBuildInfoFile: undefined\n }\n });\n\n program.addSourceFilesAtPaths(files);\n const emitResult = program.emitToMemory({ emitOnlyDtsFiles: true });\n\n const diagnostics = emitResult.getDiagnostics();\n if (diagnostics && diagnostics.length > 0) {\n if (diagnostics.some(d => d.getCategory() === DiagnosticCategory.Error)) {\n throw new Error(\n `The Typescript emit process failed while generating built-in types: \\n ${diagnostics\n .filter(d => d.getCategory() === DiagnosticCategory.Error)\n .map(\n d =>\n `-${d.getSourceFile() ? `${d.getSourceFile()?.getFilePath()}:` : \"\"} ${String(\n d.getMessageText()\n )} (at ${d.getStart()}:${d.getLength()})`\n )\n .join(\"\\n\")}`\n );\n } else if (\n diagnostics.some(d => d.getCategory() === DiagnosticCategory.Warning)\n ) {\n context.warn(\n `The Typescript emit process completed with warnings while generating built-in types: \\n ${diagnostics\n .filter(d => d.getCategory() === DiagnosticCategory.Warning)\n .map(\n d =>\n `-${d.getSourceFile() ? `${d.getSourceFile()?.getFilePath()}:` : \"\"} ${String(\n d.getMessageText()\n )} (at ${d.getStart()}:${d.getLength()})`\n )\n .join(\"\\n\")}`\n );\n } else {\n context.debug(\n `The Typescript emit process completed with diagnostic messages while generating built-in types: \\n ${diagnostics\n .map(\n d =>\n `-${d.getSourceFile() ? `${d.getSourceFile()?.getFilePath()}:` : \"\"} ${String(\n d.getMessageText()\n )} (at ${d.getStart()}:${d.getLength()})`\n )\n .join(\"\\n\")}`\n );\n }\n }\n\n const emittedFiles = emitResult.getFiles();\n context.debug(\n `The TypeScript compiler emitted ${emittedFiles.length} files for built-in types.`\n );\n\n if (emittedFiles.length === 0) {\n context.warn(\n \"The TypeScript compiler did not emit any files for built-in types. This may indicate an issue with the TypeScript configuration or the provided files.\"\n );\n return { code: \"\", directives: [] };\n }\n\n // First pass: build a mapping from emitted file paths to builtin module IDs\n // so that relative imports between builtins can be resolved correctly\n const fileToModuleMap = new Map<string, string>();\n const emittedBuiltinFiles: { filePath: string; text: string }[] = [];\n\n for (const emittedFile of emittedFiles) {\n const filePath = appendPath(\n emittedFile.filePath,\n context.workspaceConfig.workspaceRoot\n );\n\n if (\n !filePath.endsWith(\".map\") &&\n findFileName(filePath) !== \"tsconfig.tsbuildinfo\" &&\n isParentPath(filePath, context.builtinsPath)\n ) {\n const moduleId = replaceExtension(\n replacePath(\n replacePath(filePath, context.builtinsPath),\n replacePath(\n context.builtinsPath,\n context.workspaceConfig.workspaceRoot\n )\n ),\n \"\",\n {\n fullExtension: true\n }\n );\n if (context.builtins.includes(moduleId)) {\n fileToModuleMap.set(filePath, moduleId);\n emittedBuiltinFiles.push({ filePath, text: emittedFile.text });\n }\n }\n }\n\n const builtins = await context.getBuiltins();\n\n // Build a content map of all emitted .d.ts files for ambient module resolution\n const emittedContentMap = new Map<string, string>();\n for (const emittedFile of emittedFiles) {\n const filePath = appendPath(\n emittedFile.filePath,\n context.workspaceConfig.workspaceRoot\n );\n if (\n !filePath.endsWith(\".map\") &&\n findFileName(filePath) !== \"tsconfig.tsbuildinfo\"\n ) {\n emittedContentMap.set(filePath, emittedFile.text);\n }\n }\n\n // Second pass: process each builtin module and generate declare module blocks\n let code = \"\";\n const directives: string[] = [];\n const ambientModules = new Set<string>();\n let isFirst = true;\n\n for (const entry of emittedBuiltinFiles) {\n context.trace(\n `Processing emitted type declaration file: ${entry.filePath}`\n );\n\n const moduleId = fileToModuleMap.get(entry.filePath)!;\n const moduleDecl = await writeModuleDeclarations(\n context,\n entry.filePath,\n moduleId,\n entry.text,\n fileToModuleMap\n );\n\n if (!isFirst) {\n code += \"\\n\\n\";\n }\n isFirst = false;\n code += moduleDecl.content;\n\n for (const dep of moduleDecl.ambient) {\n if (dep.external) {\n const directive = dep.id;\n if (!directives.includes(directive)) {\n directives.push(directive);\n }\n } else if (builtins.some(builtin => builtin.id === dep.id)) {\n ambientModules.add(\n builtins.find(builtin => builtin.id === dep.id)!.path\n );\n } else if (\n builtins.some(\n builtin => replaceExtension(builtin.path) === replaceExtension(dep.id)\n )\n ) {\n ambientModules.add(dep.id);\n } else {\n const resolved = await context.resolve(dep.id, entry.filePath);\n if (resolved) {\n for (const name of [\n resolved.id,\n `${resolved.id}.d.ts`,\n `${resolved.id}.d.mts`,\n `${resolved.id}.d.cts`,\n replaceExtension(resolved.id, \".d.ts\"),\n replaceExtension(resolved.id, \".d.mts\"),\n replaceExtension(resolved.id, \".d.cts\"),\n `${resolved.id}/index.d.ts`\n ]) {\n if (emittedContentMap.has(name)) {\n ambientModules.add(name);\n break;\n }\n }\n }\n }\n }\n }\n\n // Inject non-external ambient module declarations wholesale\n for (const ambientFile of ambientModules) {\n const dts = emittedContentMap.get(ambientFile);\n if (dts) {\n const cleaned = dts.replace(/\\/\\/# sourceMappingURL=.*$/m, \"\").trim();\n if (cleaned) {\n code += `\\n\\n${formatTypes(cleaned)}`;\n }\n }\n }\n\n code = await format(context, context.typesPath, code);\n\n context.debug(\n `A TypeScript declaration file (size: ${prettyBytes(\n new Blob(toArray(code)).size\n )}) emitted for the built-in modules types.`\n );\n\n return { code, directives };\n}\n","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { install } from \"@stryke/fs/install\";\nimport {\n doesPackageMatch,\n getPackageListing,\n isPackageListed\n} from \"@stryke/fs/package-fns\";\nimport {\n getPackageName,\n getPackageVersion,\n hasPackageVersion\n} from \"@stryke/string-format/package\";\nimport { isNumber } from \"@stryke/type-checks/is-number\";\nimport type { Context } from \"../../types\";\n\n/**\n * Installs a package if it is not already installed.\n *\n * @param context - The resolved options\n * @param packageName - The name of the package to install\n * @param dev - Whether to install the package as a dev dependency\n */\nexport async function installPackage(\n context: Context,\n packageName: string,\n dev = false\n) {\n if (\n !(await isPackageListed(getPackageName(packageName), {\n cwd: context.config.root\n }))\n ) {\n if (context.config.autoInstall) {\n context.warn(\n `The package \"${packageName}\" is not installed. It will be installed automatically.`\n );\n\n const result = await install(packageName, {\n cwd: context.config.root,\n dev\n });\n if (isNumber(result.exitCode) && result.exitCode > 0) {\n context.error(result.stderr);\n throw new Error(\n `An error occurred while installing the package \"${packageName}\"`\n );\n }\n } else {\n context.warn(\n `The package \"${packageName}\" is not installed. Since the \"autoInstall\" option is set to false, it will not be installed automatically.`\n );\n }\n } else if (\n hasPackageVersion(packageName) &&\n !process.env.POWERLINES_SKIP_VERSION_CHECK\n ) {\n const isMatching = await doesPackageMatch(\n getPackageName(packageName),\n getPackageVersion(packageName)!,\n context.config.root\n );\n if (!isMatching) {\n const packageListing = await getPackageListing(\n getPackageName(packageName),\n {\n cwd: context.config.root\n }\n );\n if (\n !packageListing?.version.startsWith(\"catalog:\") &&\n !packageListing?.version.startsWith(\"workspace:\")\n ) {\n context.warn(\n `The package \"${getPackageName(packageName)}\" is installed but does not match the expected version ${getPackageVersion(\n packageName\n )} (installed version: ${packageListing?.version || \"<Unknown>\"}). Please ensure this is intentional before proceeding. Note: You can skip this validation with the \"STORM_STACK_SKIP_VERSION_CHECK\" environment variable.`\n );\n }\n }\n }\n}\n\n/**\n * Installs a package if it is not already installed.\n *\n * @param context - The resolved options\n * @param packages - The list of packages to install\n */\nexport async function installPackages(\n context: Context,\n packages: Array<{ name: string; dev?: boolean }>\n) {\n return Promise.all(\n packages.map(async pkg => installPackage(context, pkg.name, pkg.dev))\n );\n}\n","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { getPackageName } from \"@stryke/string-format/package\";\nimport { Context } from \"../../types\";\nimport { installPackage } from \"./install\";\n\n/**\n * Install missing project dependencies.\n *\n * @param context - The build context.\n */\nexport async function installDependencies<TContext extends Context = Context>(\n context: TContext\n): Promise<void> {\n context.debug(`Checking and installing missing project dependencies.`);\n\n context.dependencies ??= {};\n context.devDependencies ??= {};\n\n if (\n Object.keys(context.dependencies).length === 0 &&\n Object.keys(context.devDependencies).length === 0\n ) {\n context.debug(\n `No dependencies or devDependencies to install. Skipping installation step.`\n );\n return;\n }\n\n context.debug(\n `The following packages are required: \\nDependencies: \\n${Object.entries(\n context.dependencies\n )\n .map(([name, version]) => `- ${name}@${String(version)}`)\n .join(\" \\n\")}\\n\\nDevDependencies: \\n${Object.entries(\n context.devDependencies\n )\n .map(([name, version]) => `- ${name}@${String(version)}`)\n .join(\" \\n\")}`\n );\n\n await Promise.all([\n Promise.all(\n Object.entries(context.dependencies).map(async ([name, version]) =>\n installPackage(\n context,\n `${getPackageName(name)}@${String(version)}`,\n false\n )\n )\n ),\n Promise.all(\n Object.entries(context.devDependencies).map(async ([name, version]) =>\n installPackage(\n context,\n `${getPackageName(name)}@${String(version)}`,\n true\n )\n )\n )\n ]);\n}\n","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { Diff, ObjectData } from \"@donedeal0/superdiff\";\nimport { getObjectDiff } from \"@donedeal0/superdiff\";\nimport { readJsonFile } from \"@stryke/fs/json\";\nimport { isPackageExists } from \"@stryke/fs/package-fns\";\nimport { StormJSON } from \"@stryke/json/storm-json\";\nimport {\n findFileName,\n findFilePath,\n relativePath\n} from \"@stryke/path/file-path-fns\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { TsConfigJson } from \"@stryke/types/tsconfig\";\nimport chalk from \"chalk\";\nimport type { EnvironmentContext } from \"../../types\";\nimport { ResolvedConfig } from \"../../types\";\nimport {\n getParsedTypeScriptConfig,\n getTsconfigFilePath,\n isIncludeMatchFound\n} from \"../../typescript/tsconfig\";\n\nexport function getTsconfigDtsPath<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig\n>(context: EnvironmentContext<TResolvedConfig>): string {\n const dtsRelativePath = joinPaths(\n relativePath(\n joinPaths(context.workspaceConfig.workspaceRoot, context.config.root),\n findFilePath(context.typesPath)\n ),\n findFileName(context.typesPath)\n );\n\n return dtsRelativePath;\n}\n\nasync function resolveTsconfigChanges<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig\n>(context: EnvironmentContext<TResolvedConfig>): Promise<TsConfigJson> {\n const tsconfig = getParsedTypeScriptConfig(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.tsconfig,\n context.config.tsconfigRaw\n );\n\n const tsconfigFilePath = getTsconfigFilePath(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.tsconfig\n );\n\n const tsconfigJson = await readJsonFile<TsConfigJson>(tsconfigFilePath);\n tsconfigJson.compilerOptions ??= {};\n\n if (context.config.output.dts !== false) {\n const dtsRelativePath = getTsconfigDtsPath(context);\n\n if (\n !tsconfigJson.include?.some(filePattern =>\n isIncludeMatchFound(filePattern, [context.typesPath, dtsRelativePath])\n )\n ) {\n tsconfigJson.include ??= [];\n tsconfigJson.include.push(\n dtsRelativePath.startsWith(\"./\")\n ? dtsRelativePath.slice(2)\n : dtsRelativePath\n );\n }\n }\n\n if (\n !tsconfig.options.lib?.some(lib =>\n [\n \"lib.esnext.d.ts\",\n \"lib.es2021.d.ts\",\n \"lib.es2022.d.ts\",\n \"lib.es2023.d.ts\"\n ].includes(lib.toLowerCase())\n )\n ) {\n tsconfigJson.compilerOptions.lib ??= [];\n tsconfigJson.compilerOptions.lib.push(\"esnext\");\n }\n\n // if (tsconfig.options.module !== ts.ModuleKind.ESNext) {\n // tsconfigJson.compilerOptions.module = \"ESNext\";\n // }\n\n // if (\n // !tsconfig.options.target ||\n // ![\n // ts.ScriptTarget.ESNext,\n // ts.ScriptTarget.ES2024,\n // ts.ScriptTarget.ES2023,\n // ts.ScriptTarget.ES2022,\n // ts.ScriptTarget.ES2021\n // ].includes(tsconfig.options.target)\n // ) {\n // tsconfigJson.compilerOptions.target = \"ESNext\";\n // }\n\n // if (tsconfig.options.moduleResolution !== ts.ModuleResolutionKind.Bundler) {\n // tsconfigJson.compilerOptions.moduleResolution = \"Bundler\";\n // }\n\n // if (tsconfig.options.moduleDetection !== ts.ModuleDetectionKind.Force) {\n // tsconfigJson.compilerOptions.moduleDetection = \"force\";\n // }\n\n // if (tsconfig.options.allowSyntheticDefaultImports !== true) {\n // tsconfigJson.compilerOptions.allowSyntheticDefaultImports = true;\n // }\n\n // if (tsconfig.options.noImplicitOverride !== true) {\n // tsconfigJson.compilerOptions.noImplicitOverride = true;\n // }\n\n // if (tsconfig.options.noUncheckedIndexedAccess !== true) {\n // tsconfigJson.compilerOptions.noUncheckedIndexedAccess = true;\n // }\n\n // if (tsconfig.options.skipLibCheck !== true) {\n // tsconfigJson.compilerOptions.skipLibCheck = true;\n // }\n\n // if (tsconfig.options.resolveJsonModule !== true) {\n // tsconfigJson.compilerOptions.resolveJsonModule = true;\n // }\n\n // if (tsconfig.options.verbatimModuleSyntax !== false) {\n // tsconfigJson.compilerOptions.verbatimModuleSyntax = false;\n // }\n\n // if (tsconfig.options.allowJs !== true) {\n // tsconfigJson.compilerOptions.allowJs = true;\n // }\n\n // if (tsconfig.options.declaration !== true) {\n // tsconfigJson.compilerOptions.declaration = true;\n // }\n\n if (tsconfig.options.esModuleInterop !== true) {\n tsconfigJson.compilerOptions.esModuleInterop = true;\n }\n\n if (tsconfig.options.isolatedModules !== true) {\n tsconfigJson.compilerOptions.isolatedModules = true;\n }\n\n if (context.config.platform === \"node\") {\n if (\n !tsconfig.options.types?.some(\n type =>\n type.toLowerCase() === \"node\" || type.toLowerCase() === \"@types/node\"\n )\n ) {\n tsconfigJson.compilerOptions.types ??= [];\n tsconfigJson.compilerOptions.types.push(\"node\");\n }\n }\n\n return tsconfigJson;\n}\n\nexport async function initializeTsconfig<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig,\n TContext extends EnvironmentContext<TResolvedConfig> =\n EnvironmentContext<TResolvedConfig>\n>(context: TContext): Promise<void> {\n context.debug(\n \"Initializing TypeScript configuration (tsconfig.json) for the Powerlines project.\"\n );\n\n if (!isPackageExists(\"typescript\")) {\n throw new Error(\n 'The TypeScript package is not installed. Please install the package using the command: \"npm install typescript --save-dev\"'\n );\n }\n\n const tsconfigFilePath = getTsconfigFilePath(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.tsconfig\n );\n\n context.tsconfig.originalTsconfigJson =\n await readJsonFile<TsConfigJson>(tsconfigFilePath);\n\n context.tsconfig.tsconfigJson =\n await resolveTsconfigChanges<TResolvedConfig>(context);\n\n context.debug(\n \"Writing updated TypeScript configuration (tsconfig.json) file to disk.\"\n );\n\n await context.fs.write(\n tsconfigFilePath,\n StormJSON.stringify(context.tsconfig.tsconfigJson)\n );\n\n context.tsconfig = getParsedTypeScriptConfig(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.tsconfig,\n context.config.tsconfigRaw,\n context.tsconfig.originalTsconfigJson\n );\n}\n\nexport async function resolveTsconfig<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig,\n TContext extends EnvironmentContext<TResolvedConfig> =\n EnvironmentContext<TResolvedConfig>\n>(context: TContext): Promise<void> {\n const updateTsconfigJson = await readJsonFile<TsConfigJson>(\n context.tsconfig.tsconfigFilePath\n );\n if (\n updateTsconfigJson?.compilerOptions?.types &&\n Array.isArray(updateTsconfigJson.compilerOptions.types) &&\n !updateTsconfigJson.compilerOptions.types.length\n ) {\n // If the types array is empty, we can safely remove it\n delete updateTsconfigJson.compilerOptions.types;\n }\n\n const result = getObjectDiff(\n context.tsconfig.originalTsconfigJson as NonNullable<ObjectData>,\n updateTsconfigJson as ObjectData,\n {\n ignoreArrayOrder: true,\n showOnly: {\n statuses: [\"added\", \"deleted\", \"updated\"],\n granularity: \"deep\"\n }\n }\n );\n\n const changes = [] as {\n field: string;\n status: \"added\" | \"deleted\" | \"updated\";\n previous: string;\n current: string;\n }[];\n const getChanges = (difference: Diff, property?: string) => {\n if (\n difference.status === \"added\" ||\n difference.status === \"deleted\" ||\n difference.status === \"updated\"\n ) {\n if (difference.diff) {\n for (const diff of difference.diff) {\n getChanges(\n diff,\n property\n ? `${property}.${difference.property}`\n : difference.property\n );\n }\n } else {\n changes.push({\n field: property\n ? `${property}.${difference.property}`\n : difference.property,\n status: difference.status,\n previous:\n difference.status === \"added\"\n ? \"---\"\n : StormJSON.stringify(difference.previousValue),\n current:\n difference.status === \"deleted\"\n ? \"---\"\n : StormJSON.stringify(difference.currentValue)\n });\n }\n }\n };\n\n for (const diff of result.diff) {\n getChanges(diff);\n }\n\n if (changes.length > 0) {\n context.warn(\n `Updating the following configuration values in \"${context.tsconfig.tsconfigFilePath}\" file:\n\n ${changes\n .map(\n (change, i) => `${chalk.bold.whiteBright(\n `${i + 1}. ${titleCase(change.status)} the ${change.field} field: `\n )}\n ${chalk.red(` - Previous: ${change.previous} `)}\n ${chalk.green(` - Updated: ${change.current} `)}\n `\n )\n .join(\"\\n\")}\n `\n );\n }\n\n await context.fs.write(\n context.tsconfig.tsconfigFilePath,\n StormJSON.stringify(updateTsconfigJson)\n );\n\n context.tsconfig = getParsedTypeScriptConfig(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.tsconfig\n );\n if (!context.tsconfig) {\n throw new Error(\"Failed to parse the TypeScript configuration file.\");\n }\n}\n","/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { Unstable_APIContext } from \"@powerlines/core/types/_internal\";\nimport { formatLogMessage } from \"@storm-software/config-tools/logger/console\";\nimport { toArray } from \"@stryke/convert/to-array\";\nimport { copyFiles } from \"@stryke/fs/copy-file\";\nimport { existsSync } from \"@stryke/fs/exists\";\nimport { createDirectory, removeDirectory } from \"@stryke/fs/helpers\";\nimport { install } from \"@stryke/fs/install\";\nimport { listFiles } from \"@stryke/fs/list-files\";\nimport { isPackageExists } from \"@stryke/fs/package-fns\";\nimport { resolvePackage } from \"@stryke/fs/resolve\";\nimport { getUnique } from \"@stryke/helpers/get-unique\";\nimport { omit } from \"@stryke/helpers/omit\";\nimport { appendPath } from \"@stryke/path/append\";\nimport { relativePath } from \"@stryke/path/file-path-fns\";\nimport { isParentPath } from \"@stryke/path/is-parent-path\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\nimport { isError } from \"@stryke/type-checks/is-error\";\nimport { isFunction } from \"@stryke/type-checks/is-function\";\nimport { isNumber } from \"@stryke/type-checks/is-number\";\nimport { isObject } from \"@stryke/type-checks/is-object\";\nimport { isPromiseLike } from \"@stryke/type-checks/is-promise\";\nimport { isSet } from \"@stryke/type-checks/is-set\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport { isString } from \"@stryke/type-checks/is-string\";\nimport { MaybePromise, PartialKeys, RequiredKeys } from \"@stryke/types/base\";\nimport chalk from \"chalk\";\nimport defu from \"defu\";\nimport Handlebars from \"handlebars\";\nimport packageJson from \"../package.json\" assert { type: \"json\" };\nimport {\n emitBuiltinTypes,\n formatTypes\n} from \"./_internal/helpers/generate-types\";\nimport { callHook, mergeConfigs } from \"./_internal/helpers/hooks\";\nimport { installDependencies } from \"./_internal/helpers/install-dependencies\";\nimport { writeMetaFile } from \"./_internal/helpers/meta\";\nimport {\n initializeTsconfig,\n resolveTsconfig\n} from \"./_internal/helpers/resolve-tsconfig\";\nimport { PowerlinesAPIContext } from \"./context/api-context\";\nimport {\n findInvalidPluginConfig,\n isDuplicate,\n isPlugin,\n isPluginConfig,\n isPluginConfigObject,\n isPluginConfigTuple\n} from \"./plugin-utils\";\nimport type {\n API,\n APIContext,\n BuildInlineConfig,\n CallHookOptions,\n CleanInlineConfig,\n DeployInlineConfig,\n DocsInlineConfig,\n EnvironmentContext,\n EnvironmentResolvedConfig,\n InferHookParameters,\n InitialUserConfig,\n LintInlineConfig,\n NewInlineConfig,\n Plugin,\n PluginConfig,\n PluginConfigObject,\n PluginConfigTuple,\n PluginContext,\n PluginFactory,\n PrepareInlineConfig,\n ResolvedConfig,\n TypesInlineConfig,\n TypesResult\n} from \"./types\";\nimport {\n colorText,\n format,\n formatFolder,\n getTypescriptFileHeader\n} from \"./utils\";\n\n/**\n * The Powerlines API class\n *\n * @remarks\n * This class is responsible for managing the Powerlines project lifecycle, including initialization, building, and finalization.\n *\n * @public\n */\nexport class PowerlinesAPI<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig\n>\n implements API<TResolvedConfig>, AsyncDisposable\n{\n /**\n * The Powerlines context\n */\n #context: Unstable_APIContext<TResolvedConfig>;\n\n /**\n * The Powerlines context\n */\n public get context(): APIContext<TResolvedConfig> {\n return this.#context;\n }\n\n /**\n * Create a new Powerlines API instance\n *\n * @param context - The Powerlines context\n */\n private constructor(context: APIContext<TResolvedConfig>) {\n this.#context = context as Unstable_APIContext<TResolvedConfig>;\n }\n\n /**\n * Initialize a Powerlines API instance\n *\n * @param workspaceRoot - The directory of the underlying workspace the Powerlines project exists in\n * @param config - An object containing the configuration required to run Powerlines tasks.\n * @returns A new instance of the Powerlines API\n */\n public static async from<\n TResolvedConfig extends ResolvedConfig = ResolvedConfig\n >(\n workspaceRoot: string,\n config: InitialUserConfig<TResolvedConfig[\"userConfig\"]>\n ): Promise<PowerlinesAPI<TResolvedConfig>> {\n const api = new PowerlinesAPI<TResolvedConfig>(\n await PowerlinesAPIContext.from(workspaceRoot, config)\n );\n\n api.#context.$$internal = {\n api,\n addPlugin: api.#addPlugin.bind(api)\n };\n\n const timer = api.context.timer(\"Initialization\");\n api.context.info(\n `🔌 The Powerlines Engine v${packageJson.version} has started`\n );\n\n for (const plugin of api.context.config.plugins.flat(10) ?? []) {\n await api.#addPlugin(plugin);\n }\n\n if (api.context.plugins.length === 0) {\n api.context.warn(\n \"No Powerlines plugins were specified in the options. Please ensure this is correct, as it is generally not recommended.\"\n );\n } else {\n api.context.info(\n `Loaded ${api.context.plugins.length} ${titleCase(\n api.context.config.framework\n )} plugin${api.context.plugins.length > 1 ? \"s\" : \"\"}: \\n${api.context.plugins\n .map((plugin, index) => ` ${index + 1}. ${colorText(plugin.name)}`)\n .join(\"\\n\")}`\n );\n }\n\n const pluginConfig = await api.callHook(\"config\", {\n environment: await api.context.getEnvironment(),\n sequential: true,\n result: \"merge\",\n merge: mergeConfigs\n });\n await api.context.withUserConfig(\n pluginConfig as TResolvedConfig[\"userConfig\"],\n { isHighPriority: false }\n );\n\n timer();\n\n return api;\n }\n\n /**\n * Generate the Powerlines typescript declaration file\n *\n * @remarks\n * This method will only generate the typescript declaration file for the Powerlines project. It is generally recommended to run the full `prepare` command, which will run this method as part of its process.\n *\n * @param inlineConfig - The inline configuration for the types command\n */\n public async types(\n inlineConfig: PartialKeys<TypesInlineConfig, \"command\"> = {\n command: \"types\"\n }\n ) {\n const timer = this.context.timer(\"Types\");\n this.context.info(\n \" 🏗️ Generating typescript declarations for the Powerlines project\"\n );\n\n this.context.debug(\n \" Aggregating configuration options for the Powerlines project\"\n );\n\n inlineConfig.command ??= \"types\";\n\n await this.context.withInlineConfig(\n inlineConfig as RequiredKeys<TypesInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n context.debug(\n `Initializing the processing options for the Powerlines project.`\n );\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"pre\"\n });\n\n await initializeTsconfig<TResolvedConfig>(context);\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"normal\"\n });\n\n if (context.entry.length > 0) {\n context.debug(\n `The configuration provided ${\n isObject(context.config.input)\n ? Object.keys(context.config.input).length\n : toArray(context.config.input).length\n } entry point(s), Powerlines has found ${\n context.entry.length\n } entry files(s) for the ${context.config.title} project${\n context.entry.length > 0 && context.entry.length < 10\n ? `: \\n${context.entry\n .map(\n entry =>\n `- ${entry.file}${\n entry.output ? ` -> ${entry.output}` : \"\"\n }`\n )\n .join(\" \\n\")}`\n : \"\"\n }`\n );\n } else {\n context.warn(\n `No entry files were found for the ${\n context.config.title\n } project. Please ensure this is correct. Powerlines plugins generally require at least one entry point to function properly.`\n );\n }\n\n await resolveTsconfig<TResolvedConfig>(context);\n await installDependencies(context);\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"post\"\n });\n\n context.trace(\n `Powerlines configuration has been resolved: \\n\\n${formatLogMessage({\n ...context.config,\n userConfig: isSetObject(context.config.userConfig)\n ? omit(context.config.userConfig, [\"plugins\"])\n : undefined,\n inlineConfig: isSetObject(context.config.inlineConfig)\n ? omit(context.config.inlineConfig, [\"plugins\"])\n : undefined,\n plugins: context.plugins.map(plugin => plugin.plugin.name)\n })}`\n );\n\n if (!context.fs.existsSync(context.cachePath)) {\n await createDirectory(context.cachePath);\n }\n\n if (!context.fs.existsSync(context.dataPath)) {\n await createDirectory(context.dataPath);\n }\n\n if (\n context.config.skipCache === true ||\n context.persistedMeta?.checksum !== context.meta.checksum\n ) {\n context.debug(\n `Using previously prepared files as the meta checksum has not changed.`\n );\n } else {\n context.info(\n `Running \\`prepare\\` command as the meta checksum has changed since the last run.`\n );\n\n await this.prepare(\n defu(\n {\n output: {\n types: false\n }\n },\n inlineConfig\n ) as PrepareInlineConfig<TResolvedConfig>\n );\n }\n\n await this.#types(context);\n\n this.context.debug(\"Formatting files generated during the types step.\");\n\n await format(\n context,\n context.typesPath,\n (await context.fs.read(context.typesPath)) ?? \"\"\n );\n\n await writeMetaFile(context);\n context.persistedMeta = context.meta;\n });\n\n this.context.debug(\n \"✔ Powerlines types generation has completed successfully\"\n );\n timer();\n }\n\n /**\n * Prepare the Powerlines API\n *\n * @remarks\n * This method will prepare the Powerlines API for use, initializing any necessary resources.\n *\n * @param inlineConfig - The inline configuration for the prepare command\n */\n public async prepare(\n inlineConfig:\n | PartialKeys<PrepareInlineConfig, \"command\">\n | PartialKeys<TypesInlineConfig, \"command\">\n | PartialKeys<NewInlineConfig, \"command\">\n | PartialKeys<CleanInlineConfig, \"command\">\n | PartialKeys<BuildInlineConfig, \"command\">\n | PartialKeys<LintInlineConfig, \"command\">\n | PartialKeys<DocsInlineConfig, \"command\">\n | PartialKeys<DeployInlineConfig, \"command\"> = { command: \"prepare\" }\n ) {\n const timer = this.context.timer(\"Prepare\");\n this.context.info(\" 🏗️ Preparing the Powerlines project\");\n\n this.context.debug(\n \" Aggregating configuration options for the Powerlines project\"\n );\n\n inlineConfig.command ??= \"prepare\";\n\n await this.context.withInlineConfig(\n inlineConfig as RequiredKeys<PrepareInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n context.debug(\n `Initializing the processing options for the Powerlines project.`\n );\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"pre\"\n });\n\n await initializeTsconfig<TResolvedConfig>(context);\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"normal\"\n });\n\n if (context.entry.length > 0) {\n context.debug(\n `The configuration provided ${\n isObject(context.config.input)\n ? Object.keys(context.config.input).length\n : toArray(context.config.input).length\n } entry point(s), Powerlines has found ${\n context.entry.length\n } entry files(s) for the ${context.config.title} project${\n context.entry.length > 0 && context.entry.length < 10\n ? `: \\n${context.entry\n .map(\n entry =>\n `- ${entry.file}${\n entry.output ? ` -> ${entry.output}` : \"\"\n }`\n )\n .join(\" \\n\")}`\n : \"\"\n }`\n );\n } else {\n context.warn(\n `No entry files were found for the ${\n context.config.title\n } project. Please ensure this is correct. Powerlines plugins generally require at least one entry point to function properly.`\n );\n }\n\n await resolveTsconfig<TResolvedConfig>(context);\n await installDependencies(context);\n\n await this.callHook(\"configResolved\", {\n environment: context,\n order: \"post\"\n });\n\n context.trace(\n `Powerlines configuration has been resolved: \\n\\n${formatLogMessage({\n ...context.config,\n userConfig: isSetObject(context.config.userConfig)\n ? omit(context.config.userConfig, [\"plugins\"])\n : undefined,\n inlineConfig: isSetObject(context.config.inlineConfig)\n ? omit(context.config.inlineConfig, [\"plugins\"])\n : undefined,\n plugins: context.plugins.map(plugin => plugin.plugin.name)\n })}`\n );\n\n if (!context.fs.existsSync(context.cachePath)) {\n await createDirectory(context.cachePath);\n }\n\n if (!context.fs.existsSync(context.dataPath)) {\n await createDirectory(context.dataPath);\n }\n\n await this.callHook(\"prepare\", {\n environment: context,\n order: \"pre\"\n });\n await this.callHook(\"prepare\", {\n environment: context,\n order: \"normal\"\n });\n\n await this.callHook(\"prepare\", {\n environment: context,\n order: \"post\"\n });\n\n if (context.config.output.types !== false) {\n await this.#types(context);\n }\n\n this.context.debug(\"Formatting files generated during the prepare step.\");\n\n await Promise.all([\n formatFolder(context, context.builtinsPath),\n formatFolder(context, context.entryPath)\n ]);\n\n await writeMetaFile(context);\n context.persistedMeta = context.meta;\n });\n\n this.context.debug(\"✔ Powerlines preparation has completed successfully\");\n timer();\n }\n\n /**\n * Create a new Powerlines project\n *\n * @remarks\n * This method will create a new Powerlines project in the current directory.\n *\n * @param inlineConfig - The inline configuration for the new command\n * @returns A promise that resolves when the project has been created\n */\n public async new(inlineConfig: PartialKeys<NewInlineConfig, \"command\">) {\n const timer = this.context.timer(\"New\");\n this.context.info(\" 🆕 Creating a new Powerlines project\");\n\n inlineConfig.command ??= \"new\";\n\n await this.prepare(\n inlineConfig as RequiredKeys<NewInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n context.debug(\n \"Initializing the processing options for the Powerlines project.\"\n );\n\n await this.callHook(\"new\", {\n environment: context,\n order: \"pre\"\n });\n\n const files = await listFiles(\n joinPaths(context.powerlinesPath, \"files/common/**/*.hbs\")\n );\n for (const file of files) {\n context.trace(`Adding template file to project: ${file}`);\n\n const template = Handlebars.compile(file);\n await context.fs.write(\n joinPaths(context.config.root, file.replace(\".hbs\", \"\")),\n template(context)\n );\n }\n\n await this.callHook(\"new\", {\n environment: context,\n order: \"normal\"\n });\n\n if (context.config.projectType === \"application\") {\n const files = await listFiles(\n joinPaths(context.powerlinesPath, \"files/application/**/*.hbs\")\n );\n for (const file of files) {\n context.trace(`Adding application template file: ${file}`);\n\n const template = Handlebars.compile(file);\n await context.fs.write(\n joinPaths(context.config.root, file.replace(\".hbs\", \"\")),\n template(context)\n );\n }\n } else {\n const files = await listFiles(\n joinPaths(context.powerlinesPath, \"files/library/**/*.hbs\")\n );\n for (const file of files) {\n context.trace(`Adding library template file: ${file}`);\n\n const template = Handlebars.compile(file);\n await context.fs.write(\n joinPaths(context.config.root, file.replace(\".hbs\", \"\")),\n template(context)\n );\n }\n }\n\n await this.callHook(\"new\", {\n environment: context,\n order: \"post\"\n });\n });\n\n this.context.debug(\"✔ Powerlines new command completed successfully\");\n timer();\n }\n\n /**\n * Clean any previously prepared artifacts\n *\n * @remarks\n * This method will remove the previous Powerlines artifacts from the project.\n *\n * @param inlineConfig - The inline configuration for the clean command\n * @returns A promise that resolves when the clean command has completed\n */\n public async clean(\n inlineConfig:\n | PartialKeys<CleanInlineConfig, \"command\">\n | PartialKeys<PrepareInlineConfig, \"command\"> = {\n command: \"clean\"\n }\n ) {\n const timer = this.context.timer(\"Clean\");\n this.context.info(\" 🧹 Cleaning the previous Powerlines artifacts\");\n\n inlineConfig.command ??= \"clean\";\n\n await this.prepare(\n inlineConfig as RequiredKeys<CleanInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n context.debug(\"Cleaning the project's dist and artifacts directories.\");\n\n await context.fs.remove(\n joinPaths(\n context.workspaceConfig.workspaceRoot,\n context.config.output.path\n )\n );\n await context.fs.remove(\n joinPaths(\n context.workspaceConfig.workspaceRoot,\n context.config.root,\n context.config.output.artifactsPath\n )\n );\n\n await this.callHook(\"clean\", {\n environment: context,\n sequential: false\n });\n });\n\n this.context.debug(\"✔ Powerlines cleaning completed successfully\");\n timer();\n }\n\n /**\n * Lint the project\n *\n * @param inlineConfig - The inline configuration for the lint command\n * @returns A promise that resolves when the lint command has completed\n */\n public async lint(\n inlineConfig:\n | PartialKeys<LintInlineConfig, \"command\">\n | PartialKeys<BuildInlineConfig, \"command\"> = { command: \"lint\" }\n ) {\n const timer = this.context.timer(\"Lint\");\n this.context.info(\" 📝 Linting the Powerlines project\");\n\n inlineConfig.command ??= \"lint\";\n await this.prepare(\n inlineConfig as RequiredKeys<LintInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n await this.callHook(\"lint\", {\n environment: context,\n sequential: false\n });\n });\n\n this.context.debug(\"✔ Powerlines linting completed successfully\");\n timer();\n }\n\n /**\n * Build the project\n *\n * @remarks\n * This method will build the Powerlines project, generating the necessary artifacts.\n *\n * @param inlineConfig - The inline configuration for the build command\n * @returns A promise that resolves when the build command has completed\n */\n public async build(\n inlineConfig: PartialKeys<BuildInlineConfig, \"command\"> = {\n command: \"build\"\n }\n ) {\n const timer = this.context.timer(\"Build\");\n this.context.info(\" 📦 Building the Powerlines project\");\n\n await this.context.generateChecksum();\n if (\n this.context.meta.checksum !== this.context.persistedMeta?.checksum ||\n this.context.config.skipCache\n ) {\n this.context.info(\n !this.context.persistedMeta?.checksum\n ? \"No previous build cache found. Preparing the project for the initial build.\"\n : this.context.meta.checksum !== this.context.persistedMeta.checksum\n ? \"The project has been modified since the last time `prepare` was ran. Re-preparing the project.\"\n : \"The project is configured to skip cache. Re-preparing the project.\"\n );\n\n inlineConfig.command ??= \"build\";\n\n await this.prepare(\n inlineConfig as RequiredKeys<BuildInlineConfig, \"command\">\n );\n }\n\n if (this.context.config.singleBuild) {\n await this.#handleBuild(await this.#context.toEnvironment());\n } else {\n await this.#executeEnvironments(async context => {\n await this.#handleBuild(context);\n });\n }\n\n this.context.debug(\"✔ Powerlines build completed successfully\");\n timer();\n }\n\n /**\n * Prepare the documentation for the project\n *\n * @param inlineConfig - The inline configuration for the docs command\n * @returns A promise that resolves when the documentation generation has completed\n */\n public async docs(inlineConfig: DocsInlineConfig = { command: \"docs\" }) {\n const timer = this.context.timer(\"Docs\");\n this.context.info(\n \" 📓 Generating documentation for the Powerlines project\"\n );\n\n inlineConfig.command ??= \"docs\";\n await this.prepare(\n inlineConfig as RequiredKeys<DocsInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n context.debug(\n \"Writing documentation for the Powerlines project artifacts.\"\n );\n\n inlineConfig.command ??= \"docs\";\n\n await this.prepare(\n inlineConfig as RequiredKeys<DocsInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n await this.callHook(\"docs\", {\n environment: context\n });\n });\n });\n\n this.context.debug(\n \"✔ Powerlines documentation generation completed successfully\"\n );\n timer();\n }\n\n /**\n * Deploy the project source code\n *\n * @remarks\n * This method will prepare and build the Powerlines project, generating the necessary artifacts for the deployment.\n *\n * @param inlineConfig - The inline configuration for the deploy command\n */\n public async deploy(\n inlineConfig: PartialKeys<DeployInlineConfig, \"command\"> = {\n command: \"deploy\"\n }\n ) {\n const timer = this.context.timer(\"Deploy\");\n this.context.info(\" 🚀 Deploying the Powerlines project\");\n\n inlineConfig.command ??= \"deploy\";\n\n await this.prepare(\n inlineConfig as RequiredKeys<DeployInlineConfig, \"command\">\n );\n await this.#executeEnvironments(async context => {\n await this.callHook(\"deploy\", { environment: context });\n });\n\n this.context.debug(\"✔ Powerlines deploy completed successfully\");\n timer();\n }\n\n /**\n * Finalization/cleanup processing for the Powerlines API\n *\n * @remarks\n * This step includes any final processes or clean up required by Powerlines. It will be run after each Powerlines command.\n *\n * @returns A promise that resolves when the finalization process has completed\n */\n public async finalize() {\n const timer = this.context.timer(\"Finalization\");\n this.context.info(\" 🏁 Powerlines finalization processes started\");\n\n await this.#executeEnvironments(async context => {\n await this.callHook(\"finalize\", { environment: context });\n await context.fs.dispose();\n\n if (\n existsSync(context.cachePath) &&\n !(await listFiles(joinPaths(context.cachePath, \"**/*\")))?.length\n ) {\n await removeDirectory(context.cachePath);\n }\n });\n\n this.context.debug(\"✔ Powerlines finalization completed successfully\");\n timer();\n }\n\n /**\n * Invokes the configured plugin hooks\n *\n * @remarks\n * By default, it will call the `\"pre\"`, `\"normal\"`, and `\"post\"` ordered hooks in sequence\n *\n * @param hook - The hook to call\n * @param options - The options to provide to the hook\n * @param args - The arguments to pass to the hook\n * @returns The result of the hook call\n */\n public async callHook<TKey extends string>(\n hook: TKey,\n options: CallHookOptions & {\n environment?: string | EnvironmentContext<TResolvedConfig>;\n },\n ...args: InferHookParameters<PluginContext<TResolvedConfig>, TKey>\n ) {\n return callHook<TResolvedConfig, TKey>(\n isSetObject(options?.environment)\n ? options.environment\n : await this.#context.getEnvironment(options?.environment),\n hook,\n { sequential: true, ...options },\n ...args\n );\n }\n\n /**\n * Dispose of the Powerlines API instance\n *\n * @remarks\n * This method will finalize the Powerlines API instance, cleaning up any resources used.\n */\n public async [Symbol.asyncDispose]() {\n await this.finalize();\n }\n\n async #handleBuild(context: EnvironmentContext<TResolvedConfig>) {\n await this.callHook(\"build\", {\n environment: context,\n order: \"pre\"\n });\n\n context.debug(\n \"Formatting the generated entry files before the build process starts.\"\n );\n await formatFolder(context, context.entryPath);\n\n await this.callHook(\"build\", {\n environment: context,\n order: \"normal\"\n });\n\n if (context.config.output.copy) {\n context.debug(\"Copying project's files from build output directory.\");\n\n const destinationPath = isParentPath(\n appendPath(\n context.config.output.path,\n context.workspaceConfig.workspaceRoot\n ),\n appendPath(context.config.root, context.workspaceConfig.workspaceRoot)\n )\n ? joinPaths(\n context.config.output.copy.path,\n relativePath(\n appendPath(\n context.config.root,\n context.workspaceConfig.workspaceRoot\n ),\n appendPath(\n context.config.output.path,\n context.workspaceConfig.workspaceRoot\n )\n )\n )\n : joinPaths(context.config.output.copy.path, \"dist\");\n const sourcePath = appendPath(\n context.config.output.path,\n context.workspaceConfig.workspaceRoot\n );\n\n if (existsSync(sourcePath) && sourcePath !== destinationPath) {\n context.debug(\n `Copying files from project's build output directory (${\n context.config.output.path\n }) to the project's copy/publish directory (${destinationPath}).`\n );\n\n await copyFiles(sourcePath, destinationPath);\n } else {\n context.warn(\n `The source path for the copy operation ${\n !existsSync(sourcePath)\n ? \"does not exist\"\n : \"is the same as the destination path\"\n }. Source: ${sourcePath}, Destination: ${\n destinationPath\n }. Skipping copying of build output files.`\n );\n }\n\n if (\n context.config.output.copy.assets &&\n Array.isArray(context.config.output.copy.assets)\n ) {\n await Promise.all(\n context.config.output.copy.assets.map(async asset => {\n context.trace(\n `Copying asset(s): ${chalk.redBright(\n context.workspaceConfig.workspaceRoot === asset.input\n ? asset.glob\n : appendPath(\n asset.glob,\n replacePath(\n asset.input,\n context.workspaceConfig.workspaceRoot\n )\n )\n )} -> ${chalk.greenBright(\n appendPath(\n asset.glob,\n replacePath(\n asset.output,\n context.workspaceConfig.workspaceRoot\n )\n )\n )} ${\n Array.isArray(asset.ignore) && asset.ignore.length > 0\n ? ` (ignoring: ${asset.ignore\n .map(i => chalk.yellowBright(i))\n .join(\", \")})`\n : \"\"\n }`\n );\n\n await context.fs.copy(asset, asset.output);\n })\n );\n }\n } else {\n context.debug(\n \"No copy configuration found for the project output. Skipping the copying of build output files.\"\n );\n }\n\n await this.callHook(\"build\", {\n environment: context,\n order: \"post\"\n });\n }\n\n /**\n * Get the configured environments\n *\n * @returns The configured environments\n */\n async #getEnvironments() {\n if (\n !this.context.config.environments ||\n Object.keys(this.context.config.environments).length <= 1\n ) {\n this.context.debug(\n \"No environments are configured for this Powerlines project. Using the default environment.\"\n );\n\n return [await this.context.getEnvironment()];\n }\n\n this.context.debug(\n `Found ${Object.keys(this.context.config.environments).length} configured environment(s) for this Powerlines project.`\n );\n\n return (\n await Promise.all(\n Object.entries(this.context.config.environments).map(\n async ([name, config]) => {\n const environment = await this.context.getEnvironmentSafe(name);\n if (!environment) {\n const resolvedEnvironment = await this.callHook(\n \"configEnvironment\",\n {\n environment: name\n },\n name,\n config\n );\n\n if (resolvedEnvironment) {\n this.context.environments[name] = await this.context.in(\n resolvedEnvironment as EnvironmentResolvedConfig\n );\n }\n }\n\n return this.context.environments[name];\n }\n )\n )\n ).filter(context => isSet(context));\n }\n\n /**\n * Execute a handler function for each environment\n *\n * @param handle - The handler function to execute for each environment\n */\n async #executeEnvironments(\n handle: (context: EnvironmentContext<TResolvedConfig>) => MaybePromise<void>\n ) {\n await Promise.all(\n (await this.#getEnvironments()).map(async context => {\n return Promise.resolve(handle(context));\n })\n );\n }\n\n /**\n * Add a Powerlines plugin used in the build process\n *\n * @param config - The import path of the plugin to add\n */\n async #addPlugin(config: PluginConfig<PluginContext<TResolvedConfig>>) {\n if (config) {\n const result = await this.#initPlugin(config);\n if (!result) {\n return;\n }\n\n for (const plugin of result) {\n this.context.debug(\n `Successfully initialized the ${chalk.bold.cyanBright(\n plugin.name\n )} plugin`\n );\n\n await this.context.addPlugin(plugin);\n }\n }\n }\n\n /**\n * Initialize a Powerlines plugin\n *\n * @param config - The configuration for the plugin\n * @returns The initialized plugin instance, or null if the plugin was a duplicate\n * @throws Will throw an error if the plugin cannot be found or is invalid\n */\n async #initPlugin(\n config: PluginConfig<PluginContext<TResolvedConfig>>\n ): Promise<Plugin<PluginContext<TResolvedConfig>>[] | null> {\n let awaited = config;\n if (isPromiseLike(config)) {\n awaited = (await Promise.resolve(config as Promise<any>)) as PluginConfig<\n PluginContext<TResolvedConfig>\n >;\n }\n\n if (!isPluginConfig<PluginContext<TResolvedConfig>>(awaited)) {\n const invalid = findInvalidPluginConfig(awaited);\n\n throw new Error(\n `Invalid ${\n invalid && invalid.length > 1 ? \"plugins\" : \"plugin\"\n } specified in the configuration - ${\n invalid && invalid.length > 0\n ? JSON.stringify(awaited)\n : invalid?.join(\"\\n\\n\")\n } \\n\\nPlease ensure the value is one of the following: \\n - an instance of \\`Plugin\\` \\n - a plugin name \\n - an object with the \\`plugin\\` and \\`options\\` properties \\n - a tuple array with the plugin and options \\n - a factory function that returns a plugin or array of plugins \\n - an array of plugins or plugin configurations`\n );\n }\n\n let plugins!: Plugin<PluginContext<TResolvedConfig>>[];\n if (isPlugin<PluginContext<TResolvedConfig>>(awaited)) {\n plugins = [awaited];\n } else if (isFunction(awaited)) {\n plugins = toArray(await Promise.resolve(awaited()));\n } else if (isString(awaited)) {\n const resolved = await this.#resolvePlugin(awaited);\n if (isFunction(resolved)) {\n plugins = toArray(await Promise.resolve(resolved()));\n } else {\n plugins = toArray(resolved);\n }\n } else if (\n Array.isArray(awaited) &&\n (awaited as PluginContext<TResolvedConfig>[]).every(\n isPlugin<PluginContext<TResolvedConfig>>\n )\n ) {\n plugins = awaited as Plugin<PluginContext<TResolvedConfig>>[];\n } else if (\n Array.isArray(awaited) &&\n (awaited as PluginConfig<PluginContext<TResolvedConfig>>[]).every(\n isPluginConfig<PluginContext<TResolvedConfig>>\n )\n ) {\n plugins = [];\n for (const pluginConfig of awaited as PluginConfig<\n PluginContext<TResolvedConfig>\n >[]) {\n const initialized = await this.#initPlugin(pluginConfig);\n if (initialized) {\n plugins.push(...initialized);\n }\n }\n } else if (\n isPluginConfigTuple<PluginContext<TResolvedConfig>>(awaited) ||\n isPluginConfigObject<PluginContext<TResolvedConfig>>(awaited)\n ) {\n let pluginConfig!:\n | string\n | PluginFactory<PluginContext<TResolvedConfig>>\n | Plugin<PluginContext<TResolvedConfig>>;\n let pluginOptions: any;\n\n if (isPluginConfigTuple<PluginContext<TResolvedConfig>>(awaited)) {\n pluginConfig = awaited[0] as Plugin<PluginContext<TResolvedConfig>>;\n pluginOptions =\n (awaited as PluginConfigTuple)?.length === 2 ? awaited[1] : undefined;\n } else {\n pluginConfig = (awaited as PluginConfigObject).plugin as Plugin<\n PluginContext<TResolvedConfig>\n >;\n pluginOptions = (awaited as PluginConfigObject).options;\n }\n\n if (isSetString(pluginConfig)) {\n const resolved = await this.#resolvePlugin(pluginConfig);\n if (isFunction(resolved)) {\n plugins = toArray(\n await Promise.resolve(\n pluginOptions ? resolved(pluginOptions) : resolved()\n )\n );\n } else {\n plugins = toArray(resolved);\n }\n } else if (isFunction(pluginConfig)) {\n plugins = toArray(await Promise.resolve(pluginConfig(pluginOptions)));\n } else if (\n Array.isArray(pluginConfig) &&\n pluginConfig.every(isPlugin<PluginContext<TResolvedConfig>>)\n ) {\n plugins = pluginConfig;\n } else if (isPlugin<PluginContext<TResolvedConfig>>(pluginConfig)) {\n plugins = toArray(pluginConfig);\n }\n }\n\n if (!plugins) {\n throw new Error(\n `The plugin configuration ${JSON.stringify(awaited)} is invalid. This configuration must point to a valid Powerlines plugin module.`\n );\n }\n\n if (\n plugins.length > 0 &&\n !plugins.every(isPlugin<PluginContext<TResolvedConfig>>)\n ) {\n throw new Error(\n `The plugin option ${JSON.stringify(plugins)} does not export a valid module. This configuration must point to a valid Powerlines plugin module.`\n );\n }\n\n const result = [] as Plugin<PluginContext<TResolvedConfig>>[];\n for (const plugin of plugins) {\n if (isDuplicate<TResolvedConfig>(plugin, this.context.plugins)) {\n this.context.trace(\n `Duplicate ${chalk.bold.cyanBright(\n plugin.name\n )} plugin dependency detected - Skipping initialization.`\n );\n } else {\n result.push(plugin);\n\n this.context.trace(\n `Initializing the ${chalk.bold.cyanBright(plugin.name)} plugin...`\n );\n }\n }\n\n return result;\n }\n\n async #resolvePlugin<TOptions>(\n pluginPath: string\n ): Promise<\n | Plugin<PluginContext<TResolvedConfig>>\n | Plugin<PluginContext<TResolvedConfig>>[]\n | ((\n options?: TOptions\n ) => MaybePromise<\n | Plugin<PluginContext<TResolvedConfig>>\n | Plugin<PluginContext<TResolvedConfig>>[]\n >)\n > {\n if (\n pluginPath.startsWith(\"@\") &&\n pluginPath.split(\"/\").filter(Boolean).length > 2\n ) {\n const splits = pluginPath.split(\"/\").filter(Boolean);\n pluginPath = `${splits[0]}/${splits[1]}`;\n }\n\n const isInstalled = isPackageExists(pluginPath, {\n paths: [\n this.context.workspaceConfig.workspaceRoot,\n this.context.config.root\n ]\n });\n if (!isInstalled && this.context.config.autoInstall) {\n this.#context.warn(\n `The plugin package \"${\n pluginPath\n }\" is not installed. It will be installed automatically.`\n );\n\n const result = await install(pluginPath, {\n cwd: this.context.config.root\n });\n if (isNumber(result.exitCode) && result.exitCode > 0) {\n this.#context.error(result.stderr);\n\n throw new Error(\n `An error occurred while installing the build plugin package \"${\n pluginPath\n }\" `\n );\n }\n }\n\n try {\n // First check if the package has a \"plugin\" subdirectory - @scope/package/plugin\n const module = await this.context.resolver.plugin.import<{\n plugin?:\n | Plugin<PluginContext<TResolvedConfig>>\n | ((\n options?: TOptions\n ) => MaybePromise<Plugin<PluginContext<TResolvedConfig>>>);\n default?:\n | Plugin<PluginContext<TResolvedConfig>>\n | ((\n options?: TOptions\n ) => MaybePromise<Plugin<PluginContext<TResolvedConfig>>>);\n }>(\n this.context.resolver.plugin.esmResolve(joinPaths(pluginPath, \"plugin\"))\n );\n\n const result = module.plugin ?? module.default;\n if (!result) {\n throw new Error(\n `The plugin package \"${pluginPath}\" does not export a valid module.`\n );\n }\n\n return result;\n } catch (error) {\n try {\n const module = await this.context.resolver.plugin.import<{\n plugin?:\n | Plugin<PluginContext<TResolvedConfig>>\n | ((\n options?: TOptions\n ) => MaybePromise<Plugin<PluginContext<TResolvedConfig>>>);\n default?:\n | Plugin<PluginContext<TResolvedConfig>>\n | ((\n options?: TOptions\n ) => MaybePromise<Plugin<PluginContext<TResolvedConfig>>>);\n }>(this.context.resolver.plugin.esmResolve(pluginPath));\n\n const result = module.plugin ?? module.default;\n if (!result) {\n throw new Error(\n `The plugin package \"${pluginPath}\" does not export a valid module.`\n );\n }\n\n return result;\n } catch {\n if (!isInstalled) {\n throw new Error(\n `The plugin package \"${\n pluginPath\n }\" is not installed. Please install the package using the command: \"npm install ${\n pluginPath\n } --save-dev\"`\n );\n } else {\n throw new Error(\n `An error occurred while importing the build plugin package \"${\n pluginPath\n }\":\n${isError(error) ? error.message : String(error)}\n\nNote: Please ensure the plugin package's default export is a class that extends \\`Plugin\\` with a constructor that excepts a single arguments of type \\`PluginOptions\\`.`\n );\n }\n }\n }\n }\n\n /**\n * Generate the Powerlines TypeScript declaration file\n *\n * @remarks\n * This method will generate the TypeScript declaration file for the Powerlines project, including any types provided by plugins.\n *\n * @param context - The environment context to use for generating the TypeScript declaration file\n * @returns A promise that resolves when the TypeScript declaration file has been generated\n */\n async #types(context: EnvironmentContext<TResolvedConfig>) {\n context.debug(\n `Preparing the TypeScript definitions for the Powerlines project.`\n );\n\n if (context.fs.existsSync(context.typesPath)) {\n await context.fs.remove(context.typesPath);\n }\n\n const typescriptPath = await resolvePackage(\"typescript\");\n if (!typescriptPath) {\n throw new Error(\n \"Could not resolve TypeScript package location. Please ensure TypeScript is installed.\"\n );\n }\n\n context.debug(\n \"Running TypeScript compiler for built-in runtime module files.\"\n );\n\n let { code, directives } = await emitBuiltinTypes(\n context,\n (await context.getBuiltins()).reduce<string[]>((ret, builtin) => {\n const formatted = replacePath(\n builtin.path,\n context.workspaceConfig.workspaceRoot\n );\n if (!ret.includes(formatted)) {\n ret.push(formatted);\n }\n\n return ret;\n }, [])\n );\n\n context.debug(\n `Generating TypeScript declaration file ${context.typesPath}.`\n );\n\n const merge = async (\n currentResult: string | TypesResult,\n previousResult: string | TypesResult\n ): Promise<string | TypesResult> => {\n if (\n !isSetString(currentResult) &&\n !isSetObject(currentResult) &&\n !isSetString(previousResult) &&\n !isSetObject(previousResult)\n ) {\n return { code, directives };\n }\n\n const previous = (\n await format(\n context,\n context.typesPath,\n isSetString(previousResult)\n ? previousResult\n : isSetObject(previousResult)\n ? previousResult.code\n : \"\"\n )\n )\n .trim()\n .replace(code, \"\")\n .trim();\n const current = (\n await format(\n context,\n context.typesPath,\n isSetString(currentResult)\n ? currentResult\n : isSetObject(currentResult)\n ? currentResult.code\n : \"\"\n )\n )\n .trim()\n .replace(previous, \"\")\n .trim()\n .replace(code, \"\")\n .trim();\n\n return {\n directives: [\n ...(isSetObject(currentResult) && currentResult.directives\n ? currentResult.directives\n : []),\n ...(isSetObject(previousResult) && previousResult.directives\n ? previousResult.directives\n : [])\n ],\n code: await format(\n context,\n context.typesPath,\n `${\n !previous.includes(getTypescriptFileHeader(context)) &&\n !current.includes(getTypescriptFileHeader(context))\n ? `${code}\\n`\n : \"\"\n }${previous}\\n${current}`.trim()\n )\n };\n };\n const asNextParam = (\n previousResult: string | TypesResult | null | undefined\n ) => (isObject(previousResult) ? previousResult.code : previousResult);\n\n let result = await this.callHook(\n \"types\",\n {\n environment: context,\n sequential: true,\n order: \"pre\",\n result: \"merge\",\n merge,\n asNextParam\n },\n code\n );\n if (result) {\n if (isSetObject(result)) {\n code = result.code;\n if (Array.isArray(result.directives) && result.directives.length > 0) {\n directives = getUnique([...directives, ...result.directives]).filter(\n Boolean\n );\n }\n } else if (isSetString(result)) {\n code = result;\n }\n }\n\n result = await this.callHook(\n \"types\",\n {\n environment: context,\n sequential: true,\n order: \"normal\",\n result: \"merge\",\n merge,\n asNextParam\n },\n code\n );\n if (result) {\n if (isSetObject(result)) {\n code = result.code;\n if (Array.isArray(result.directives) && result.directives.length > 0) {\n directives = getUnique([...directives, ...result.directives]).filter(\n Boolean\n );\n }\n } else if (isSetString(result)) {\n code = result;\n }\n }\n\n result = await this.callHook(\n \"types\",\n {\n environment: context,\n sequential: true,\n order: \"post\",\n result: \"merge\",\n merge,\n asNextParam\n },\n code\n );\n if (result) {\n if (isSetObject(result)) {\n code = result.code;\n if (Array.isArray(result.directives) && result.directives.length > 0) {\n directives = getUnique([...directives, ...result.directives]).filter(\n Boolean\n );\n }\n } else if (isSetString(result)) {\n code = result;\n }\n }\n\n if (isSetString(code?.trim()) || directives.length > 0) {\n await context.fs.write(\n context.typesPath,\n `${\n directives.length > 0\n ? `${directives.map(directive => `/// <reference types=\"${directive}\" />`).join(\"\\n\")}\n\n`\n : \"\"\n }${getTypescriptFileHeader(context, { directive: null, prettierIgnore: false })}\n\n${formatTypes(code)}\n`\n );\n }\n\n // else {\n // const dtsRelativePath = getTsconfigDtsPath(context);\n // if (\n // context.tsconfig.tsconfigJson.include &&\n // isIncludeMatchFound(\n // dtsRelativePath,\n // context.tsconfig.tsconfigJson.include\n // )\n // ) {\n // const normalizedDtsRelativePath = dtsRelativePath.startsWith(\"./\")\n // ? dtsRelativePath.slice(2)\n // : dtsRelativePath;\n // context.tsconfig.tsconfigJson.include =\n // context.tsconfig.tsconfigJson.include.filter(\n // includeValue =>\n // includeValue?.toString() !== normalizedDtsRelativePath\n // );\n\n // await context.fs.write(\n // context.tsconfig.tsconfigFilePath,\n // JSON.stringify(context.tsconfig.tsconfigJson, null, 2)\n // );\n // }\n // }\n\n // // Re-resolve the tsconfig to ensure it is up to date\n // context.tsconfig = getParsedTypeScriptConfig(\n // context.workspaceConfig.workspaceRoot,\n // context.config.root,\n // context.config.tsconfig\n // );\n // if (!context.tsconfig) {\n // throw new Error(\"Failed to parse the TypeScript configuration file.\");\n // }\n }\n}\n"],"mappings":"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"}