@powerlines/plugin-vite 0.14.58 โ†’ 0.14.59

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.
Files changed (130) hide show
  1. package/dist/_virtual/rolldown_runtime.cjs +1 -0
  2. package/dist/helpers/index.cjs +1 -1
  3. package/dist/helpers/index.d.cts +1 -3
  4. package/dist/helpers/index.d.mts +1 -3
  5. package/dist/helpers/index.mjs +1 -1
  6. package/dist/helpers/unplugin.cjs +1 -1
  7. package/dist/helpers/unplugin.d.cts +6 -2
  8. package/dist/helpers/unplugin.d.mts +6 -2
  9. package/dist/helpers/unplugin.mjs +1 -1
  10. package/dist/index.cjs +1 -14
  11. package/dist/index.d.cts +3 -4
  12. package/dist/index.d.mts +5 -5
  13. package/dist/index.mjs +1 -14
  14. package/dist/powerlines/schemas/fs.cjs +1 -0
  15. package/dist/powerlines/schemas/fs.mjs +1 -0
  16. package/dist/powerlines/src/api.cjs +11 -0
  17. package/dist/powerlines/src/api.mjs +1 -0
  18. package/dist/powerlines/src/internal/babel/module-resolver-plugin.cjs +1 -0
  19. package/dist/powerlines/src/internal/babel/module-resolver-plugin.mjs +1 -0
  20. package/dist/powerlines/src/internal/helpers/environment.cjs +1 -0
  21. package/dist/powerlines/src/internal/helpers/environment.mjs +1 -0
  22. package/dist/powerlines/src/internal/helpers/generate-types.cjs +8 -0
  23. package/dist/powerlines/src/internal/helpers/generate-types.mjs +8 -0
  24. package/dist/powerlines/src/internal/helpers/hooks.cjs +1 -0
  25. package/dist/powerlines/src/internal/helpers/hooks.mjs +1 -0
  26. package/dist/powerlines/src/internal/helpers/install-dependencies.cjs +3 -0
  27. package/dist/powerlines/src/internal/helpers/install-dependencies.mjs +3 -0
  28. package/dist/powerlines/src/internal/helpers/install.cjs +1 -0
  29. package/dist/powerlines/src/internal/helpers/install.mjs +1 -0
  30. package/dist/powerlines/src/internal/helpers/resolve-tsconfig.cjs +8 -0
  31. package/dist/powerlines/src/internal/helpers/resolve-tsconfig.mjs +8 -0
  32. package/dist/powerlines/src/internal/helpers/resolver.cjs +1 -0
  33. package/dist/powerlines/src/internal/helpers/resolver.mjs +1 -0
  34. package/dist/powerlines/src/lib/build/esbuild.cjs +14 -0
  35. package/dist/powerlines/src/lib/build/esbuild.mjs +14 -0
  36. package/dist/powerlines/src/lib/build/vite.cjs +1 -0
  37. package/dist/powerlines/src/lib/build/vite.mjs +1 -0
  38. package/dist/powerlines/src/lib/config-file.cjs +1 -0
  39. package/dist/powerlines/src/lib/config-file.mjs +1 -0
  40. package/dist/powerlines/src/lib/contexts/api-context.cjs +1 -0
  41. package/dist/powerlines/src/lib/contexts/api-context.mjs +1 -0
  42. package/dist/powerlines/src/lib/contexts/context.cjs +1 -0
  43. package/dist/powerlines/src/lib/contexts/context.mjs +1 -0
  44. package/dist/powerlines/src/lib/contexts/environment-context.cjs +1 -0
  45. package/dist/powerlines/src/lib/contexts/environment-context.mjs +1 -0
  46. package/dist/powerlines/src/lib/contexts/plugin-context.cjs +1 -0
  47. package/dist/powerlines/src/lib/contexts/plugin-context.mjs +1 -0
  48. package/dist/powerlines/src/lib/entry.cjs +1 -0
  49. package/dist/powerlines/src/lib/entry.mjs +1 -0
  50. package/dist/powerlines/src/lib/fs/helpers.cjs +1 -0
  51. package/dist/powerlines/src/lib/fs/helpers.mjs +1 -0
  52. package/dist/powerlines/src/lib/fs/storage/base.cjs +1 -0
  53. package/dist/powerlines/src/lib/fs/storage/base.mjs +1 -0
  54. package/dist/powerlines/src/lib/fs/storage/file-system.cjs +1 -0
  55. package/dist/powerlines/src/lib/fs/storage/file-system.mjs +1 -0
  56. package/dist/powerlines/src/lib/fs/storage/virtual.cjs +1 -0
  57. package/dist/powerlines/src/lib/fs/storage/virtual.mjs +1 -0
  58. package/dist/powerlines/src/lib/fs/vfs.cjs +1 -0
  59. package/dist/powerlines/src/lib/fs/vfs.mjs +1 -0
  60. package/dist/powerlines/src/lib/logger.cjs +1 -0
  61. package/dist/powerlines/src/lib/logger.mjs +1 -0
  62. package/dist/powerlines/src/lib/typescript/ts-morph.cjs +1 -0
  63. package/dist/powerlines/src/lib/typescript/ts-morph.mjs +1 -0
  64. package/dist/powerlines/src/lib/typescript/tsconfig.cjs +4 -0
  65. package/dist/powerlines/src/lib/typescript/tsconfig.mjs +4 -0
  66. package/dist/powerlines/src/lib/unplugin/factory.cjs +1 -0
  67. package/dist/powerlines/src/lib/unplugin/factory.mjs +1 -0
  68. package/dist/powerlines/src/lib/unplugin/helpers.cjs +1 -0
  69. package/dist/powerlines/src/lib/unplugin/helpers.mjs +1 -0
  70. package/dist/powerlines/src/lib/unplugin/index.cjs +1 -0
  71. package/dist/powerlines/src/lib/unplugin/index.mjs +1 -0
  72. package/dist/powerlines/src/lib/unplugin/plugin.cjs +6 -0
  73. package/dist/powerlines/src/lib/unplugin/plugin.mjs +6 -0
  74. package/dist/powerlines/src/lib/utilities/file-header.cjs +10 -0
  75. package/dist/powerlines/src/lib/utilities/file-header.mjs +10 -0
  76. package/dist/powerlines/src/lib/utilities/meta.cjs +1 -0
  77. package/dist/powerlines/src/lib/utilities/meta.mjs +1 -0
  78. package/dist/powerlines/src/lib/utilities/source-file.cjs +1 -0
  79. package/dist/powerlines/src/lib/utilities/source-file.mjs +1 -0
  80. package/dist/powerlines/src/plugin-utils/helpers.cjs +1 -0
  81. package/dist/powerlines/src/plugin-utils/helpers.mjs +1 -0
  82. package/dist/powerlines/src/plugin-utils/paths.cjs +1 -0
  83. package/dist/powerlines/src/plugin-utils/paths.mjs +1 -0
  84. package/dist/powerlines/src/types/babel.d.mts +4 -0
  85. package/dist/powerlines/src/types/build.d.cts +143 -0
  86. package/dist/powerlines/src/types/build.d.mts +143 -0
  87. package/dist/powerlines/src/types/commands.cjs +1 -0
  88. package/dist/powerlines/src/types/commands.d.cts +8 -0
  89. package/dist/powerlines/src/types/commands.d.mts +9 -0
  90. package/dist/powerlines/src/types/commands.mjs +1 -0
  91. package/dist/powerlines/src/types/config.d.cts +346 -0
  92. package/dist/powerlines/src/types/config.d.mts +348 -0
  93. package/dist/powerlines/src/types/context.d.cts +347 -0
  94. package/dist/powerlines/src/types/context.d.mts +349 -0
  95. package/dist/powerlines/src/types/fs.d.cts +458 -0
  96. package/dist/powerlines/src/types/fs.d.mts +458 -0
  97. package/dist/powerlines/src/types/hooks.d.mts +2 -0
  98. package/dist/powerlines/src/types/plugin.cjs +1 -0
  99. package/dist/powerlines/src/types/plugin.d.cts +232 -0
  100. package/dist/powerlines/src/types/plugin.d.mts +232 -0
  101. package/dist/powerlines/src/types/plugin.mjs +1 -0
  102. package/dist/powerlines/src/types/resolved.d.cts +82 -0
  103. package/dist/powerlines/src/types/resolved.d.mts +82 -0
  104. package/dist/powerlines/src/types/tsconfig.d.cts +69 -0
  105. package/dist/powerlines/src/types/tsconfig.d.mts +69 -0
  106. package/dist/types/index.cjs +0 -1
  107. package/dist/types/index.d.cts +1 -2
  108. package/dist/types/index.d.mts +1 -2
  109. package/dist/types/index.mjs +1 -1
  110. package/dist/types/plugin.cjs +0 -1
  111. package/dist/types/plugin.d.cts +19 -1
  112. package/dist/types/plugin.d.mts +19 -1
  113. package/dist/types/plugin.mjs +1 -1
  114. package/package.json +10 -10
  115. package/dist/helpers-CRPRhztf.mjs +0 -1
  116. package/dist/helpers-LF26RHol.cjs +0 -0
  117. package/dist/index-9iG2qHLe.d.mts +0 -1
  118. package/dist/index-D4ELpJXS.d.cts +0 -1
  119. package/dist/index-D6CnpA_r.d.cts +0 -1
  120. package/dist/index-DL0uimUT.d.mts +0 -1
  121. package/dist/plugin-BjiGfRHE.mjs +0 -1
  122. package/dist/plugin-Bu9f0Vo1.d.mts +0 -1658
  123. package/dist/plugin-CeaU7BaT.d.cts +0 -1655
  124. package/dist/plugin-pBKbb5K9.cjs +0 -0
  125. package/dist/types-n6NgD0QK.mjs +0 -1
  126. package/dist/types-o3zWarRp.cjs +0 -0
  127. package/dist/unplugin-CQUvJGvc.d.mts +0 -7
  128. package/dist/unplugin-DD1hF9r3.mjs +0 -6
  129. package/dist/unplugin-DVT_2a_R.cjs +0 -44
  130. package/dist/unplugin-DtFSdCAn.d.cts +0 -7
File without changes
@@ -1 +0,0 @@
1
- export{};
File without changes
@@ -1,7 +0,0 @@
1
- import { t as VitePluginContext } from "./plugin-Bu9f0Vo1.mjs";
2
- import * as vite0 from "vite";
3
-
4
- //#region src/helpers/unplugin.d.ts
5
- declare function createVitePlugin(context: VitePluginContext): vite0.Plugin<any> | vite0.Plugin<any>[];
6
- //#endregion
7
- export { createVitePlugin as t };
@@ -1,6 +0,0 @@
1
- import{LogLevelLabel as e}from"@storm-software/config-tools/types";import{doesPackageMatch as t,getPackageListing as n,isPackageExists as r,isPackageListed as i}from"@stryke/fs/package-fns";import{joinPaths as a}from"@stryke/path/join-paths";import o,{createDefu as s,defu as c}from"defu";import{omit as ee}from"@stryke/helpers/omit";import{replaceExtension as l,replacePath as te}from"@stryke/path/replace";import{isString as u}from"@stryke/type-checks/is-string";import{parseTypeDefinition as ne}from"@stryke/convert/parse-type-definition";import{toArray as re}from"@stryke/convert/to-array";import{isDirectory as d,isFile as f}from"@stryke/fs/is-file";import{listFiles as ie,listFilesSync as ae}from"@stryke/fs/list-files";import{murmurhash as oe}from"@stryke/hash/murmurhash";import{getUnique as se,getUniqueBy as ce}from"@stryke/helpers/get-unique";import{appendPath as le}from"@stryke/path/append";import{isSetString as p}from"@stryke/type-checks/is-set-string";import{relativeToWorkspaceRoot as ue}from"@stryke/fs/get-workspace-root";import{createVitePlugin as m,setParseImpl as h}from"unplugin";import{transformAsync as de}from"@babel/core";import{formatLogMessage as fe}from"@storm-software/config-tools/logger/console";import{createDirectory as pe,createDirectorySync as me}from"@stryke/fs/helpers";import{install as he}from"@stryke/fs/install";import{getResolutionCombinations as ge,resolve as _e,resolvePackage as ve,resolveSync as ye}from"@stryke/fs/resolve";import{isError as be}from"@stryke/type-checks/is-error";import{isFunction as g}from"@stryke/type-checks/is-function";import{isNumber as xe}from"@stryke/type-checks/is-number";import{isObject as Se}from"@stryke/type-checks/is-object";import{isPromiseLike as Ce}from"@stryke/type-checks/is-promise";import{isSet as we}from"@stryke/type-checks/is-set";import{isSetObject as _}from"@stryke/type-checks/is-set-object";import v from"chalk";import y from"handlebars";import{declare as b}from"@babel/helper-plugin-utils";import*as x from"@babel/types";import S,{flattenDiagnosticMessageText as C}from"typescript";import{InMemoryFileSystemHost as w,Project as T}from"ts-morph";import{getPackageName as E,getPackageVersion as D,hasPackageVersion as O}from"@stryke/string-format/package";import{getObjectDiff as k}from"@donedeal0/superdiff";import{readJsonFile as Te,readJsonFileSync as Ee}from"@stryke/fs/json";import{StormJSON as De}from"@stryke/json/storm-json";import{findFileDotExtensionSafe as Oe,findFileName as A,findFilePath as ke,hasFileExtension as Ae,relativePath as je}from"@stryke/path/file-path-fns";import{titleCase as j}from"@stryke/string-format/title-case";import{exists as Me,existsSync as Ne}from"@stryke/fs/exists";import{getWorkspaceConfig as Pe}from"@storm-software/config-tools/get-config";import{loadConfig as Fe}from"c12";import{getEnvPaths as Ie}from"@stryke/env/get-env-paths";import{hashDirectory as Le}from"@stryke/hash/hash-files";import{fetchRequest as Re}from"@stryke/http/fetch";import{isAbsolute as ze,isAbsolutePath as Be}from"@stryke/path/is-type";import{joinPaths as Ve}from"@stryke/path/join";import{isNull as He}from"@stryke/type-checks/is-null";import{uuid as Ue}from"@stryke/unique-id/uuid";import{match as We,tsconfigPathsToRegExp as Ge}from"bundle-require";import{create as Ke}from"flat-cache";import{parse as qe}from"oxc-parser";import{Agent as M,Response as Je,interceptors as N,setGlobalDispatcher as P}from"undici";import{createJiti as Ye}from"jiti";import{isUndefined as F}from"@stryke/type-checks/is-undefined";import*as I from"@stryke/capnp";import{readFileBuffer as Xe,readFileBufferSync as Ze,writeFileBuffer as Qe}from"@stryke/fs/buffer";import{isParentPath as $e}from"@stryke/path/is-parent-path";import{prettyBytes as et}from"@stryke/string-format/pretty-bytes";import{Blob as tt}from"node:buffer";import{fileURLToPath as nt}from"node:url";import{format as rt,resolveConfig as it}from"prettier";import{getLogFn as at,getLogLevel as ot}from"@storm-software/config-tools/logger";import{getColor as st}from"@storm-software/config-tools/utilities/colors";import{noop as ct}from"@stryke/helpers/noop";import{correctPath as lt}from"@stryke/path/correct-path";import{slash as ut}from"@stryke/path/slash";import{readFile as dt,readFileSync as ft}from"@stryke/fs/read-file";import{writeFile as pt,writeFileSync as mt}from"@stryke/fs/write-file";import{unlinkSync as ht}from"node:fs";import{unlink as gt}from"node:fs/promises";import{resolve as _t}from"node:path";import"@stryke/fs/remove-file";import{kebabCase as L}from"@stryke/string-format/kebab-case";import"magic-string";s((e,t,n)=>u(e[t])&&u(n)?(e[t]=`${e[t]||``}\n${n||``}`.trim(),!0):!1);const R=[`new`,`clean`,`prepare`,`lint`,`test`,`build`,`docs`,`deploy`,`finalize`];function z(e){return _(e)&&`name`in e&&p(e.name)&&(F(e.applyToEnvironment)||`applyToEnvironment`in e&&g(e.applyToEnvironment))&&(F(e.dedupe)||`dedupe`in e&&g(e.dedupe))&&(F(e.dependsOn)||`dependsOn`in e&&Array.isArray(e.dependsOn)&&e.dependsOn.every(H))&&R.every(t=>F(e[t])||t in e&&(g(e[t])||_(e[t])&&`handler`in e[t]&&g(e[t].handler)))}function B(e){return _(e)&&`plugin`in e&&((p(e.plugin)||g(e.plugin))&&`options`in e&&_(e.options)||z(e.plugin))}function V(e){return Array.isArray(e)&&(e.length===1||e.length===2)&&((p(e[0])||g(e[0]))&&e.length>1&&_(e[1])||z(e[0]))}function H(e){return p(e)||g(e)||z(e)||B(e)||V(e)}var U=class extends I.Struct{static _capnp={displayName:`KeyValuePair`,id:`eabb26cf58b2a14c`,size:new I.ObjectSize(0,2)};get key(){return I.utils.getText(0,this)}set key(e){I.utils.setText(0,e,this)}get value(){return I.utils.getText(1,this)}set value(e){I.utils.setText(1,e,this)}toString(){return`FileMetadata_KeyValuePair_`+super.toString()}},W=class e extends I.Struct{static KeyValuePair=U;static _capnp={displayName:`FileMetadata`,id:`8e2cab5d7e28c7b3`,size:new I.ObjectSize(8,3),defaultType:`normal`};static _Properties;get id(){return I.utils.getText(0,this)}set id(e){I.utils.setText(0,e,this)}get type(){return I.utils.getText(1,this,e._capnp.defaultType)}set type(e){I.utils.setText(1,e,this)}get timestamp(){return I.utils.getUint32(0,this)}set timestamp(e){I.utils.setUint32(0,e,this)}_adoptProperties(e){I.utils.adopt(e,I.utils.getPointer(2,this))}_disownProperties(){return I.utils.disown(this.properties)}get properties(){return I.utils.getList(2,e._Properties,this)}_hasProperties(){return!I.utils.isNull(I.utils.getPointer(2,this))}_initProperties(t){return I.utils.initList(2,e._Properties,t,this)}set properties(e){I.utils.copyFrom(e,I.utils.getPointer(2,this))}toString(){return`FileMetadata_`+super.toString()}},G=class extends I.Struct{static _capnp={displayName:`FileId`,id:`990d6a471072f997`,size:new I.ObjectSize(0,2)};get id(){return I.utils.getText(0,this)}set id(e){I.utils.setText(0,e,this)}get path(){return I.utils.getText(1,this)}set path(e){I.utils.setText(1,e,this)}toString(){return`FileId_`+super.toString()}},K=class extends I.Struct{static _capnp={displayName:`FileStorage`,id:`9dca66ac858c9ebe`,size:new I.ObjectSize(0,2)};get path(){return I.utils.getText(0,this)}set path(e){I.utils.setText(0,e,this)}get code(){return I.utils.getText(1,this)}set code(e){I.utils.setText(1,e,this)}toString(){return`FileStorage_`+super.toString()}},q=class e extends I.Struct{static _capnp={displayName:`FileSystem`,id:`ae0c23d43e56abcf`,size:new I.ObjectSize(0,3)};static _Ids;static _Storage;static _Metadata;_adoptIds(e){I.utils.adopt(e,I.utils.getPointer(0,this))}_disownIds(){return I.utils.disown(this.ids)}get ids(){return I.utils.getList(0,e._Ids,this)}_hasIds(){return!I.utils.isNull(I.utils.getPointer(0,this))}_initIds(t){return I.utils.initList(0,e._Ids,t,this)}set ids(e){I.utils.copyFrom(e,I.utils.getPointer(0,this))}_adoptStorage(e){I.utils.adopt(e,I.utils.getPointer(1,this))}_disownStorage(){return I.utils.disown(this.storage)}get storage(){return I.utils.getList(1,e._Storage,this)}_hasStorage(){return!I.utils.isNull(I.utils.getPointer(1,this))}_initStorage(t){return I.utils.initList(1,e._Storage,t,this)}set storage(e){I.utils.copyFrom(e,I.utils.getPointer(1,this))}_adoptMetadata(e){I.utils.adopt(e,I.utils.getPointer(2,this))}_disownMetadata(){return I.utils.disown(this.metadata)}get metadata(){return I.utils.getList(2,e._Metadata,this)}_hasMetadata(){return!I.utils.isNull(I.utils.getPointer(2,this))}_initMetadata(t){return I.utils.initList(2,e._Metadata,t,this)}set metadata(e){I.utils.copyFrom(e,I.utils.getPointer(2,this))}toString(){return`FileSystem_`+super.toString()}};W._Properties=I.CompositeList(U),q._Ids=I.CompositeList(G),q._Storage=I.CompositeList(K),q._Metadata=I.CompositeList(W);const J=[`#00A0DD`,`#6FCE4E`,`#FBBF24`,`#F43F5E`,`#3B82F6`,`#A855F7`,`#469592`,`#288EDF`,`#10B981`,`#EF4444`,`#F0EC56`,`#F472B6`,`#22D3EE`,`#EAB308`,`#84CC16`,`#F87171`,`#0EA5E9`,`#D946EF`,`#FACC15`,`#34D399`],Y=(e,t)=>(n,...r)=>e(n,` ${v.inverse.hex(J[t.split(``).map(e=>e.charCodeAt(0)).reduce((e,t)=>e+t,0)%J.length]||J[0])(` ${j(t)} `)} ${r.join(` `)} `);Symbol.asyncDispose,Symbol.asyncDispose,P(new M({keepAliveTimeout:1e4}).compose(N.retry({maxRetries:3,minTimeout:1e3,maxTimeout:1e4,timeoutFactor:2,retryAfter:!0}))),Symbol.asyncDispose;function X(e){return e?u(e)?e:_(e)&&`code`in e?e.code:e.toString():``}function Z(e,t){return c(e,t)}function Q(t){let n=t;return h(n.parse),()=>{let t=Y(n.log,`unplugin`);t(e.DEBUG,`Initializing Unplugin`);try{async function r(){t(e.DEBUG,`Powerlines build plugin starting...`),await n.$$internal.callHook(`buildStart`,{sequential:!0})}async function i(e,t,r={isEntry:!1}){let i=await(async()=>{let i=await n.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`pre`},e,t,r);return i||(i=await n.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`normal`},e,t,r),i)||(i=await n.resolve(e,t,r),i)?i:n.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`post`},e,t,r)})();if(i&&r.isEntry&&n.config.build.polyfill&&n.config.build.polyfill.length>0){let e=n.entry.find(e=>e.file===(u(i)?i:i.id));if(e)return e.file=`${l(u(i)?i:i.id)}-polyfill.ts`,e.output||=e.output?.replace(A(e.output,{withExtension:!0}),e.file),await n.emitEntry(`
2
- ${n.config.build.polyfill.map(e=>`import "${e}";`).join(`
3
- `)}
4
-
5
- export * from "${u(i)?i:i.id}";
6
- `,e.file),e.file}return i}async function a(e){let t=await n.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`pre`},e);return t||(t=await n.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`normal`},e),t)||(t=await n.load(e),t)?t:n.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`post`},e)}async function o(e,t){let r=e;for(let e of n.$$internal.environment.selectHooks(`transform`)){let i=await e.handle.apply(Z(n,this),[X(r),t]);i&&(r=i)}return r}async function s(){return t(e.DEBUG,`Powerlines build plugin finishing...`),n.$$internal.callHook(`buildEnd`,{sequential:!0})}async function c(){return t(e.DEBUG,`Finalizing Powerlines project output...`),n.$$internal.callHook(`writeBundle`,{sequential:!0})}return{name:`powerlines`,api:n.$$internal.api,resolveId:{filter:{id:{include:[/.*/]}},handler:i},load:{filter:{id:{include:[/.*/]}},handler:a},transform:o,buildStart:r,buildEnd:s,writeBundle:c,vite:{sharedDuringBuild:!0}}}catch(n){throw t(e.FATAL,n?.message),n}}}function $(e){return m(Q(e))({})}export{$ as t};
@@ -1,44 +0,0 @@
1
- var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},s=(n,r,a)=>(a=n==null?{}:e(i(n)),o(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));let c=require(`@storm-software/config-tools/types`),l=require(`@stryke/fs/package-fns`),u=require(`@stryke/path/join-paths`),d=require(`defu`);d=s(d);let ee=require(`@stryke/helpers/omit`),f=require(`@stryke/path/replace`),p=require(`@stryke/type-checks/is-string`),te=require(`@stryke/convert/parse-type-definition`),m=require(`@stryke/convert/to-array`),h=require(`@stryke/fs/is-file`),g=require(`@stryke/fs/list-files`),_=require(`@stryke/hash/murmurhash`),v=require(`@stryke/helpers/get-unique`),y=require(`@stryke/path/append`),b=require(`@stryke/type-checks/is-set-string`),ne=require(`@stryke/fs/get-workspace-root`),re=require(`unplugin`),ie=require(`@babel/core`),ae=require(`@storm-software/config-tools/logger/console`),x=require(`@stryke/fs/helpers`),oe=require(`@stryke/fs/install`),S=require(`@stryke/fs/resolve`),se=require(`@stryke/type-checks/is-error`),C=require(`@stryke/type-checks/is-function`),ce=require(`@stryke/type-checks/is-number`),le=require(`@stryke/type-checks/is-object`),ue=require(`@stryke/type-checks/is-promise`),de=require(`@stryke/type-checks/is-set`),w=require(`@stryke/type-checks/is-set-object`),T=require(`chalk`);T=s(T);let E=require(`handlebars`);E=s(E);let fe=require(`@babel/helper-plugin-utils`),D=require(`@babel/types`);D=s(D);let O=require(`typescript`);O=s(O);let pe=require(`ts-morph`),k=require(`@stryke/string-format/package`),me=require(`@donedeal0/superdiff`),A=require(`@stryke/fs/json`),j=require(`@stryke/json/storm-json`),M=require(`@stryke/path/file-path-fns`),N=require(`@stryke/string-format/title-case`),P=require(`@stryke/fs/exists`),he=require(`@storm-software/config-tools/get-config`),ge=require(`c12`),_e=require(`@stryke/env/get-env-paths`),ve=require(`@stryke/hash/hash-files`),ye=require(`@stryke/http/fetch`),F=require(`@stryke/path/is-type`),I=require(`@stryke/path/join`),be=require(`@stryke/type-checks/is-null`),xe=require(`@stryke/unique-id/uuid`),L=require(`bundle-require`),Se=require(`flat-cache`),Ce=require(`oxc-parser`),R=require(`undici`),we=require(`jiti`),z=require(`@stryke/type-checks/is-undefined`),B=require(`@stryke/capnp`);B=s(B);let Te=require(`@stryke/fs/buffer`),V=require(`@stryke/path/is-parent-path`),Ee=require(`@stryke/string-format/pretty-bytes`),De=require(`node:buffer`),H=require(`node:url`),Oe=require(`prettier`),ke=require(`@storm-software/config-tools/logger`),Ae=require(`@storm-software/config-tools/utilities/colors`),je=require(`@stryke/helpers/noop`),Me=require(`@stryke/path/correct-path`),Ne=require(`@stryke/path/slash`),Pe=require(`@stryke/fs/read-file`),Fe=require(`@stryke/fs/write-file`),Ie=require(`node:fs`),Le=require(`node:fs/promises`),Re=require(`node:path`);require(`@stryke/fs/remove-file`);let ze=require(`@stryke/string-format/kebab-case`);require(`magic-string`);function U(e,t){return t&&t.replaceAll(`{workspaceRoot}`,e.workspaceConfig.workspaceRoot).replaceAll(`{root}`,e.config.projectRoot).replaceAll(`{projectRoot}`,e.config.projectRoot).replaceAll(`{sourceRoot}`,e.config.sourceRoot).replaceAll(`{powerlinesPath}`,e.powerlinesPath).replaceAll(`{cachePath}`,e.cachePath).replaceAll(`{dataPath}`,e.dataPath).replaceAll(`{logPath}`,e.envPaths.log).replaceAll(`{tempPath}`,e.envPaths.temp).replaceAll(`{configPath}`,e.envPaths.config).replaceAll(`{outputPath}`,e.config.output.outputPath).replaceAll(`{buildPath}`,e.config.output.buildPath).replaceAll(`{artifactsPath}`,(0,f.replacePath)(e.artifactsPath,e.workspaceConfig.workspaceRoot)).replaceAll(`{builtinPath}`,(0,f.replacePath)(e.builtinsPath,e.workspaceConfig.workspaceRoot)).replaceAll(`{entryPath}`,(0,f.replacePath)(e.entryPath,e.workspaceConfig.workspaceRoot))}function Be(e,t){return(0,f.replacePath)(t.file,(0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.projectRoot))}function Ve(e,t){return{file:Be(e,t),name:t.name}}function He(e,t){return(0,f.replaceExtension)((0,f.replacePath)((0,f.replacePath)((0,f.replacePath)((0,f.replacePath)((0,f.replacePath)(t.file,(0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.sourceRoot)),(0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.projectRoot)),e.config.sourceRoot),e.config.projectRoot),(0,f.replacePath)(e.config.sourceRoot,e.config.projectRoot)))}function Ue(e,t){let n=Ve(e,t);return{...n,input:n,output:He(e,t)}}function We(e,t){return t.map(t=>(0,p.isString)(t)?U(e,t):U(e,t.file)).map(t=>{let n=(0,te.parseTypeDefinition)(t),r=(0,y.appendPath)(n.file,e.config.projectRoot);return(0,h.isFile)(r)?Ue(e,{file:(0,f.replacePath)(r,e.config.projectRoot),name:n.name}):(0,g.listFilesSync)(r).map(t=>Ue(e,{file:t,name:n.name}))}).flat().filter(Boolean)}function Ge(e=[]){return(0,v.getUniqueBy)((0,m.toArray)(e),e=>(0,b.isSetString)(e)?e:(0,_.murmurhash)(e??{},{maxLength:24}))}function Ke(e,t){if(!D.isStringLiteral(e.node))return;let n=e.node.value,r=t.context?.fs.resolveSync(n);r&&e.replaceWith(D.stringLiteral(r.replace(/\.(?:ts|mts|cts)x?$/,``)))}const qe=[`require`,`require.resolve`,`System.import`,`jest.genMockFromModule`,`jest.mock`,`jest.unmock`,`jest.doMock`,`jest.dontMock`,`jest.setMock`,`jest.requireActual`,`jest.requireMock`,`require.requireActual`,`require.requireMock`];function Je(e,t,n){let{node:r}=t;if(D.isMemberExpression(r))return t.matchesPattern(n);if(!D.isIdentifier(r)||n.includes(`.`))return!1;let i=n.split(`.`)[0];return r.name===i}const Ye={CallExpression:(e,t)=>{if(t.moduleResolverVisited.has(e))return;let n=e.get(`callee`);(n&&qe.some(e=>Je(t,n,e))||D.isImport(e.node.callee))&&(t.moduleResolverVisited.add(e),Ke(e.get(`arguments.0`),t))},"ImportDeclaration|ExportDeclaration|ExportAllDeclaration":(e,t)=>{!e||!e.get(`source`)||t.moduleResolverVisited.has(e)||(t.moduleResolverVisited.add(e),Ke(e.get(`source`),t))}},Xe=e=>(0,fe.declare)(function(t){let n=new Set;return{name:`powerlines:module-resolver`,manipulateOptions(e){e.filename??=`unknown`},pre(){n=new Set},visitor:{Program:{enter(r,i){r.traverse(Ye,{...i,context:e,moduleResolverVisited:n,api:t})},exit(r,i){r.traverse(Ye,{...i,context:e,moduleResolverVisited:n,api:t})}}},post(){n.clear()}}});var Ze=class extends pe.InMemoryFileSystemHost{#e;constructor(e){super(),this.#e=e}deleteSync(e){this.#e.fs.removeSync(e)}readDirSync(e){return this.#e.fs.isDirectorySync(e)?this.#e.fs.listSync(e).reduce((e,t)=>{let n=this.#e.fs.resolveSync(t);return n&&e.push({name:t,isDirectory:this.#e.fs.isDirectorySync(n),isFile:this.#e.fs.isFileSync(n),isSymlink:!1}),e},[]):[]}async readFile(e){return this.#e.fs.isFileSync(e)?await this.#e.fs.read(e):``}readFileSync(e){return this.#e.fs.isFileSync(e)?this.#e.fs.readSync(e):``}async writeFile(e,t){return this.#e.fs.write(e,t)}writeFileSync(e,t){this.#e.fs.writeSync(e,t)}async mkdir(e){await this.#e.fs.mkdir(e)}mkdirSync(e){this.#e.fs.mkdirSync(e)}async move(e,t){await this.#e.fs.move(e,t)}moveSync(e,t){this.#e.fs.moveSync(e,t)}async copy(e,t){await this.#e.fs.copy(e,t)}copySync(e,t){this.#e.fs.copySync(e,t)}async fileExists(e){return this.#e.fs.isFile(e)}fileExistsSync(e){return this.#e.fs.isFileSync(e)}async directoryExists(e){return this.#e.fs.isDirectory(e)}directoryExistsSync(e){return this.#e.fs.isDirectorySync(e)}realpathSync(e){return this.#e.fs.resolveSync(e)||e}getCurrentDirectory(){return this.#e.workspaceConfig.workspaceRoot}async glob(e){return this.#e.fs.glob(e)}globSync(e){return this.#e.fs.globSync(e)}};function Qe(e,t){return e.log(c.LogLevelLabel.TRACE,`Creating ts-morph Project instance with configuration from: ${e.tsconfig.tsconfigFilePath}.`),new pe.Project((0,d.default)(t??{},{skipAddingFilesFromTsConfig:!1,tsConfigFilePath:e.tsconfig.tsconfigFilePath,fileSystem:new Ze(e),compilerOptions:(0,d.default)(e.tsconfig.options??{},{lib:[`lib.esnext.full.d.ts`]})}))}function $e(e){return e.replace(/import\s*(?:type\s*)?\{?[\w,\s]*(?:\}\s*)?from\s*(?:'|")@?[a-zA-Z0-9-\\/.]*(?:'|");?/g,``).replaceAll(`#private;`,``).replace(/__ฮฉ/g,``)}async function et(e,t){e.log(c.LogLevelLabel.TRACE,`Running the TypeScript compiler for ${t.length} generated runtime files.`);let n=Qe(e,{skipAddingFilesFromTsConfig:!0});n.addSourceFilesAtPaths(t);let r=n.emitToMemory({emitOnlyDtsFiles:!0}),i=``;for(let t of r.getFiles())if(!t.filePath.endsWith(`.map`)&&e.builtins.some(n=>n===t.filePath||e.fs.metadata[n]?.id&&e.fs.metadata[n]?.id===t.filePath)){let n=await e.fs.resolve(t.filePath);i+=`
2
- declare module "${n}" {
3
- ${t.text.trim().replace(/^\s*export\s*declare\s*/gm,`export `).replace(/^\s*declare\s*/gm,``)}
4
- }
5
- `}let a=[];r.getDiagnostics().forEach(e=>{e.getSourceFile()?.getBaseName()?a.push(`${e.getSourceFile()?.getBaseName()} (${(e.getLineNumber()??0)+1}): ${(0,O.flattenDiagnosticMessageText)(e.getMessageText().toString(),`
6
- `)}`):a.push((0,O.flattenDiagnosticMessageText)(e.getMessageText().toString(),`
7
- `))});let o=a.join(`
8
- `);if(o)throw Error(`TypeScript compilation failed: \n\n${o.length>5e3?`${o.slice(0,5e3)}...`:o}`);return $e(i)}const tt=(0,d.createDefu)((e,t,n)=>(0,p.isString)(e[t])&&(0,p.isString)(n)?(e[t]=`${e[t]||``}\n${n||``}`.trim(),!0):!1);async function nt(e,t,n,...r){let i=e.selectHooks(t,n);if(i.length>0){e.log(c.LogLevelLabel.DEBUG,` ๐Ÿงฉ Calling plugin hook: ${T.default.bold.cyanBright(`${t}${n?.order?` (${n.order})`:``}`)}`);let a=[];if(n?.sequential===!1)a=await Promise.all(i.map(async e=>{if(!(0,C.isFunction)(e.handle))throw Error(`Plugin hook handler for hook "${t}" is not a function.`);return Promise.resolve(e.handle.apply(e.context,[...r]))}));else for(let e of i){if(!(0,C.isFunction)(e.handle))throw Error(`Plugin hook handler for hook "${t}" is not a function.`);if(n?.result===`first`||n?.asNextParam===!1){if(a.push(await Promise.resolve(e.handle.apply(e.context,[...r]))),n?.result===`first`&&(0,de.isSet)(a[a.length-1]))break}else{let t=[...r];a.length>0&&t.length>0&&(t[0]=(0,C.isFunction)(n.asNextParam)?await Promise.resolve(n.asNextParam(a[0])):a[0]);let i=await Promise.resolve(e.handle.apply(e.context,[...t]));i&&(n?.result===`last`?a=[i]:(0,p.isString)(i)?a=[`${(0,p.isString)(a[0])&&a[0]||``}\n${i||``}`.trim()]:(0,le.isObject)(i)&&(a=[tt(i,a[0]??{})]))}}let o=a.filter(e=>(0,de.isSet)(e));if(o.length>0){let e;for(let t of o)e=(0,d.defu)(t,e??{});return e}}}async function rt(e,t,n=!1){if(await(0,l.isPackageListed)((0,k.getPackageName)(t),{cwd:e.config.projectRoot})){if((0,k.hasPackageVersion)(t)&&!process.env.POWERLINES_SKIP_VERSION_CHECK&&!await(0,l.doesPackageMatch)((0,k.getPackageName)(t),(0,k.getPackageVersion)(t),e.config.projectRoot)){let n=await(0,l.getPackageListing)((0,k.getPackageName)(t),{cwd:e.config.projectRoot});!n?.version.startsWith(`catalog:`)&&!n?.version.startsWith(`workspace:`)&&e.log(c.LogLevelLabel.WARN,`The package "${(0,k.getPackageName)(t)}" is installed but does not match the expected version ${(0,k.getPackageVersion)(t)} (installed version: ${n?.version||`<Unknown>`}). Please ensure this is intentional before proceeding. Note: You can skip this validation with the "STORM_STACK_SKIP_VERSION_CHECK" environment variable.`)}}else if(e.config.skipInstalls!==!0){e.log(c.LogLevelLabel.WARN,`The package "${t}" is not installed. It will be installed automatically.`);let r=await(0,oe.install)(t,{cwd:e.config.projectRoot,dev:n});if((0,ce.isNumber)(r.exitCode)&&r.exitCode>0)throw e.log(c.LogLevelLabel.ERROR,r.stderr),Error(`An error occurred while installing the package "${t}"`)}else e.log(c.LogLevelLabel.WARN,`The package "${t}" is not installed. Since the "skipInstalls" option is set to true, it will not be installed automatically.`)}async function it(e){if(e.log(c.LogLevelLabel.TRACE,`Checking and installing missing project dependencies.`),e.dependencies??={},e.devDependencies??={},Object.keys(e.dependencies).length===0&&Object.keys(e.devDependencies).length===0){e.log(c.LogLevelLabel.TRACE,`No dependencies or devDependencies to install. Skipping installation step.`);return}e.log(c.LogLevelLabel.DEBUG,`The following packages are required: \nDependencies: \n${Object.entries(e.dependencies).map(([e,t])=>`- ${e}@${String(t)}`).join(`
9
- `)}\n\nDevDependencies: \n${Object.entries(e.devDependencies).map(([e,t])=>`- ${e}@${String(t)}`).join(`
10
- `)}`),await Promise.all([Promise.all(Object.entries(e.dependencies).map(async([t,n])=>rt(e,`${(0,k.getPackageName)(t)}@${String(n)}`,!1))),Promise.all(Object.entries(e.devDependencies).map(async([t,n])=>rt(e,`${(0,k.getPackageName)(t)}@${String(n)}`,!0)))])}function W(e,t,n){let r;if(n?r=G(e,t,n):(r=G(e,t,`tsconfig.app.json`),r||(r=G(e,t,`tsconfig.lib.json`),r||=G(e,t,`tsconfig.json`))),!r)throw Error(`Cannot find the \`tsconfig.json\` configuration file for the project at ${t}.`);return r}function G(e,t,n){let r=n;if(!(!(0,P.existsSync)(r)&&(r=(0,y.appendPath)(n,t),!(0,P.existsSync)(r)&&(r=(0,y.appendPath)(n,(0,y.appendPath)(t,e)),!(0,P.existsSync)(r)))))return r}function at(e,t,n=[`.ts`,`.tsx`,`.d.ts`]){return t.find(t=>e?.toString().toLowerCase()===t?.toString().toLowerCase()||e?.toString().toLowerCase()===`./${t?.toString().toLowerCase()}`||`./${e?.toString().toLowerCase()}`===t?.toString().toLowerCase()||n.some(n=>`${e?.toString().toLowerCase()}${n}`===t?.toString().toLowerCase()||`${e?.toString().toLowerCase()}${n}`==`./${t?.toString().toLowerCase()}`||`${t?.toString().toLowerCase()}${n}`==`./${e?.toString().toLowerCase()}`||e?.toString().toLowerCase()===`${t?.toString().toLowerCase()}${n}`||e?.toString().toLowerCase()===`./${t?.toString().toLowerCase()}${n}`||t?.toString().toLowerCase()===`./${e?.toString().toLowerCase()}${n}`))}function ot(e,t){return at(e,t,`.ts,.tsx,.d.ts,.js,.jsx,.mjs,.cjs,.mts,.cts,/*.ts,/*.tsx,/*.d.ts,/*.js,/*.jsx,/*.mjs,/*.cjs,/*.mts,/*.cts,/**/*.ts,/**/*.tsx,/**/*.d.ts,/**/*.js,/**/*.jsx,/**/*.mjs,/**/*.cjs,/**/*.mts,/**/*.cts`.split(`,`))}function st(e,t){return ot(e,t)!==void 0}function K(e,t,n,r={},i,a=O.default.sys){let o=W(e,t,n),s=(0,A.readJsonFileSync)(o);if(!s)throw Error(`Cannot find the \`tsconfig.json\` configuration file at ${(0,u.joinPaths)(t,n??`tsconfig.json`)}`);let c=O.default.parseJsonConfigFileContent((0,d.default)(r??{},s),a,(0,y.appendPath)(t,e));if(c.errors.length>0){let e=`Cannot parse the TypeScript compiler options. Please investigate the following issues:
11
- ${c.errors.map(e=>`- ${(e.category!==void 0&&e.code?`[${e.category}-${e.code}]: `:``)+e.messageText.toString()}`).join(`
12
- `)}
13
- `;throw Error(e)}return{...c,originalTsconfigJson:i??s,tsconfigJson:s,tsconfigFilePath:o}}function ct(e){return(0,u.joinPaths)((0,M.relativePath)((0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.projectRoot),(0,M.findFilePath)(e.dtsPath)),(0,M.findFileName)(e.dtsPath))}async function lt(e){let t=K(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig,e.config.tsconfigRaw),n=await(0,A.readJsonFile)(W(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig));if(n.compilerOptions??={},e.config.output.dts!==!1){let t=ct(e);n.include?.some(n=>st(n,[e.dtsPath,t]))||(n.include??=[],n.include.push(t.startsWith(`./`)?t.slice(2):t))}return t.options.lib?.some(e=>[`lib.esnext.d.ts`,`lib.es2021.d.ts`,`lib.es2022.d.ts`,`lib.es2023.d.ts`].includes(e.toLowerCase()))||(n.compilerOptions.lib??=[],n.compilerOptions.lib.push(`esnext`)),t.options.esModuleInterop!==!0&&(n.compilerOptions.esModuleInterop=!0),t.options.isolatedModules!==!0&&(n.compilerOptions.isolatedModules=!0),e.config.build.platform===`node`&&(t.options.types?.some(e=>e.toLowerCase()===`node`||e.toLowerCase()===`@types/node`)||(n.compilerOptions.types??=[],n.compilerOptions.types.push(`node`))),n}async function ut(e){if(e.log(c.LogLevelLabel.TRACE,`Initializing TypeScript configuration (tsconfig.json) for the Powerlines project.`),!(0,l.isPackageExists)(`typescript`))throw Error(`The TypeScript package is not installed. Please install the package using the command: "npm install typescript --save-dev"`);let t=W(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig);e.tsconfig.originalTsconfigJson=await(0,A.readJsonFile)(t),e.tsconfig.tsconfigJson=await lt(e),e.log(c.LogLevelLabel.TRACE,`Writing updated TypeScript configuration (tsconfig.json) file to disk.`),await e.fs.write(t,j.StormJSON.stringify(e.tsconfig.tsconfigJson)),e.tsconfig=K(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig,e.config.tsconfigRaw,e.tsconfig.originalTsconfigJson)}async function dt(e){let t=await(0,A.readJsonFile)(e.tsconfig.tsconfigFilePath);t?.compilerOptions?.types&&Array.isArray(t.compilerOptions.types)&&!t.compilerOptions.types.length&&delete t.compilerOptions.types;let n=(0,me.getObjectDiff)(e.tsconfig.originalTsconfigJson,t,{ignoreArrayOrder:!0,showOnly:{statuses:[`added`,`deleted`,`updated`],granularity:`deep`}}),r=[],i=(e,t)=>{if(e.status===`added`||e.status===`deleted`||e.status===`updated`)if(e.diff)for(let n of e.diff)i(n,t?`${t}.${e.property}`:e.property);else r.push({field:t?`${t}.${e.property}`:e.property,status:e.status,previous:e.status===`added`?`---`:j.StormJSON.stringify(e.previousValue),current:e.status===`deleted`?`---`:j.StormJSON.stringify(e.currentValue)})};for(let e of n.diff)i(e);if(r.length>0&&e.log(c.LogLevelLabel.WARN,`Updating the following configuration values in "${e.tsconfig.tsconfigFilePath}" file:
14
-
15
- ${r.map((e,t)=>`${T.default.bold.whiteBright(`${t+1}. ${(0,N.titleCase)(e.status)} the ${e.field} field: `)}
16
- ${T.default.red(` - Previous: ${e.previous} `)}
17
- ${T.default.green(` - Updated: ${e.current} `)}
18
- `).join(`
19
- `)}
20
- `),await e.fs.write(e.tsconfig.tsconfigFilePath,j.StormJSON.stringify(t)),e.tsconfig=K(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig),!e.tsconfig)throw Error(`Failed to parse the TypeScript configuration file.`)}const ft=`default`;function pt(e,t){return(0,d.default)(t.environments?.[e]??{},{name:e,title:t.title||(0,N.titleCase)(t.name),ssr:!1,mainFields:t.build?.platform===`browser`?[`browser`,`module`,`jsnext:main`,`jsnext`]:[`module`,`jsnext:main`,`jsnext`],extensions:[`.mjs`,`.js`,`.mts`,`.ts`,`.jsx`,`.tsx`,`.json`],consumer:t.build?.platform===`browser`?`client`:`server`,preview:t.build?.platform===`browser`?{port:5173,open:!0,strictPort:!1,host:`localhost`,allowedHosts:[`.`],cors:!0,headers:{}}:void 0},t)}function mt(e){return pt(`default`,e)}async function ht(e,t){return(0,d.default)({workspaceRoot:e},await(0,he.getWorkspaceConfig)(!0,{cwd:t,workspaceRoot:e,useDefault:!0}))}async function gt(e,t,n,r,i=`production`,a,o=`powerlines`){let s={},c;if(a&&(c=(0,P.existsSync)((0,f.replacePath)(a,e))?(0,f.replacePath)(a,e):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),(0,f.replacePath)(a,e)))?(0,u.joinPaths)((0,y.appendPath)(e,t),(0,f.replacePath)(a,e)):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),a))?(0,u.joinPaths)((0,y.appendPath)(e,t),a):void 0),c||=(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.ts`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.ts`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.js`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.js`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.mts`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.mts`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.mjs`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.${i}.config.mjs`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.ts`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.ts`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.js`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.js`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.mts`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.mts`):(0,P.existsSync)((0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.mjs`))?(0,u.joinPaths)((0,y.appendPath)(e,t),`${o}.config.mjs`):void 0,c){let e=await n.import(n.esmResolve(c));if(e){let t={};(0,C.isFunction)(e)&&(t=await Promise.resolve(e({command:r,mode:i,isSsrBuild:!1,isPreview:!1}))),(0,w.isSetObject)(t)&&(s={...t,config:t,configFile:c})}}let l=await(0,ge.loadConfig)({cwd:e,name:o,envName:i,globalRc:!0,packageJson:!0,dotenv:!0,jiti:n});return(0,d.default)(s,(0,w.isSetObject)(l?.config)?{...l.config,...l}:{})}function _t(e){return(0,d.default)(e,{interopDefault:!0,fsCache:e.mode===`development`?!1:(0,u.joinPaths)(e.cacheDir,`jiti`),moduleCache:e.mode!==`development`})}function vt(e){return(0,we.createJiti)((0,u.joinPaths)(e.workspaceRoot,e.projectRoot),_t({...e}))}function yt(e){let t=(0,we.createJiti)((0,u.joinPaths)(e.workspaceRoot,e.projectRoot),_t(e));return t.plugin=vt(e),t}const bt=[`new`,`clean`,`prepare`,`lint`,`test`,`build`,`docs`,`deploy`,`finalize`];function q(e){return(0,w.isSetObject)(e)&&`name`in e&&(0,b.isSetString)(e.name)&&((0,z.isUndefined)(e.applyToEnvironment)||`applyToEnvironment`in e&&(0,C.isFunction)(e.applyToEnvironment))&&((0,z.isUndefined)(e.dedupe)||`dedupe`in e&&(0,C.isFunction)(e.dedupe))&&((0,z.isUndefined)(e.dependsOn)||`dependsOn`in e&&Array.isArray(e.dependsOn)&&e.dependsOn.every(Ct))&&bt.every(t=>(0,z.isUndefined)(e[t])||t in e&&((0,C.isFunction)(e[t])||(0,w.isSetObject)(e[t])&&`handler`in e[t]&&(0,C.isFunction)(e[t].handler)))}function xt(e){return(0,w.isSetObject)(e)&&`plugin`in e&&(((0,b.isSetString)(e.plugin)||(0,C.isFunction)(e.plugin))&&`options`in e&&(0,w.isSetObject)(e.options)||q(e.plugin))}function St(e){return Array.isArray(e)&&(e.length===1||e.length===2)&&(((0,b.isSetString)(e[0])||(0,C.isFunction)(e[0]))&&e.length>1&&(0,w.isSetObject)(e[1])||q(e[0]))}function Ct(e){return(0,b.isSetString)(e)||(0,C.isFunction)(e)||q(e)||xt(e)||St(e)}function wt(e){return(0,C.isFunction)(e)||(0,w.isSetObject)(e)&&`handler`in e&&(0,C.isFunction)(e.handler)}function Tt(e){return(0,w.isSetObject)(e)&&`handler`in e&&(0,C.isFunction)(e.handler)}function Et(e){return wt(e)||Tt(e)}function Dt(e){return(0,C.isFunction)(e)?e:e.handler}function Ot(e){return e.startsWith(`vite:`)||e.startsWith(`esbuild:`)||e.startsWith(`rolldown:`)||e.startsWith(`rollup:`)||e.startsWith(`webpack:`)||e.startsWith(`rspack:`)||e.startsWith(`farm:`)}function J(e,t){return e.dedupe===!1||t.some(t=>t.dedupe!==!1&&((0,C.isFunction)(t.dedupe)&&t.dedupe(e)||t.name===e.name))}function kt(e,t,n,r){J(t,r.map(e=>e.plugin))||r.push((0,C.isFunction)(n)?{plugin:t,handler:Dt(n).bind(e)}:{plugin:t,...n,handler:Dt(n).bind(e)})}var At=class extends B.Struct{static _capnp={displayName:`KeyValuePair`,id:`eabb26cf58b2a14c`,size:new B.ObjectSize(0,2)};get key(){return B.utils.getText(0,this)}set key(e){B.utils.setText(0,e,this)}get value(){return B.utils.getText(1,this)}set value(e){B.utils.setText(1,e,this)}toString(){return`FileMetadata_KeyValuePair_`+super.toString()}},jt=class e extends B.Struct{static KeyValuePair=At;static _capnp={displayName:`FileMetadata`,id:`8e2cab5d7e28c7b3`,size:new B.ObjectSize(8,3),defaultType:`normal`};static _Properties;get id(){return B.utils.getText(0,this)}set id(e){B.utils.setText(0,e,this)}get type(){return B.utils.getText(1,this,e._capnp.defaultType)}set type(e){B.utils.setText(1,e,this)}get timestamp(){return B.utils.getUint32(0,this)}set timestamp(e){B.utils.setUint32(0,e,this)}_adoptProperties(e){B.utils.adopt(e,B.utils.getPointer(2,this))}_disownProperties(){return B.utils.disown(this.properties)}get properties(){return B.utils.getList(2,e._Properties,this)}_hasProperties(){return!B.utils.isNull(B.utils.getPointer(2,this))}_initProperties(t){return B.utils.initList(2,e._Properties,t,this)}set properties(e){B.utils.copyFrom(e,B.utils.getPointer(2,this))}toString(){return`FileMetadata_`+super.toString()}},Mt=class extends B.Struct{static _capnp={displayName:`FileId`,id:`990d6a471072f997`,size:new B.ObjectSize(0,2)};get id(){return B.utils.getText(0,this)}set id(e){B.utils.setText(0,e,this)}get path(){return B.utils.getText(1,this)}set path(e){B.utils.setText(1,e,this)}toString(){return`FileId_`+super.toString()}},Nt=class extends B.Struct{static _capnp={displayName:`FileStorage`,id:`9dca66ac858c9ebe`,size:new B.ObjectSize(0,2)};get path(){return B.utils.getText(0,this)}set path(e){B.utils.setText(0,e,this)}get code(){return B.utils.getText(1,this)}set code(e){B.utils.setText(1,e,this)}toString(){return`FileStorage_`+super.toString()}},Y=class e extends B.Struct{static _capnp={displayName:`FileSystem`,id:`ae0c23d43e56abcf`,size:new B.ObjectSize(0,3)};static _Ids;static _Storage;static _Metadata;_adoptIds(e){B.utils.adopt(e,B.utils.getPointer(0,this))}_disownIds(){return B.utils.disown(this.ids)}get ids(){return B.utils.getList(0,e._Ids,this)}_hasIds(){return!B.utils.isNull(B.utils.getPointer(0,this))}_initIds(t){return B.utils.initList(0,e._Ids,t,this)}set ids(e){B.utils.copyFrom(e,B.utils.getPointer(0,this))}_adoptStorage(e){B.utils.adopt(e,B.utils.getPointer(1,this))}_disownStorage(){return B.utils.disown(this.storage)}get storage(){return B.utils.getList(1,e._Storage,this)}_hasStorage(){return!B.utils.isNull(B.utils.getPointer(1,this))}_initStorage(t){return B.utils.initList(1,e._Storage,t,this)}set storage(e){B.utils.copyFrom(e,B.utils.getPointer(1,this))}_adoptMetadata(e){B.utils.adopt(e,B.utils.getPointer(2,this))}_disownMetadata(){return B.utils.disown(this.metadata)}get metadata(){return B.utils.getList(2,e._Metadata,this)}_hasMetadata(){return!B.utils.isNull(B.utils.getPointer(2,this))}_initMetadata(t){return B.utils.initList(2,e._Metadata,t,this)}set metadata(e){B.utils.copyFrom(e,B.utils.getPointer(2,this))}toString(){return`FileSystem_`+super.toString()}};jt._Properties=B.CompositeList(At),Y._Ids=B.CompositeList(Mt),Y._Storage=B.CompositeList(Nt),Y._Metadata=B.CompositeList(jt);const Pt=(e,t={})=>{let n=t.logLevel===null?c.LogLevelLabel.SILENT:t.logLevel||c.LogLevelLabel.INFO;return n===c.LogLevelLabel.SILENT?je.noop:t.customLogger?t.customLogger:(r,...i)=>(0,ke.getLogFn)((0,ke.getLogLevel)(r),{...t,logLevel:n})(`${T.default.bold.hex((0,Ae.getColor)(`brand`,t))(`powerlines${e?`:${e}`:``}${t.name?` ${T.default.gray(`> `)}${t.name}`:``} ${T.default.gray(`> `)}`)}${i.join(` `)} `.trim())},Ft=[`#00A0DD`,`#6FCE4E`,`#FBBF24`,`#F43F5E`,`#3B82F6`,`#A855F7`,`#469592`,`#288EDF`,`#10B981`,`#EF4444`,`#F0EC56`,`#F472B6`,`#22D3EE`,`#EAB308`,`#84CC16`,`#F87171`,`#0EA5E9`,`#D946EF`,`#FACC15`,`#34D399`],It=(e,t)=>(n,...r)=>e(n,` ${T.default.inverse.hex(Ft[t.split(``).map(e=>e.charCodeAt(0)).reduce((e,t)=>e+t,0)%Ft.length]||Ft[0])(` ${(0,N.titleCase)(t)} `)} ${r.join(` `)} `);function Lt(e){return(0,se.isError)(e)&&`code`in e&&e.code}function X(e){return Lt(e)&&(e.code===`ENOENT`||e.code===`EISDIR`?null:e)}function Z(e){return(0,Me.correctPath)((0,Ne.slash)(e?.toString()||`.`).replace(/^file:\/\//,``))}function Rt(e,t=`powerlines`){return e.replace(/^\\0/,``).startsWith(`${t.replace(/:$/,``)}`)}function zt(e,t=`powerlines`){return`${t.replace(/:$/,``)}:${Z(e).replace(RegExp(`^${t.replace(/:$/,``)}:`),``).replace(/^\\0/,``).replace((0,M.findFileDotExtensionSafe)(Z(e)),``)}`}function Bt(e,t,n=`powerlines`){return(0,F.isAbsolutePath)(e)?e:Rt(Z(e),n)?zt(Z(e),n).replace(RegExp(`^${n.replace(/:$/,``)}:`),t):Z(e)}function Vt(e,t){return(0,v.getUnique)((0,m.toArray)(t).map(t=>(0,w.isSetObject)(t)&&((0,b.isSetString)(t.input)||(0,b.isSetString)(t.glob))?(0,I.joinPaths)(t.input||e,t.glob||`**/*`):(0,b.isSetString)(t)?t:void 0).filter(b.isSetString))}var Ht=class{#e=!1;options;constructor(e={base:`/`}){this.options=e,this.options.base=(0,Re.resolve)(e.base),this.options.isReadOnly=!!e.isReadOnly}async exists(e){return this.existsSync(e)}async get(e){return this.getSync(e)}async set(e,t){this.options.isReadOnly||this.setSync(e,t)}mkdirSync(e){}async mkdir(e){return Promise.resolve(this.mkdirSync(e))}async remove(e){this.options.isReadOnly||this.removeSync(e)}clearSync(e){if(!this.options.isReadOnly){let t=this.listSync(e||this.options.base);if(!t.length)return;t.map(t=>this.removeSync(e&&!t.startsWith(e)?(0,I.joinPaths)(e,t):t))}}async clear(e){if(!this.options.isReadOnly){let t=await this.list(e||this.options.base);if(!t.length)return;await Promise.all(t.map(async t=>this.remove(e&&!t.startsWith(e)?(0,I.joinPaths)(e,t):t)))}}async list(e){return this.listSync(e)}isDirectorySync(e){return!1}async isDirectory(e){return Promise.resolve(this.isDirectorySync(e))}isFileSync(e){return this.existsSync(e)&&!this.isDirectorySync(e)}async isFile(e){return Promise.resolve(this.isFileSync(e))}dispose(){return Promise.resolve()}async[Symbol.asyncDispose](){return this._dispose()}resolve(e=this.options.base){if(/\.\.:|\.\.$/.test(e))throw Error(`[${this.name}]: Invalid key: ${JSON.stringify(e)} provided to storage adapter.`);return(0,y.appendPath)((0,Me.correctPath)(e).replace(/:/g,`/`),this.options.base)}async _dispose(){this.#e||=(await Promise.resolve(this.dispose()),!0)}},Ut=class extends Ht{name=`file-system`;constructor(e){super(e)}existsSync(e){return(0,P.existsSync)(this.resolve(e))}async exists(e){return(0,P.exists)(this.resolve(e))}getSync(e){return(0,Pe.readFileSync)(this.resolve(e))}async get(e){return(0,Pe.readFile)(this.resolve(e))}setSync(e,t){if(!this.options.isReadOnly)return(0,Fe.writeFileSync)(this.resolve(e),t)}async set(e,t){if(!this.options.isReadOnly)return(0,Fe.writeFile)(this.resolve(e),t)}removeSync(e){if(!this.options.isReadOnly)try{return(0,Ie.unlinkSync)(this.resolve(e))}catch(e){return X(e)}}async remove(e){if(!this.options.isReadOnly)return(0,Le.unlink)(this.resolve(e)).catch(X)}mkdirSync(e){(0,x.createDirectorySync)(this.resolve(e))}async mkdir(e){await(0,x.createDirectory)(this.resolve(e))}listSync(e){try{return(0,g.listFilesSync)(this.resolve(e),{ignore:this.options.ignore})}catch(e){return X(e)??[]}}async list(e){return(0,g.listFiles)(this.resolve(e),{ignore:this.options.ignore}).catch(X).then(e=>e||[])}isDirectorySync(e){return(0,h.isDirectory)(this.resolve(e))}isFileSync(e){return!(0,h.isFile)(this.resolve(e))}},Q=class extends Ht{name=`virtual`;data=new Map;constructor(e){super(e)}existsSync(e){return this.data.has(this.resolve(e))}getSync(e){return this.data.get(this.resolve(e))??null}setSync(e,t){this.options.isReadOnly||this.data.set(this.resolve(e),t)}removeSync(e){this.options.isReadOnly||this.data.delete(this.resolve(e))}listSync(e){return[...this.data.keys().filter(t=>e?(0,V.isParentPath)(t,this.resolve(e)):!0)]}async dispose(){return this.clear()}},Wt=class e{#e;#t;#n;#r={"":new Ut};#i;#a=!1;#o;#s;#c(e){let t=e;return(0,V.isParentPath)(t,this.#o.builtinsPath)&&(t=(0,f.replacePath)(t,this.#o.builtinsPath)),zt(t,this.#o.config.output.builtinPrefix)}#l(e){return Bt(e.includes(`{`)||e.includes(`}`)?U(this.#o,e):e,this.#o.builtinsPath,this.#o.config.output.builtinPrefix)}#u(e){let t=`::GLOBSTAR::`;return RegExp(`^${this.#l(e).replace(/\*\*/g,t).replace(/[.+^${}()|[\]\\]/g,`\\$&`).replace(/\*/g,`[^/]*`).replace(/\?/g,`[^/]`).replace(new RegExp(t,`g`),`.*`)}$`)}#d(e){let t=this.resolveSync(this.#l(e))||e;for(let e of Object.keys(this.#r).filter(Boolean).sort().reverse())if((0,V.isParentPath)(t,e))return{base:e,relativeKey:(0,f.replacePath)(t,e),adapter:this.#r[e]};return{base:``,relativeKey:t,adapter:this.#r[``]}}#f(e=``,t=!1){return Object.keys(this.#r).sort().reverse().filter(n=>(0,V.isParentPath)(n,e)||t&&(0,V.isParentPath)(e,n)).map(t=>({relativeBase:e.length>t.length?e.slice(t.length):void 0,base:t,adapter:this.#r[t]}))}static async create(t){if(!t.config.skipCache&&(0,P.existsSync)((0,u.joinPaths)(t.dataPath,`fs.bin`))){let n=await(0,Te.readFileBuffer)((0,u.joinPaths)(t.dataPath,`fs.bin`)),r=new B.Message(n,!1).getRoot(Y),i=new e(t,r);r._hasStorage()&&r.storage.length>0&&await Promise.all(r.storage.values().map(async e=>{await i.write(e.path,e.code)}))}return new e(t,new B.Message().initRoot(Y))}static createSync(t){if(!t.config.skipCache&&(0,P.existsSync)((0,u.joinPaths)(t.dataPath,`fs.bin`))){let n=(0,Te.readFileBufferSync)((0,u.joinPaths)(t.dataPath,`fs.bin`)),r=new B.Message(n,!1).getRoot(Y),i=new e(t,r);r._hasStorage()&&r.storage.length>0&&r.storage.values().map(e=>{i.writeSync(e.path,e.code)})}return new e(t,new B.Message().initRoot(Y))}get metadata(){return new Proxy(this.#e,{get:(e,t)=>e[this.#c(t)]})}get ids(){return new Proxy(this.#n,{get:(e,t)=>e[this.#l(t)]})}get paths(){return new Proxy(this.#n,{get:(e,t)=>e[this.#c(t)]})}get resolverCache(){return this.#i||=(0,Se.create)({cacheId:`module-resolution`,cacheDir:this.#o.cachePath,ttl:3600*1e3,lruSize:5e3,persistInterval:100}),this.#i}constructor(e,t){this.#o=e,(0,w.isSetObject)(this.#o.config.output.storage)&&(this.#r={...this.#r,...this.#o.config.output.storage}),this.#r.virtual??=new Q({base:`/_virtual`}),this.#o.config.output.storage!==`fs`&&(this.#r[this.#o.artifactsPath]??=new Q({base:this.#o.artifactsPath}),this.#r[this.#o.builtinsPath]??=new Q({base:this.#o.builtinsPath}),this.#r[this.#o.entryPath]??=new Q({base:this.#o.entryPath})),this.#e={},t._hasMetadata()&&(this.#e=t.metadata.values().reduce((e,t)=>(e[t.id]={id:t.id,type:t.type,timestamp:t.timestamp||Date.now(),properties:t._hasProperties()?t.properties.values().reduce((e,t)=>(e[t.key]=t.value,e),{}):{}},e),{})),this.#t={},this.#n={},t._hasIds()&&(this.#t=t.ids.values().reduce((e,t)=>(e[t.path]??=t.id,e),{}),this.#n=t.ids.values().reduce((e,t)=>(e[t.id]??=t.path,e),{})),this.#s=It(this.#o.log,`file-system`)}async exists(e){let{relativeKey:t,adapter:n}=this.#d(e);return n.exists(t)}existsSync(e){let{relativeKey:t,adapter:n}=this.#d(e);return n.existsSync(t)}isVirtual(e){let t=this.resolveSync(e);return t?this.#d(t)?.adapter?.name===`virtual`:!1}isDirectorySync(e){let t=this.resolveSync(e);return t?!!(this.existsSync(t)&&this.#d(t)?.adapter?.isDirectorySync(t)):!1}async isDirectory(e){let t=await this.resolve(e);return t?!!(await this.exists(t)&&await this.#d(t)?.adapter?.isDirectory(t)):!1}isFileSync(e){let t=this.resolveSync(e);return t?this.#d(t)?.adapter?.isFileSync(t)??!1:!1}async isFile(e){let t=await this.resolve(e);return t?await this.#d(t)?.adapter?.isFile(t)??!1:!1}listSync(e){return(0,v.getUnique)(this.#f(e,!0).map(e=>e.adapter.listSync(e.relativeBase?e.base?(0,y.appendPath)(e.relativeBase,e.base):e.relativeBase:e.base)).flat())}async list(e){return(0,v.getUnique)((await Promise.all(this.#f(e,!0).map(async e=>e.adapter.list(e.relativeBase?e.base?(0,y.appendPath)(e.relativeBase,e.base):e.relativeBase:e.base)))).flat())}async remove(e){let t=this.#l(e);this.#s(c.LogLevelLabel.TRACE,`Removing file: ${t}`);let{relativeKey:n,adapter:r}=this.#d(t);(0,M.hasFileExtension)(t)?await r.remove(n):await r.clear(n);let i=this.#t[t];i&&this.#e[i]&&(delete this.#e[i],delete this.#t[t],delete this.#n[i])}removeSync(e){let t=this.#l(e);this.#s(c.LogLevelLabel.TRACE,`Removing file: ${t}`);let{relativeKey:n,adapter:r}=this.#d(t);(0,M.hasFileExtension)(t)?r.removeSync(n):r.clearSync(n);let i=this.#t[t];i&&this.#e[i]&&(delete this.#e[i],delete this.#t[t],delete this.#n[i])}async glob(e){let t=[];for(let n of Vt(this.#o.workspaceConfig.workspaceRoot,e)){let e=this.#l(n);if(!/[*?[\]{}]/.test(e)&&!e.includes(`**`)){if(this.isDirectorySync(e))t.push(...await this.list(e));else{let n=await this.resolve(e);n&&!t.includes(n)&&t.push(n)}continue}let r=(0,F.isAbsolutePath)(e)?e:this.#l((0,u.joinPaths)(this.#o.workspaceConfig.workspaceRoot,e)),i=r.search(/[*?[\]{}]/),a=i===-1?(0,M.findFilePath)(r):r.slice(0,Math.max(0,r.lastIndexOf(`/`,i)));await Promise.all((await this.list(a&&(0,F.isAbsolutePath)(a)?a:this.#o.workspaceConfig.workspaceRoot)).map(async e=>{if(this.#u(r).test(e)){let n=this.resolveSync(e);n&&!t.includes(n)&&t.push(n)}}))}return t}globSync(e){let t=[];for(let n of Vt(this.#o.workspaceConfig.workspaceRoot,e)){let e=this.#l(n);if(!/[*?[\]{}]/.test(e)&&!e.includes(`**`)){if(this.isDirectorySync(e))t.push(...this.listSync(e));else{let n=this.resolveSync(e);n&&!t.includes(n)&&t.push(n)}continue}let r=(0,F.isAbsolutePath)(e)?e:this.#l((0,u.joinPaths)(this.#o.workspaceConfig.workspaceRoot,e)),i=r.search(/[*?[\]{}]/),a=i===-1?(0,M.findFilePath)(r):r.slice(0,Math.max(0,r.lastIndexOf(`/`,i))),o=this.listSync(a&&(0,F.isAbsolutePath)(a)?a:this.#o.workspaceConfig.workspaceRoot);for(let e of o)if(this.#u(r).test(e)){let n=this.resolveSync(e);n&&!t.includes(n)&&t.push(n)}}return t}async copy(e,t){let n=e instanceof URL?(0,H.fileURLToPath)(e):e,r=t instanceof URL?(0,H.fileURLToPath)(t):t;if(!(0,b.isSetString)(n)&&(!(0,w.isSetObject)(n)||!(0,b.isSetString)(n.input))||!(0,b.isSetString)(r))return;let i=(0,p.isString)(n)?n:n.input?n.input:this.#o.workspaceConfig.workspaceRoot,a=await this.resolve(i);if(a)if(this.isDirectorySync(a)||(0,b.isSetString)(n)&&n.includes(`*`)||(0,w.isSetObject)(n)&&(0,b.isSetString)(n.glob))await Promise.all((await this.glob(n)).map(async e=>this.copy(e,(0,y.appendPath)((0,f.replacePath)(e,i),r))));else{let e=await this.read(a);e!==void 0&&await this.write(this.#l(r),e,{skipFormat:!0})}}copySync(e,t){let n=e instanceof URL?(0,H.fileURLToPath)(e):e,r=t instanceof URL?(0,H.fileURLToPath)(t):t;if(!(0,b.isSetString)(n)&&(!(0,w.isSetObject)(n)||!(0,b.isSetString)(n.input))||!(0,b.isSetString)(r))return;let i=(0,p.isString)(n)?n:n.input?n.input:this.#o.workspaceConfig.workspaceRoot,a=this.resolveSync(i);if(a)if(this.isDirectorySync(a)||(0,b.isSetString)(n)&&n.includes(`*`)||(0,w.isSetObject)(n)&&(0,b.isSetString)(n.glob))this.globSync(n).map(e=>this.copySync(e,(0,y.appendPath)((0,M.findFilePath)((0,f.replacePath)(e,i)),r)));else{let e=this.readSync(a);e!==void 0&&this.writeSync(this.#l((0,M.hasFileExtension)(r)?r:(0,y.appendPath)((0,M.findFileName)(a),r)),e,{skipFormat:!0})}}async move(e,t){(0,M.hasFileExtension)(e)?(await this.copy(e,t),await this.remove(e)):await Promise.all((await this.list(e)).map(async e=>{await this.copy(e,t),await this.remove(e)}))}moveSync(e,t){(0,M.hasFileExtension)(e)?(this.copySync(e,t),this.removeSync(e)):this.listSync(e).forEach(e=>{this.copySync(e,t),this.removeSync(e)})}async read(e){let t=await this.resolve(e);if(!t)return;let{relativeKey:n,adapter:r}=this.#d(t);return this.#s(c.LogLevelLabel.TRACE,`Reading ${r.name} file: ${t}`),await r.get(n)??void 0}readSync(e){let t=this.resolveSync(e);if(!t)return;let{relativeKey:n,adapter:r}=this.#d(t);return this.#s(c.LogLevelLabel.TRACE,`Reading ${r.name} file: ${t}`),r.getSync(n)??void 0}async write(e,t=``,n={}){let r=t;if(!n.skipFormat){let n=await(0,Oe.resolveConfig)(this.#l(e));n&&(r=await(0,Oe.format)(t,{absolutePath:this.#l(e),...n}))}let{relativeKey:i,adapter:a}=this.#d(e);this.#s(c.LogLevelLabel.TRACE,`Writing ${this.#l(i)} to ${a.name===`virtual`?`the virtual file system`:a.name===`file-system`?`the local file system`:a.name} (size: ${(0,Ee.prettyBytes)(new De.Blob((0,m.toArray)(r)).size)})`);let o=n?.meta?.id||this.#c(i);return this.#e[o]={variant:`normal`,timestamp:Date.now(),...n.meta??{}},this.#n[o]=this.#l(i),this.#t[this.#l(i)]=o,a.set(i,r)}writeSync(e,t=``,n={}){let{relativeKey:r,adapter:i}=this.#d(e);this.#s(c.LogLevelLabel.TRACE,`Writing ${this.#l(r)} file to ${i.name===`virtual`?`the virtual file system`:i.name===`file-system`?`the local file system`:i.name} (size: ${(0,Ee.prettyBytes)(new De.Blob((0,m.toArray)(t)).size)})`);let a=n?.meta?.id||this.#c(r);return this.#e[a]={variant:`normal`,timestamp:Date.now(),...n.meta??{}},this.#n[a]=this.#l(r),this.#t[this.#l(r)]=a,i.setSync(r,t)}mkdirSync(e){return this.#d(e)?.adapter?.mkdirSync(e)}async mkdir(e){return this.#d(e)?.adapter?.mkdir(e)}getMetadata(e){let t=this.resolveSync(e);if(t&&this.metadata[t])return this.metadata[t]}async resolve(e,t,n={}){let r=e;if((r.includes(`{`)||r.includes(`}`))&&(r=U(this.#o,r)),(0,F.isAbsolutePath)(r))return r;let i=(0,_.murmurhash)({path:this.#c(r),importer:t,options:n}),a;if(!this.#o.config.skipCache&&(a=this.resolverCache.get(i),a))return a;if(a=this.paths[this.#c(r)],!a){let e=n.paths??[];t&&!e.includes(t)&&e.push(t),e.push(this.#o.workspaceConfig.workspaceRoot),e.push((0,y.appendPath)(this.#o.config.projectRoot,this.#o.workspaceConfig.workspaceRoot)),e.push((0,y.appendPath)(this.#o.config.sourceRoot,this.#o.workspaceConfig.workspaceRoot)),e.push(...Object.keys(this.#o.tsconfig?.options?.paths??{}).filter(e=>r.startsWith(e.replace(/\*$/,``))).map(e=>this.#o.tsconfig?.options?.paths?.[e]).flat().filter(Boolean).map(e=>(0,y.appendPath)(e,this.#o.workspaceConfig.workspaceRoot)));for(let t of(0,S.getResolutionCombinations)(r,{paths:e})){let{relativeKey:e,adapter:n}=this.#d(t);if(await n.exists(e)){a=t;break}}if(!a)try{a=await(0,S.resolve)(r,{...n,paths:e})}catch{}}return a&&!this.#o.config.skipCache&&this.resolverCache.set(i,a),a}resolveSync(e,t,n={}){let r=e;if((r.includes(`{`)||r.includes(`}`))&&(r=U(this.#o,r)),(0,F.isAbsolutePath)(r))return r;let i;if(!this.#o.config.skipCache&&(i=this.resolverCache.get(this.#c(r)),i))return i;if(i=this.paths[this.#c(r)],!i){let e=n.paths??[];t&&!e.includes(t)&&e.push(t),e.push(this.#o.workspaceConfig.workspaceRoot),e.push((0,y.appendPath)(this.#o.config.projectRoot,this.#o.workspaceConfig.workspaceRoot)),e.push((0,y.appendPath)(this.#o.config.sourceRoot,this.#o.workspaceConfig.workspaceRoot)),e.push(...Object.keys(this.#o.tsconfig?.options?.paths??{}).filter(e=>r.startsWith(e.replace(/\*$/,``))).map(e=>this.#o.tsconfig?.options?.paths?.[e]).flat().filter(Boolean).map(e=>(0,y.appendPath)(e,this.#o.workspaceConfig.workspaceRoot)));for(let t of(0,S.getResolutionCombinations)(r,{paths:e})){let{relativeKey:e,adapter:n}=this.#d(t);if(n.existsSync(e)){i=t;break}}if(!i)try{i=(0,S.resolveSync)(r,{...n,paths:e})}catch{}}return i&&!this.#o.config.skipCache&&this.resolverCache.set(this.#c(r),i),i}async dispose(){if(!this.#a){this.#a=!0,this.#s(c.LogLevelLabel.DEBUG,`Disposing virtual file system...`),await this.remove((0,u.joinPaths)(this.#o.dataPath,`fs.bin`));let e=new B.Message,t=e.initRoot(Y),n=await this.list(),r=t._initStorage(n.length);await Promise.all(n.map(async(e,t)=>{let n=await this.read(e),i=r.get(t);i.path=e,i.code=n||``}));let i=t._initIds(Object.keys(this.ids).length);Object.entries(this.ids).filter(([,e])=>e).forEach(([e,t],n)=>{let r=i.get(n);r.id=e,r.path=t});let a=t._initMetadata(Object.keys(this.metadata).length);Object.entries(this.metadata).filter(([,e])=>e).forEach(([e,t],n)=>{let r=a.get(n);if(r.id=e,r.type=t.type,r.timestamp=t.timestamp??BigInt(Date.now()),t.properties){let e=r._initProperties(Object.keys(t.properties).length);Object.entries(t.properties).forEach(([t,n],r)=>{let i=e.get(r);i.key=t,i.value=n})}}),await(0,Te.writeFileBuffer)((0,u.joinPaths)(this.#o.dataPath,`fs.bin`),e.toArrayBuffer()),this.#o.config.skipCache||this.#i.save(!0),await Promise.all(this.#f().map(async e=>e.adapter.dispose())),this.#s(c.LogLevelLabel.TRACE,`Virtual file system has been disposed.`)}}async[Symbol.asyncDispose](){return this.dispose()}};const Gt=45,Kt=62;function qt(e,t){let n=`${(0,ze.kebabCase)(e)}_${t}`;return n.length>45?n.slice(0,45):n}async function Jt(e){let t=(0,u.joinPaths)(e.dataPath,`meta.json`);e.log(c.LogLevelLabel.DEBUG,`Writing runtime metadata to ${t}`),await e.fs.write(t,JSON.stringify(e.meta,null,2))}const $=new WeakMap;(0,R.setGlobalDispatcher)(new R.Agent({keepAliveTimeout:1e4}).compose(R.interceptors.retry({maxRetries:3,minTimeout:1e3,maxTimeout:1e4,timeoutFactor:2,retryAfter:!0})));var Yt=class e{#e={};#t;#n=null;#r=(0,xe.uuid)();#i=(0,xe.uuid)();#a=Date.now();#o;#s;#c;#l;#u;#d;#f(e={}){return{variant:e.build?.variant,projectType:e.type,projectRoot:e.root,name:e.name,title:e.title,description:e.description,sourceRoot:e.sourceRoot,configFile:e.configFile,customLogger:e.customLogger,logLevel:e.logLevel,tsconfig:e.tsconfig,tsconfigRaw:e.tsconfigRaw,skipCache:e.skipCache,skipInstalls:e.skipInstalls,entry:e.entry,output:e.output,plugins:e.plugins,mode:e.mode,lint:e.lint,transform:e.transform,build:e.build,framework:e.framework,...e}}static async from(t,n){let r=new e(await ht(t,n.root));if(await r.withUserConfig(n),r.powerlinesPath=await(0,S.resolvePackage)(`powerlines`),!r.powerlinesPath)throw Error("Could not resolve `powerlines` package location.");return r}dependencies={};devDependencies={};persistedMeta=void 0;powerlinesPath;packageJson;projectJson=void 0;resolver;resolvePatterns=[];get $$internal(){return this.#e}set $$internal(e){this.#e=e}get entry(){return We(this,(0,m.toArray)(this.config.entry))}get tsconfig(){return this.#c||(this.tsconfig={tsconfigFilePath:this.config.tsconfig}),this.#c}set tsconfig(e){this.#c=e,this.resolvePatterns=(0,L.tsconfigPathsToRegExp)(e?.options?.paths??{})}get fs(){return this.#s||=Wt.createSync(this),this.#s}get checksum(){return this.#n}get meta(){return{buildId:this.#r,releaseId:this.#i,checksum:this.#n,timestamp:this.#a,projectRootHash:(0,_.murmurhash)({workspaceRoot:this.workspaceConfig?.workspaceRoot,projectRoot:this.config?.projectRoot},{maxLength:45}),configHash:(0,_.murmurhash)(this.config,{maxLength:62})}}get config(){return this.resolvedConfig??{}}get log(){return this.logFn||=this.createLog(),this.logFn}get workspaceConfig(){return this.#t}get envPaths(){return this.#o||=(0,_e.getEnvPaths)({orgId:`storm-software`,appId:`powerlines`,workspaceRoot:this.workspaceConfig.workspaceRoot}),this.#o}get artifactsPath(){return(0,I.joinPaths)(this.workspaceConfig.workspaceRoot,this.config.projectRoot,this.config.output.artifactsPath)}get builtinsPath(){return(0,I.joinPaths)(this.artifactsPath,`builtins`)}get entryPath(){return(0,I.joinPaths)(this.artifactsPath,`entry`)}get dataPath(){return(0,I.joinPaths)(this.envPaths.data,`projects`,qt(this.config.name,this.meta.projectRootHash))}get cachePath(){return(0,I.joinPaths)(this.envPaths.cache,`projects`,(0,_.murmurhash)({checksum:this.#n,config:this.meta.configHash},{maxLength:62}))}get dtsPath(){return this.config.output.dts?(0,y.appendPath)(this.config.output.dts,this.workspaceConfig.workspaceRoot):(0,I.joinPaths)(this.workspaceConfig.workspaceRoot,this.config.projectRoot,`powerlines.d.ts`)}get relativeToWorkspaceRoot(){return(0,ne.relativeToWorkspaceRoot)(this.config.projectRoot)}get builtins(){return Object.values(this.fs.metadata).filter(e=>e&&e.type===`builtin`).map(e=>e?.id).filter(Boolean)}get program(){return this.#l||=Qe(this,{skipAddingFilesFromTsConfig:!0}),this.#l}get parserCache(){return this.#u||=(0,Se.create)({cacheId:`parser`,cacheDir:this.cachePath,ttl:7200*1e3,lruSize:5e3,persistInterval:250}),this.#u}get requestCache(){return this.#d||=(0,Se.create)({cacheId:`http`,cacheDir:this.cachePath,ttl:300*1e3,lruSize:5e3,persistInterval:250}),this.#d}async fetch(e,t={}){let n=(0,_.murmurhash)({input:e.toString(),options:JSON.stringify(t)});if(!this.config.skipCache&&!t.skipCache){let e=this.requestCache.get(n);if(e)return new R.Response(e.body,{status:e.status,statusText:e.statusText,headers:e.headers})}let r=await(0,ye.fetchRequest)(e,{timeout:12e3,...t}),i={body:await r.text(),status:r.status,statusText:r.statusText,headers:Object.fromEntries(r.headers.entries())};if(!this.config.skipCache&&!t.skipCache)try{this.requestCache.set(n,i)}catch{}return new R.Response(i.body,{status:i.status,statusText:i.statusText,headers:i.headers})}async parse(e,t={}){let n=(0,_.murmurhash)({code:e,options:t}),r;return!this.config.skipCache&&(r=this.parserCache.get(n),r)?r:(r=await(0,Ce.parse)(`source.${t.lang||`ts`}`,e,{...t,sourceType:`module`,showSemanticErrors:this.config.mode===`development`}),this.config.skipCache||this.parserCache.set(n,r),r)}async resolve(e,t,n={}){let r=e;if(this.config.build.alias)if(Array.isArray(this.config.build.alias)){let e=this.config.build.alias.find(e=>(0,L.match)(r,[e.find]));e&&(r=e.replacement)}else (0,w.isSetObject)(this.config.build.alias)&&this.config.build.alias[e]&&(r=this.config.build.alias[e]);if(this.fs.isVirtual(r)){let e=await this.fs.resolve(r,t,{conditions:this.config.build.conditions,extensions:this.config.build.extensions,...n});return e?{id:`\0${e}`,external:this.config.projectType!==`application`}:void 0}if(this.config.build.skipNodeModulesBundle){if((0,L.match)(r,this.resolvePatterns)||(0,L.match)(r,this.config.build.noExternal))return;if((0,L.match)(r,this.config.build.external)||r.startsWith(`node:`)||!/^[A-Z]:[/\\]|^\.{0,2}\/|^\.{1,2}$/.test(r))return{id:r,external:!0}}else{if((0,L.match)(r,this.config.build.noExternal))return;if((0,L.match)(r,this.config.build.external)||r.startsWith(`node:`))return{id:r,external:!0}}}async load(e){let t=await this.fs.resolve(e);if(!t)return;let n=await this.fs.read(t);if(n)return{code:n,map:null}}async getBuiltins(){return Promise.all(Object.entries(this.fs.metadata).filter(([,e])=>e&&e.type===`builtin`).map(async([e,t])=>{let n=await this.fs.read(e);return{...t,path:e,code:n}}))}async emitEntry(e,t,n={}){return this.fs.write((0,F.isAbsolute)(t)?t:(0,y.appendPath)(t,this.entryPath),e,(0,d.default)(n,{type:`entry`}))}async emitBuiltin(e,t,n,r={}){return this.fs.write(n?(0,F.isAbsolute)(n)?n:(0,I.joinPaths)(this.builtinsPath,n):(0,y.appendPath)(t,this.builtinsPath),e,(0,d.default)(r,{type:`builtin`}))}async withUserConfig(e,t={isHighPriority:!0}){this.mergeUserConfig(e),await this.init(this.config.userConfig,t)}async withInlineConfig(e,t={isHighPriority:!0}){if(this.config.inlineConfig=e,e.command===`new`){let e=(0,I.joinPaths)(this.workspaceConfig.workspaceRoot,`package.json`);if(!(0,P.existsSync)(e))throw Error(`The workspace package.json file could not be found at ${e}`);this.packageJson=await(0,A.readJsonFile)(e),this.workspaceConfig.repository??=(0,b.isSetString)(this.packageJson?.repository)?this.packageJson.repository:this.packageJson?.repository?.url}await this.init(this.config.inlineConfig,t)}fatal(e){this.log(c.LogLevelLabel.FATAL,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}error(e){this.log(c.LogLevelLabel.ERROR,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}warn(e){this.log(c.LogLevelLabel.WARN,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}info(e){this.log(c.LogLevelLabel.INFO,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}debug(e){this.log(c.LogLevelLabel.DEBUG,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}trace(e){this.log(c.LogLevelLabel.TRACE,(0,p.isString)(e)?e:j.StormJSON.stringify(e))}createLog(e=null){return Pt(e,{...this.config,logLevel:(0,be.isNull)(this.config.logLevel)?`silent`:this.config.logLevel})}extendLog(e){return It(this.log,e)}async generateChecksum(e=this.config.projectRoot){return this.#n=await(0,ve.hashDirectory)(e,{ignore:[`node_modules`,`.git`,`.nx`,`.cache`,`.storm`,`tmp`,`dist`]}),this.#n}constructor(e){this.#t=e,this.#o=(0,_e.getEnvPaths)({orgId:`storm-software`,appId:`powerlines`,workspaceRoot:e.workspaceRoot})}resolvedConfig={};logFn;async init(e={},t={isHighPriority:!0}){let n={projectRoot:e.root??this.config.projectRoot??this.config.userConfig?.root??this.config.inlineConfig?.root,mode:(e.mode??this.config.mode)||this.workspaceConfig.mode,skipCache:e.skipCache??this.config.skipCache??!1,configFile:e.configFile??this.config.configFile,framework:e.framework??this.config.framework??`powerlines`,command:this.config.inlineConfig?.command};if($.has(n)){let e=$.get(n);this.projectJson=e.projectJson,this.packageJson=e.packageJson,this.#n=e.checksum,this.resolver=e.resolver,this.mergeUserConfig(e.userConfig.config,this.config.userConfig)}else{let t=(0,I.joinPaths)(n.projectRoot,`project.json`);(0,P.existsSync)(t)&&(this.projectJson=await(0,A.readJsonFile)(t));let r=(0,I.joinPaths)(n.projectRoot,`package.json`);(0,P.existsSync)(r)&&(this.packageJson=await(0,A.readJsonFile)(r)),this.#n=await this.generateChecksum(n.projectRoot),this.resolver=yt({workspaceRoot:this.workspaceConfig.workspaceRoot,projectRoot:n.projectRoot,cacheDir:this.cachePath,mode:n.mode,logLevel:e.logLevel||this.config?.logLevel||this.workspaceConfig.logLevel||`info`,skipCache:n.skipCache});let i=await gt(n.projectRoot,this.workspaceConfig.workspaceRoot,this.resolver,n.command,n.mode,n.configFile,n.framework);this.mergeUserConfig(i.config),$.set(n,{projectJson:this.projectJson,packageJson:this.packageJson,checksum:this.#n,resolver:this.resolver,userConfig:i})}e.tsconfig??=W(this.workspaceConfig.workspaceRoot,n.projectRoot,e.tsconfig),(0,w.isSetObject)(e)&&(this.resolvedConfig=(0,d.default)({inlineConfig:this.config.inlineConfig,userConfig:this.config.userConfig},t.isHighPriority?this.#f(e):{},{command:this.config.inlineConfig?.command,...this.#f(this.config.inlineConfig)},this.#f(this.config.userConfig),{mode:this.workspaceConfig?.mode,logLevel:this.workspaceConfig?.logLevel,skipCache:this.workspaceConfig?.skipCache},{name:this.projectJson?.name||this.packageJson?.name,version:this.packageJson?.version,description:this.packageJson?.description,sourceRoot:this.projectJson?.sourceRoot||(0,y.appendPath)(`src`,n.projectRoot),output:(0,d.default)(e.output??{},{outputPath:n.projectRoot?(0,I.joinPaths)(this.workspaceConfig?.directories?.build||`dist`,n.projectRoot):this.workspaceConfig?.directories?.build||`dist`,artifactsPath:(0,I.joinPaths)(n.projectRoot,`.${e.framework??`powerlines`}`),dts:(0,I.joinPaths)(n.projectRoot,`${e.framework??`powerlines`}.d.ts`),builtinPrefix:e.framework??`powerlines`,assets:[{glob:`LICENSE`},{input:n.projectRoot,glob:`*.md`},{input:n.projectRoot,glob:`package.json`}]})},t.isHighPriority?{}:this.#f(e),{inlineConfig:{},userConfig:{},framework:`powerlines`,platform:`neutral`,mode:`production`,projectType:`application`,logLevel:`info`,preview:!1,environments:{},transform:{babel:{plugins:[],presets:[]}},lint:{eslint:{}},build:{target:`esnext`,override:{}}})),this.config.entry=Ge(this.config.entry),this.config.name?.startsWith(`@`)&&this.config.name.split(`/`).filter(Boolean).length>1&&(this.config.name=this.config.name.split(`/`).filter(Boolean)[1]),this.config.title??=(0,N.titleCase)(this.config.name),this.config.userConfig.build?.external&&(this.config.userConfig.build.external=(0,v.getUnique)(this.config.userConfig.build.external)),this.config.userConfig.build?.noExternal&&(this.config.userConfig.build.noExternal=(0,v.getUnique)(this.config.userConfig.build.noExternal)),this.config.build.external&&(this.config.build.external=(0,v.getUnique)(this.config.build.external)),this.config.build.noExternal&&(this.config.build.noExternal=(0,v.getUnique)(this.config.build.noExternal)),this.config.output.format=(0,v.getUnique)((0,m.toArray)(this.config.output?.format??(this.config.projectType===`library`?[`cjs`,`esm`]:[`esm`]))),this.config.projectRoot&&this.config.projectRoot!==`.`&&this.config.projectRoot!==`./`&&this.config.projectRoot!==this.workspaceConfig.workspaceRoot?(this.config.output.outputPath??=(0,I.joinPaths)(`dist`,this.config.projectRoot),this.config.output.buildPath??=(0,I.joinPaths)(this.config.projectRoot,`dist`)):(this.config.output.outputPath??=`dist`,this.config.output.buildPath??=`dist`),this.config.output.assets=(0,v.getUnique)(this.config.output.assets.map(e=>({glob:(0,w.isSetObject)(e)?e.glob:e,input:(0,p.isString)(e)||!e.input||e.input===`.`||e.input===`/`||e.input===`./`?this.workspaceConfig.workspaceRoot:(0,y.appendPath)(e.input,this.workspaceConfig.workspaceRoot),output:(0,y.appendPath)((0,w.isSetObject)(e)&&e.output?(0,I.joinPaths)(this.config.output.outputPath,(0,f.replacePath)(e.output,this.config.output.outputPath)):this.config.output.outputPath,this.workspaceConfig.workspaceRoot),ignore:(0,w.isSetObject)(e)&&e.ignore?(0,m.toArray)(e.ignore):void 0}))),this.config.plugins=(this.config.plugins??[]).filter(Boolean).reduce((e,t)=>(q(t)&&J(t,e.filter(e=>q(e)))||e.push(t),e),[]),this.config.tsconfig&&(this.config.tsconfig=U(this,this.config.tsconfig)),this.config.output.dts&&(this.config.output.dts=U(this,this.config.output.dts)),this.config.build.polyfill&&(this.config.build.polyfill=this.config.build.polyfill.map(e=>U(this,e))),this.config.output.assets&&(this.config.output.assets=this.config.output.assets.map(e=>({...e,glob:U(this,e.glob),ignore:e.ignore?e.ignore.map(e=>U(this,e)):void 0,input:U(this,e.input),output:U(this,e.output)}))),this.#s??=await Wt.create(this)}mergeUserConfig(e={},t=this.config.userConfig??{}){this.config.userConfig=(0,d.default)({entry:Array.isArray(e.entry)&&e.entry.length>0?e.entry:Array.isArray(t?.entry)&&t.entry.length>0?t.entry:[]},(0,ee.omit)(e??{},[`entry`]),(0,ee.omit)(t??{},[`entry`])),this.config.userConfig.output?.format&&(this.config.userConfig.output.format=(0,v.getUnique)((0,m.toArray)(this.config.userConfig.output?.format))),this.config.userConfig.plugins=(this.config.userConfig.plugins??[]).filter(Boolean).reduce((e,t)=>(q(t)&&J(t,e.filter(e=>q(e)))||e.push(t),e),[])}};const Xt=[`name`,`api`,`enforce`,`dedupe`,`dependsOn`,`applyToEnvironment`];function Zt(e,t){let n=e=>(0,p.isString)(e)?e:e.message,r=t.extendLog(e.name),i=async(e,n,...r)=>t.$$internal.api.callHook(e,{sequential:!0,result:`merge`,...n,environment:t},...r);return new Proxy({},{get(e,a){return a===`$$internal`?{...t.$$internal,environment:t,callHook:i}:a===`log`||a===`logger`?r:a===`error`?e=>{r(c.LogLevelLabel.ERROR,n(e))}:a===`warn`?e=>{r(c.LogLevelLabel.WARN,n(e))}:a===`info`?e=>{r(c.LogLevelLabel.INFO,n(e))}:a===`debug`?e=>{r(c.LogLevelLabel.DEBUG,n(e))}:a===`trace`?e=>{r(c.LogLevelLabel.TRACE,n(e))}:t[a]},set(e,n,i){return[`$$internal`,`environment`,`config`,`log`,`logger`,`error`,`warn`,`plugins`,`hooks`,`addPlugin`,`selectHooks`].includes(n)?(r(c.LogLevelLabel.WARN,`Cannot set read-only property "${String(n)}"`),!1):(t[n]=i,!0)}})}var Qt=class e extends Yt{#e={};static async fromConfig(t,n){let r=new e(n,t);if(await r.init(),r.powerlinesPath=await(0,S.resolvePackage)(`powerlines`),!r.powerlinesPath)throw Error("Could not resolve `powerlines` package location.");return r}environment;plugins=[];get config(){return super.config}get hooks(){return this.#e}async addPlugin(e){let t=e;if((0,C.isFunction)(e.applyToEnvironment)){let n=await Promise.resolve(e.applyToEnvironment(this.environment));if(!n||(0,le.isObject)(n)&&Object.keys(n).length===0)return;if(Ct(n))return this.$$internal.addPlugin(n);t=q(n)?n:e}let n=Zt(t,this);this.plugins.push({plugin:t,context:n}),this.#e=Object.keys(t).filter(e=>!Xt.includes(e)).reduce((e,r)=>{let i=r,a=t[i];if(!Et(a))return e;if(Ot(i))e[i]??=[],e[i].push({plugin:t,hook:Dt(a).bind(n)});else{if(e[i]??={},t.enforce)return e[i][`${t.enforce}Enforced`]??=[],kt(n,t,a,e[i][`${t.enforce}Enforced`]),e;if((0,C.isFunction)(a)||!a.order)return e[i].normal??=[],kt(n,t,a,e[i].normal),e;e[i][`${a.order}Ordered`]??=[],kt(n,t,a,e[i][`${a.order}Ordered`])}return e},this.hooks)}selectHooks(e,t){let n=[];if(this.hooks[e])if(Ot(e))n.push(...this.hooks[e].map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}}));else{let r=this.hooks[e];t?.order?t?.order===`pre`?(n.push(...(r.preOrdered??[]).map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}})),n.push(...(r.preEnforced??[]).map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}}))):t?.order===`post`?(n.push(...(r.postOrdered??[]).map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}})),n.push(...(r.postEnforced??[]).map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}}))):n.push(...(r.normal??[]).map(e=>{let t=this.plugins.find(t=>t.plugin.name===e.plugin.name);if(!t)throw Error(`Could not find plugin context for plugin "${e.plugin.name}".`);return{handle:e.handler,context:t.context}})):(n.push(...this.selectHooks(e,{order:`pre`})),n.push(...this.selectHooks(e,{order:`normal`})),n.push(...this.selectHooks(e,{order:`post`})))}return n}constructor(e,t){super(t),this.resolvedConfig=e}},$t=class e extends Yt{#e={};#t=[];#n;static async from(t,n){let r=new e(await ht(t,n.root));if(await r.withUserConfig(n),r.powerlinesPath=await(0,S.resolvePackage)(`powerlines`),!r.powerlinesPath)throw Error("Could not resolve `powerlines` package location.");return r}get $$internal(){return super.$$internal}set $$internal(e){super.$$internal=e;for(let e of Object.values(this.environments))e.$$internal=super.$$internal}get environments(){return this.#e}get log(){return this.#n||=this.createLog(`engine`),this.#n}get plugins(){return this.#t}constructor(e){super(e)}async init(e={}){await super.init(e),await Promise.all((0,m.toArray)(this.config.userConfig.environments&&Object.keys(this.config.userConfig.environments).length>0?Object.keys(this.config.userConfig.environments).map(e=>pt(e,this.config.userConfig)):mt(this.config.userConfig)).map(async e=>{this.#e[e.name]=await this.in(e)}))}async in(e){let t;t=this.environments[e.name]?this.environments[e.name]:await Qt.fromConfig(this.workspaceConfig,this.config),(0,w.isSetObject)(this.config.inlineConfig)&&await t.withInlineConfig(this.config.inlineConfig),t.environment=e,t.plugins=[];for(let e of this.plugins)await t.addPlugin(e);return t}async withUserConfig(e,t={isHighPriority:!0}){await super.withUserConfig(e,t),await Promise.all(Object.keys(this.#e).map(async n=>{await this.#e[n].withUserConfig(e,t)}))}async withInlineConfig(e,t={isHighPriority:!0}){await super.withInlineConfig(e,t),await Promise.all(Object.keys(this.#e).map(async n=>{await this.#e[n].withInlineConfig(e,t)}))}async addPlugin(e){this.plugins.push(e),await Promise.all(Object.keys(this.environments).map(async t=>{await this.environments[t].addPlugin(e)}))}async getEnvironment(e){let t;if(e&&(t=this.environments[e]),Object.keys(this.environments).length===1&&(t=this.environments[Object.keys(this.environments)[0]],this.log(c.LogLevelLabel.DEBUG,`Applying the only configured environment: ${T.default.bold.cyanBright(t?.environment.name)}`)),!t){if(e)throw Error(`Environment "${e}" not found.`);t=await this.in(mt(this.config.userConfig)),this.log(c.LogLevelLabel.WARN,`No environment specified, and no default environment found. Using a temporary default environment: ${T.default.bold.cyanBright(t?.environment.name)}`)}return t}async getEnvironmentSafe(e){try{return await this.getEnvironment(e)}catch{return}}};function en(e){return`
21
- // Generated with ${(0,N.titleCase)(e.config.framework)}
22
- // Note: Do not edit this file manually - it will be overwritten automatically
23
- `}function tn(e,t={}){let{directive:n=null,prettierIgnore:r=!1}=t;return`/* eslint-disable */
24
- // biome-ignore lint: disable
25
- ${r?`// prettier-ignore`:``}${n?`\n\n${n}\n`:`
26
- `}
27
- ${en(e)}
28
-
29
- `}var nn=class e{#e;get context(){return this.#e}constructor(e){this.#e=e}static async from(t,n){let r=new e(await $t.from(t,n));r.#e.$$internal={api:r,addPlugin:r.#r.bind(r)};for(let e of r.context.config.plugins??[])await r.#r(e);r.context.plugins.length===0&&r.context.log(c.LogLevelLabel.WARN,`No Powerlines plugins were specified in the options. Please ensure this is correct, as it is generally not recommended.`);let i=await r.callHook(`config`,{environment:await r.context.getEnvironment(),sequential:!0,result:`merge`});return await r.context.withUserConfig(i,{isHighPriority:!1}),r}async prepare(e={command:`prepare`}){this.context.log(c.LogLevelLabel.TRACE,` ๐Ÿ—๏ธ Preparing the Powerlines project`),this.context.log(c.LogLevelLabel.TRACE,` โš™๏ธ Aggregating configuration options for the Powerlines project`),await this.context.withInlineConfig(e),await this.#n(async e=>{if(e.log(c.LogLevelLabel.TRACE,`Initializing the processing options for the Powerlines project.`),await this.callHook(`configResolved`,{environment:e,order:`pre`}),await ut(e),await this.callHook(`configResolved`,{environment:e,order:`normal`}),e.log(c.LogLevelLabel.DEBUG,`The configuration provided ${(0,m.toArray)(e.config.entry).length} entry point(s), Powerlines has found ${e.entry.length} entry files(s) for the ${e.config.title} project${e.entry.length>0&&e.entry.length<10?`: \n${e.entry.map(e=>`- ${e.input.file||e.file}${e.output?` -> ${e.output}`:``}`).join(`
30
- `)}`:``}.`),await dt(e),await it(e),await this.callHook(`configResolved`,{environment:e,order:`post`}),e.log(c.LogLevelLabel.TRACE,`Powerlines configuration has been resolved: \n\n${(0,ae.formatLogMessage)(e.config)}`),e.fs.existsSync(e.cachePath)||await(0,x.createDirectory)(e.cachePath),e.fs.existsSync(e.dataPath)||await(0,x.createDirectory)(e.dataPath),await this.callHook(`prepare`,{environment:e,order:`pre`}),await this.callHook(`prepare`,{environment:e,order:`normal`}),e.config.output.dts!==!1){e.log(c.LogLevelLabel.TRACE,`Preparing the TypeScript definitions for the Powerlines project.`),e.fs.existsSync(e.dtsPath)&&await e.fs.remove(e.dtsPath),e.log(c.LogLevelLabel.TRACE,`Transforming built-ins runtime modules files.`);let t=await Promise.all((await e.getBuiltins()).map(async t=>{let n=await(0,ie.transformAsync)(t.code.toString(),{highlightCode:!0,code:!0,ast:!1,cloneInputAst:!1,comments:!0,sourceType:`module`,configFile:!1,babelrc:!1,envName:e.config.mode,caller:{name:`powerlines`},...e.config.transform.babel,filename:t.path,plugins:[[`@babel/plugin-syntax-typescript`],[Xe(e)]]});if(!n?.code)throw Error(`Powerlines - Generate Types failed to compile ${t.id}`);return e.log(c.LogLevelLabel.TRACE,`Writing transformed built-in runtime file ${t.id}.`),await e.emitBuiltin(n.code,t.id,t.path),t.path}));if(!await(0,S.resolvePackage)(`typescript`))throw Error(`Could not resolve TypeScript package location. Please ensure TypeScript is installed.`);let n=t.reduce((t,n)=>{let r=(0,f.replacePath)(n,e.workspaceConfig.workspaceRoot);return t.includes(r)||t.push(r),t},[]);e.log(c.LogLevelLabel.TRACE,`Parsing TypeScript configuration for the Powerlines project.`);let r=await et(e,n);e.log(c.LogLevelLabel.TRACE,`Generating TypeScript declaration file ${e.dtsPath}.`);let i=[],a=e=>(0,le.isObject)(e)?e.code:e,o=await this.callHook(`types`,{environment:e,sequential:!0,order:`pre`,result:`merge`,asNextParam:a},r);if(o&&((0,w.isSetObject)(o)?(r=o.code,Array.isArray(o.directives)&&o.directives.length>0&&i.push(...o.directives)):(0,b.isSetString)(o)&&(r=o)),o=await this.callHook(`types`,{environment:e,sequential:!0,order:`normal`,result:`merge`,asNextParam:a},r),o&&((0,w.isSetObject)(o)?(r=o.code,Array.isArray(o.directives)&&o.directives.length>0&&i.push(...o.directives)):(0,b.isSetString)(o)&&(r=o)),o=await this.callHook(`types`,{environment:e,sequential:!0,order:`post`,result:`merge`,asNextParam:a},r),o&&((0,w.isSetObject)(o)?(r=o.code,Array.isArray(o.directives)&&o.directives.length>0&&i.push(...o.directives)):(0,b.isSetString)(o)&&(r=o)),r?.trim()||i.length>0)await e.fs.write(e.dtsPath,`${i?`${i.map(e=>`/// <reference types="${e}" />`).join(`
31
- `)}
32
-
33
- `:``}${tn(e,{directive:null,prettierIgnore:!1})}
34
-
35
- ${$e(r)}
36
- `);else{let t=ct(e);if(e.tsconfig.tsconfigJson.include&&st(t,e.tsconfig.tsconfigJson.include)){let n=t.startsWith(`./`)?t.slice(2):t;e.tsconfig.tsconfigJson.include=e.tsconfig.tsconfigJson.include.filter(e=>e?.toString()!==n),await e.fs.write(e.tsconfig.tsconfigFilePath,JSON.stringify(e.tsconfig.tsconfigJson,null,2))}}}if(e.tsconfig=K(e.workspaceConfig.workspaceRoot,e.config.projectRoot,e.config.tsconfig),!e.tsconfig)throw Error(`Failed to parse the TypeScript configuration file.`);await this.callHook(`prepare`,{environment:e,order:`post`}),await Jt(e),e.persistedMeta=e.meta}),this.context.log(c.LogLevelLabel.INFO,`Powerlines API has been prepared successfully`)}async new(e){this.context.log(c.LogLevelLabel.INFO,`๐Ÿ†• Creating a new Powerlines project`),await this.prepare(e),await this.#n(async e=>{e.log(c.LogLevelLabel.TRACE,`Initializing the processing options for the Powerlines project.`),await this.callHook(`new`,{environment:e,order:`pre`});let t=await(0,g.listFiles)((0,u.joinPaths)(e.powerlinesPath,`files/common/**/*.hbs`));for(let n of t){e.log(c.LogLevelLabel.TRACE,`Adding template file: ${n}`);let t=E.default.compile(n);await e.fs.write((0,u.joinPaths)(e.config.projectRoot,n.replace(`.hbs`,``)),t(e))}if(await this.callHook(`new`,{environment:e,order:`normal`}),e.config.projectType===`application`){let t=await(0,g.listFiles)((0,u.joinPaths)(e.powerlinesPath,`files/application/**/*.hbs`));for(let n of t){e.log(c.LogLevelLabel.TRACE,`Adding application template file: ${n}`);let t=E.default.compile(n);await e.fs.write((0,u.joinPaths)(e.config.projectRoot,n.replace(`.hbs`,``)),t(e))}}else{let t=await(0,g.listFiles)((0,u.joinPaths)(e.powerlinesPath,`files/library/**/*.hbs`));for(let n of t){e.log(c.LogLevelLabel.TRACE,`Adding library template file: ${n}`);let t=E.default.compile(n);await e.fs.write((0,u.joinPaths)(e.config.projectRoot,n.replace(`.hbs`,``)),t(e))}}await this.callHook(`new`,{environment:e,order:`post`})}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines - New command completed`)}async clean(e={command:`clean`}){this.context.log(c.LogLevelLabel.INFO,`๐Ÿงน Cleaning the previous Powerlines artifacts`),await this.prepare(e),await this.#n(async e=>{this.context.log(c.LogLevelLabel.TRACE,`Cleaning the project's dist and artifacts directories.`),await e.fs.remove((0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.output.buildPath)),await e.fs.remove((0,u.joinPaths)(e.workspaceConfig.workspaceRoot,e.config.output.artifactsPath)),await this.callHook(`clean`,{environment:e,sequential:!1})}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines - Clean command completed`)}async lint(e={command:`lint`}){this.context.log(c.LogLevelLabel.INFO,`๐Ÿ“‹ Linting the Powerlines project`),await this.prepare(e),await this.#n(async e=>{e.config.lint!==!1&&await this.callHook(`lint`,{environment:e,sequential:!1})}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines linting completed`)}async build(e={command:`build`}){this.context.log(c.LogLevelLabel.INFO,`๐Ÿ“ฆ Building the Powerlines project`),await this.prepare(e),await this.#n(async e=>{if(await this.callHook(`build`,{environment:e,order:`pre`}),await this.callHook(`build`,{environment:e,order:`normal`}),e.config.output.buildPath!==e.config.output.outputPath){let t=(0,y.appendPath)(e.config.output.buildPath,e.workspaceConfig.workspaceRoot),n=(0,u.joinPaths)((0,y.appendPath)(e.config.output.outputPath,e.workspaceConfig.workspaceRoot),`dist`);t!==n&&(e.log(c.LogLevelLabel.INFO,`Copying build output files from project's build directory (${e.config.output.buildPath}) to the workspace's output directory (${e.config.output.outputPath}).`),await e.fs.copy(t,n))}await Promise.all(e.config.output.assets.map(async t=>{e.log(c.LogLevelLabel.DEBUG,`Copying asset(s): ${T.default.redBright(e.workspaceConfig.workspaceRoot===t.input?t.glob:(0,u.joinPaths)((0,f.replacePath)(t.input,e.workspaceConfig.workspaceRoot),t.glob))} -> ${T.default.greenBright((0,u.joinPaths)((0,f.replacePath)(t.output,e.workspaceConfig.workspaceRoot),t.glob))} ${Array.isArray(t.ignore)&&t.ignore.length>0?` (ignoring: ${t.ignore.map(e=>T.default.yellowBright(e)).join(`, `)})`:``}`),await e.fs.copy(t,t.output)})),await this.callHook(`build`,{environment:e,order:`post`})}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines build completed`)}async docs(e={command:`docs`}){this.context.log(c.LogLevelLabel.INFO,`๐Ÿ““ Generating documentation for the Powerlines project`),await this.prepare(e),await this.#n(async t=>{t.log(c.LogLevelLabel.TRACE,`Writing documentation for the Powerlines project artifacts.`),await this.prepare(e),await this.#n(async e=>{await this.callHook(`docs`,{environment:e})})}),this.#e.log(c.LogLevelLabel.TRACE,`Powerlines documentation generation completed`)}async deploy(e={command:`deploy`}){this.context.log(c.LogLevelLabel.INFO,`๐Ÿ“ฆ Deploying the Powerlines project`),await this.prepare(e),await this.#n(async e=>{await this.callHook(`deploy`,{environment:e})}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines deploy completed`)}async finalize(){this.context.log(c.LogLevelLabel.TRACE,`Powerlines finalize execution started`),await this.#n(async e=>{await this.callHook(`finalize`,{environment:e}),await e.fs.dispose()}),this.context.log(c.LogLevelLabel.TRACE,`Powerlines finalize execution completed`)}async callHook(e,t,...n){return nt((0,w.isSetObject)(t?.environment)?t.environment:await this.#e.getEnvironment(t?.environment),e,{sequential:!0,...t},...n)}async[Symbol.asyncDispose](){await this.finalize()}async#t(){return!this.context.config.environments||Object.keys(this.context.config.environments).length<=1?(this.context.log(c.LogLevelLabel.DEBUG,`No environments are configured for this Powerlines project. Using the default environment.`),[await this.context.getEnvironment()]):(this.context.log(c.LogLevelLabel.DEBUG,`Found ${Object.keys(this.context.config.environments).length} configured environment(s) for this Powerlines project.`),(await Promise.all(Object.entries(this.context.config.environments).map(async([e,t])=>{if(!await this.context.getEnvironmentSafe(e)){let n=await this.callHook(`configEnvironment`,{environment:e},e,t);n&&(this.context.environments[e]=await this.context.in(n))}return this.context.environments[e]}))).filter(e=>(0,de.isSet)(e)))}async#n(e){await Promise.all((await this.#t()).map(async t=>Promise.resolve(e(t))))}async#r(e){if(e){let t=await this.#i(e);if(!t)return;if(t.dependsOn)for(let e of t.dependsOn)await this.#r(e);this.context.log(c.LogLevelLabel.DEBUG,`Successfully initialized the ${T.default.bold.cyanBright(t.name)} plugin`),await this.context.addPlugin(t)}}async#i(e){let t=e;if((0,ue.isPromiseLike)(e)&&(t=await Promise.resolve(e)),!Ct(t))throw Error(`Invalid plugin specified in the configuration - ${JSON.stringify(t)}. Please ensure the value is a plugin name, an object with the \`plugin\` and \`props\` properties, or an instance of \`Plugin\`.`);let n;if(q(t))n=t;else if((0,C.isFunction)(t))n=await Promise.resolve(t());else if((0,b.isSetString)(t)){let e=await this.#a(t);n=(0,C.isFunction)(e)?await Promise.resolve(e()):e}else if(St(t)||xt(t)){let e,r;if(St(t)?(e=t[0],r=t?.length===2?t[1]:void 0):(e=t.plugin,r=t.options),(0,b.isSetString)(e)){let t=await this.#a(e);n=(0,C.isFunction)(t)?await Promise.resolve(r?t(r):t()):t}else (0,C.isFunction)(e)?n=await Promise.resolve(e(r)):q(e)&&(n=e)}if(!n)throw Error(`The plugin configuration ${JSON.stringify(t)} is invalid. This configuration must point to a valid Powerlines plugin module.`);if(!q(n))throw Error(`The plugin option ${JSON.stringify(n)} does not export a valid module. This configuration must point to a valid Powerlines plugin module.`);return J(n,this.context.plugins)?(this.context.log(c.LogLevelLabel.TRACE,`Duplicate ${T.default.bold.cyanBright(n.name)} plugin dependency detected - Skipping initialization.`),null):(this.context.log(c.LogLevelLabel.TRACE,`Initializing the ${T.default.bold.cyanBright(n.name)} plugin...`),n)}async#a(e){if(e.startsWith(`@`)&&e.split(`/`).filter(Boolean).length>2){let t=e.split(`/`).filter(Boolean);e=`${t[0]}/${t[1]}`}let t=(0,l.isPackageExists)(e,{paths:[this.context.workspaceConfig.workspaceRoot,this.context.config.projectRoot]});if(!t&&this.context.config.skipInstalls!==!0){this.#e.log(c.LogLevelLabel.WARN,`The plugin package "${e}" is not installed. It will be installed automatically.`);let t=await(0,oe.install)(e,{cwd:this.context.config.projectRoot});if((0,ce.isNumber)(t.exitCode)&&t.exitCode>0)throw this.#e.log(c.LogLevelLabel.ERROR,t.stderr),Error(`An error occurred while installing the build plugin package "${e}" `)}try{let t=await this.context.resolver.plugin.import(this.context.resolver.plugin.esmResolve((0,u.joinPaths)(e,`plugin`))),n=t.plugin??t.default;if(!n)throw Error(`The plugin package "${e}" does not export a valid module.`);return n}catch(n){try{let t=await this.context.resolver.plugin.import(this.context.resolver.plugin.esmResolve(e)),n=t.plugin??t.default;if(!n)throw Error(`The plugin package "${e}" does not export a valid module.`);return n}catch{throw t?Error(`An error occurred while importing the build plugin package "${e}":
37
- ${(0,se.isError)(n)?n.message:String(n)}
38
-
39
- Note: 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\`.`):Error(`The plugin package "${e}" is not installed. Please install the package using the command: "npm install ${e} --save-dev"`)}}}};function rn(e){return e?(0,p.isString)(e)?e:(0,w.isSetObject)(e)&&`code`in e?e.code:e.toString():``}function an(e,t){return(0,d.defu)(e,t)}function on(e){let t=e;return(0,re.setParseImpl)(t.parse),()=>{let e=It(t.log,`unplugin`);e(c.LogLevelLabel.DEBUG,`Initializing Unplugin`);try{async function n(){e(c.LogLevelLabel.DEBUG,`Powerlines build plugin starting...`),await t.$$internal.callHook(`buildStart`,{sequential:!0})}async function r(e,n,r={isEntry:!1}){let i=await(async()=>{let i=await t.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`pre`},e,n,r);return i||(i=await t.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`normal`},e,n,r),i)||(i=await t.resolve(e,n,r),i)?i:t.$$internal.callHook(`resolveId`,{sequential:!0,result:`first`,order:`post`},e,n,r)})();if(i&&r.isEntry&&t.config.build.polyfill&&t.config.build.polyfill.length>0){let e=t.entry.find(e=>e.file===((0,p.isString)(i)?i:i.id));if(e)return e.file=`${(0,f.replaceExtension)((0,p.isString)(i)?i:i.id)}-polyfill.ts`,e.output||=e.output?.replace((0,M.findFileName)(e.output,{withExtension:!0}),e.file),await t.emitEntry(`
40
- ${t.config.build.polyfill.map(e=>`import "${e}";`).join(`
41
- `)}
42
-
43
- export * from "${(0,p.isString)(i)?i:i.id}";
44
- `,e.file),e.file}return i}async function i(e){let n=await t.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`pre`},e);return n||(n=await t.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`normal`},e),n)||(n=await t.load(e),n)?n:t.$$internal.callHook(`load`,{sequential:!0,result:`first`,order:`post`},e)}async function a(e,n){let r=e;for(let e of t.$$internal.environment.selectHooks(`transform`)){let i=await e.handle.apply(an(t,this),[rn(r),n]);i&&(r=i)}return r}async function o(){return e(c.LogLevelLabel.DEBUG,`Powerlines build plugin finishing...`),t.$$internal.callHook(`buildEnd`,{sequential:!0})}async function s(){return e(c.LogLevelLabel.DEBUG,`Finalizing Powerlines project output...`),t.$$internal.callHook(`writeBundle`,{sequential:!0})}return{name:`powerlines`,api:t.$$internal.api,resolveId:{filter:{id:{include:[/.*/]}},handler:r},load:{filter:{id:{include:[/.*/]}},handler:i},transform:a,buildStart:n,buildEnd:o,writeBundle:s,vite:{sharedDuringBuild:!0}}}catch(t){throw e(c.LogLevelLabel.FATAL,t?.message),t}}}function sn(e){return(0,re.createVitePlugin)(on(e))({})}Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return s}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return sn}});
@@ -1,7 +0,0 @@
1
- import { t as VitePluginContext } from "./plugin-CeaU7BaT.cjs";
2
- import * as vite0 from "vite";
3
-
4
- //#region src/helpers/unplugin.d.ts
5
- declare function createVitePlugin(context: VitePluginContext): vite0.Plugin<any> | vite0.Plugin<any>[];
6
- //#endregion
7
- export { createVitePlugin as t };