@powerlines/core 0.47.4 → 0.48.2

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 (437) hide show
  1. package/dist/constants/api.cjs +5 -5
  2. package/dist/constants/api.d.cts +3 -3
  3. package/dist/constants/api.d.cts.map +1 -1
  4. package/dist/constants/api.d.mts +3 -3
  5. package/dist/constants/api.d.mts.map +1 -1
  6. package/dist/constants/api.mjs +4 -4
  7. package/dist/constants/api.mjs.map +1 -1
  8. package/dist/constants/commands.cjs +1 -1
  9. package/dist/constants/commands.d.cts +1 -1
  10. package/dist/constants/commands.d.mts +1 -1
  11. package/dist/constants/commands.mjs +2 -2
  12. package/dist/constants/commands.mjs.map +1 -1
  13. package/dist/constants/devtools.cjs +23 -0
  14. package/dist/constants/devtools.d.cts +13 -0
  15. package/dist/constants/devtools.d.cts.map +1 -0
  16. package/dist/constants/devtools.d.mts +13 -0
  17. package/dist/constants/devtools.d.mts.map +1 -0
  18. package/dist/constants/devtools.mjs +14 -0
  19. package/dist/constants/devtools.mjs.map +1 -0
  20. package/dist/constants/extensions.cjs +21 -0
  21. package/dist/constants/extensions.d.cts +5 -0
  22. package/dist/constants/extensions.d.cts.map +1 -0
  23. package/dist/constants/extensions.d.mts +5 -0
  24. package/dist/constants/extensions.d.mts.map +1 -0
  25. package/dist/constants/extensions.mjs +20 -0
  26. package/dist/constants/extensions.mjs.map +1 -0
  27. package/dist/constants/fs.mjs.map +1 -1
  28. package/dist/constants/hooks.mjs.map +1 -1
  29. package/dist/constants/index.cjs +16 -4
  30. package/dist/constants/index.d.cts +4 -2
  31. package/dist/constants/index.d.mts +4 -2
  32. package/dist/constants/index.mjs +6 -4
  33. package/dist/constants/log-level.cjs +10 -10
  34. package/dist/constants/log-level.d.cts +10 -10
  35. package/dist/constants/log-level.d.mts +10 -10
  36. package/dist/constants/log-level.mjs +10 -10
  37. package/dist/constants/log-level.mjs.map +1 -1
  38. package/dist/constants/plugin.d.cts +2 -2
  39. package/dist/constants/plugin.d.mts +2 -2
  40. package/dist/constants/plugin.mjs.map +1 -1
  41. package/dist/context/base-context.cjs +121 -0
  42. package/dist/context/base-context.d.cts +81 -0
  43. package/dist/context/base-context.d.cts.map +1 -0
  44. package/dist/context/base-context.d.mts +81 -0
  45. package/dist/context/base-context.d.mts.map +1 -0
  46. package/dist/context/base-context.mjs +119 -0
  47. package/dist/context/base-context.mjs.map +1 -0
  48. package/dist/context/context.cjs +935 -0
  49. package/dist/context/context.d.cts +369 -0
  50. package/dist/context/context.d.cts.map +1 -0
  51. package/dist/context/context.d.mts +369 -0
  52. package/dist/context/context.d.mts.map +1 -0
  53. package/dist/context/context.mjs +933 -0
  54. package/dist/context/context.mjs.map +1 -0
  55. package/dist/context/environment-context.cjs +218 -0
  56. package/dist/context/environment-context.d.cts +100 -0
  57. package/dist/context/environment-context.d.cts.map +1 -0
  58. package/dist/context/environment-context.d.mts +100 -0
  59. package/dist/context/environment-context.d.mts.map +1 -0
  60. package/dist/context/environment-context.mjs +218 -0
  61. package/dist/context/environment-context.mjs.map +1 -0
  62. package/dist/context/execution-context.cjs +236 -0
  63. package/dist/context/execution-context.d.cts +106 -0
  64. package/dist/context/execution-context.d.cts.map +1 -0
  65. package/dist/context/execution-context.d.mts +106 -0
  66. package/dist/context/execution-context.d.mts.map +1 -0
  67. package/dist/context/execution-context.mjs +234 -0
  68. package/dist/context/execution-context.mjs.map +1 -0
  69. package/dist/context/index.cjs +12 -0
  70. package/dist/context/index.d.cts +6 -0
  71. package/dist/context/index.d.mts +6 -0
  72. package/dist/context/index.mjs +7 -0
  73. package/dist/context/plugin-context.cjs +82 -0
  74. package/dist/context/plugin-context.d.cts +18 -0
  75. package/dist/context/plugin-context.d.cts.map +1 -0
  76. package/dist/context/plugin-context.d.mts +18 -0
  77. package/dist/context/plugin-context.d.mts.map +1 -0
  78. package/dist/context/plugin-context.mjs +82 -0
  79. package/dist/context/plugin-context.mjs.map +1 -0
  80. package/dist/index.cjs +62 -3
  81. package/dist/index.d.cts +27 -16
  82. package/dist/index.d.mts +27 -16
  83. package/dist/index.mjs +17 -4
  84. package/dist/lib/config.cjs +160 -21
  85. package/dist/lib/config.d.cts +116 -12
  86. package/dist/lib/config.d.cts.map +1 -1
  87. package/dist/lib/config.d.mts +116 -12
  88. package/dist/lib/config.d.mts.map +1 -1
  89. package/dist/lib/config.mjs +154 -22
  90. package/dist/lib/config.mjs.map +1 -1
  91. package/dist/lib/context-helpers.cjs +42 -0
  92. package/dist/lib/context-helpers.d.cts +16 -0
  93. package/dist/lib/context-helpers.d.cts.map +1 -0
  94. package/dist/lib/context-helpers.d.mts +16 -0
  95. package/dist/lib/context-helpers.d.mts.map +1 -0
  96. package/dist/lib/context-helpers.mjs +41 -0
  97. package/dist/lib/context-helpers.mjs.map +1 -0
  98. package/dist/lib/entry.cjs +5 -6
  99. package/dist/lib/entry.d.cts +5 -5
  100. package/dist/lib/entry.d.cts.map +1 -1
  101. package/dist/lib/entry.d.mts +5 -5
  102. package/dist/lib/entry.d.mts.map +1 -1
  103. package/dist/lib/entry.mjs +5 -5
  104. package/dist/lib/entry.mjs.map +1 -1
  105. package/dist/lib/environment.cjs +72 -0
  106. package/dist/lib/environment.d.cts +12 -0
  107. package/dist/lib/environment.d.cts.map +1 -0
  108. package/dist/lib/environment.d.mts +12 -0
  109. package/dist/lib/environment.d.mts.map +1 -0
  110. package/dist/lib/environment.mjs +67 -0
  111. package/dist/lib/environment.mjs.map +1 -0
  112. package/dist/lib/events.cjs +43 -0
  113. package/dist/lib/events.d.cts +10 -0
  114. package/dist/lib/events.d.cts.map +1 -0
  115. package/dist/lib/events.d.mts +10 -0
  116. package/dist/lib/events.d.mts.map +1 -0
  117. package/dist/lib/events.mjs +42 -0
  118. package/dist/lib/events.mjs.map +1 -0
  119. package/dist/lib/generate-types.cjs +370 -0
  120. package/dist/lib/generate-types.d.cts +66 -0
  121. package/dist/lib/generate-types.d.cts.map +1 -0
  122. package/dist/lib/generate-types.d.mts +66 -0
  123. package/dist/lib/generate-types.d.mts.map +1 -0
  124. package/dist/lib/generate-types.mjs +368 -0
  125. package/dist/lib/generate-types.mjs.map +1 -0
  126. package/dist/lib/hooks.cjs +152 -0
  127. package/dist/lib/hooks.d.cts +28 -0
  128. package/dist/lib/hooks.d.cts.map +1 -0
  129. package/dist/lib/hooks.d.mts +28 -0
  130. package/dist/lib/hooks.d.mts.map +1 -0
  131. package/dist/lib/hooks.mjs +147 -0
  132. package/dist/lib/hooks.mjs.map +1 -0
  133. package/dist/lib/index.cjs +64 -3
  134. package/dist/lib/index.d.cts +18 -5
  135. package/dist/lib/index.d.mts +18 -5
  136. package/dist/lib/index.mjs +19 -4
  137. package/dist/lib/install-dependencies.cjs +24 -0
  138. package/dist/lib/install-dependencies.d.cts +12 -0
  139. package/dist/lib/install-dependencies.d.cts.map +1 -0
  140. package/dist/lib/install-dependencies.d.mts +12 -0
  141. package/dist/lib/install-dependencies.d.mts.map +1 -0
  142. package/dist/lib/install-dependencies.mjs +24 -0
  143. package/dist/lib/install-dependencies.mjs.map +1 -0
  144. package/dist/lib/meta.cjs +56 -0
  145. package/dist/lib/meta.d.cts +33 -0
  146. package/dist/lib/meta.d.cts.map +1 -0
  147. package/dist/lib/meta.d.mts +33 -0
  148. package/dist/lib/meta.d.mts.map +1 -0
  149. package/dist/lib/meta.mjs +54 -0
  150. package/dist/lib/meta.mjs.map +1 -0
  151. package/dist/lib/plugins.cjs +150 -0
  152. package/dist/lib/plugins.d.cts +39 -0
  153. package/dist/lib/plugins.d.cts.map +1 -0
  154. package/dist/lib/plugins.d.mts +39 -0
  155. package/dist/lib/plugins.d.mts.map +1 -0
  156. package/dist/lib/plugins.mjs +146 -0
  157. package/dist/lib/plugins.mjs.map +1 -0
  158. package/dist/lib/resolver.cjs +35 -0
  159. package/dist/lib/resolver.d.cts +20 -0
  160. package/dist/lib/resolver.d.cts.map +1 -0
  161. package/dist/lib/resolver.d.mts +20 -0
  162. package/dist/lib/resolver.d.mts.map +1 -0
  163. package/dist/lib/resolver.mjs +33 -0
  164. package/dist/lib/resolver.mjs.map +1 -0
  165. package/dist/lib/schemas.cjs +9 -0
  166. package/dist/lib/schemas.d.cts +2 -0
  167. package/dist/lib/schemas.d.mts +2 -0
  168. package/dist/lib/schemas.mjs +3 -0
  169. package/dist/lib/streaming-channel.cjs +259 -0
  170. package/dist/lib/streaming-channel.d.cts +126 -0
  171. package/dist/lib/streaming-channel.d.cts.map +1 -0
  172. package/dist/lib/streaming-channel.d.mts +126 -0
  173. package/dist/lib/streaming-channel.d.mts.map +1 -0
  174. package/dist/lib/streaming-channel.mjs +258 -0
  175. package/dist/lib/streaming-channel.mjs.map +1 -0
  176. package/dist/lib/typescript/index.cjs +16 -0
  177. package/dist/lib/typescript/index.d.cts +3 -0
  178. package/dist/lib/typescript/index.d.mts +3 -0
  179. package/dist/lib/typescript/index.mjs +4 -0
  180. package/dist/lib/typescript/ts-morph.cjs +105 -0
  181. package/dist/lib/typescript/ts-morph.d.cts +38 -0
  182. package/dist/lib/typescript/ts-morph.d.cts.map +1 -0
  183. package/dist/lib/typescript/ts-morph.d.mts +38 -0
  184. package/dist/lib/typescript/ts-morph.d.mts.map +1 -0
  185. package/dist/lib/typescript/ts-morph.mjs +102 -0
  186. package/dist/lib/typescript/ts-morph.mjs.map +1 -0
  187. package/dist/lib/typescript/tsconfig.cjs +253 -0
  188. package/dist/lib/typescript/tsconfig.d.cts +77 -0
  189. package/dist/lib/typescript/tsconfig.d.cts.map +1 -0
  190. package/dist/lib/typescript/tsconfig.d.mts +77 -0
  191. package/dist/lib/typescript/tsconfig.d.mts.map +1 -0
  192. package/dist/lib/typescript/tsconfig.mjs +240 -0
  193. package/dist/lib/typescript/tsconfig.mjs.map +1 -0
  194. package/dist/lib/unplugin/helpers.cjs +0 -1
  195. package/dist/lib/unplugin/helpers.d.cts.map +1 -1
  196. package/dist/lib/unplugin/helpers.d.mts.map +1 -1
  197. package/dist/lib/unplugin/helpers.mjs.map +1 -1
  198. package/dist/lib/unplugin/index.d.cts +3 -3
  199. package/dist/lib/unplugin/index.d.mts +3 -3
  200. package/dist/lib/unplugin/module-resolution.cjs +8 -9
  201. package/dist/lib/unplugin/module-resolution.d.cts +3 -4
  202. package/dist/lib/unplugin/module-resolution.d.cts.map +1 -1
  203. package/dist/lib/unplugin/module-resolution.d.mts +3 -4
  204. package/dist/lib/unplugin/module-resolution.d.mts.map +1 -1
  205. package/dist/lib/unplugin/module-resolution.mjs +8 -9
  206. package/dist/lib/unplugin/module-resolution.mjs.map +1 -1
  207. package/dist/lib/unplugin/plugin.cjs +54 -61
  208. package/dist/lib/unplugin/plugin.d.cts +5 -7
  209. package/dist/lib/unplugin/plugin.d.cts.map +1 -1
  210. package/dist/lib/unplugin/plugin.d.mts +5 -7
  211. package/dist/lib/unplugin/plugin.d.mts.map +1 -1
  212. package/dist/lib/unplugin/plugin.mjs +54 -60
  213. package/dist/lib/unplugin/plugin.mjs.map +1 -1
  214. package/dist/lib/utilities/file-header.cjs +2 -3
  215. package/dist/lib/utilities/file-header.d.cts +1 -2
  216. package/dist/lib/utilities/file-header.d.cts.map +1 -1
  217. package/dist/lib/utilities/file-header.d.mts +1 -2
  218. package/dist/lib/utilities/file-header.d.mts.map +1 -1
  219. package/dist/lib/utilities/file-header.mjs +2 -2
  220. package/dist/lib/utilities/file-header.mjs.map +1 -1
  221. package/dist/lib/utilities/format.cjs +1 -1
  222. package/dist/lib/utilities/format.d.cts.map +1 -1
  223. package/dist/lib/utilities/format.d.mts.map +1 -1
  224. package/dist/lib/utilities/format.mjs +1 -1
  225. package/dist/lib/utilities/format.mjs.map +1 -1
  226. package/dist/lib/utilities/index.cjs +1 -1
  227. package/dist/lib/utilities/index.d.cts +2 -2
  228. package/dist/lib/utilities/index.d.mts +2 -2
  229. package/dist/lib/utilities/index.mjs +1 -1
  230. package/dist/lib/utilities/source-file.d.cts.map +1 -1
  231. package/dist/lib/utilities/source-file.d.mts.map +1 -1
  232. package/dist/lib/utilities/source-file.mjs.map +1 -1
  233. package/dist/lib/utilities/source-map.d.cts.map +1 -1
  234. package/dist/lib/utilities/source-map.d.mts.map +1 -1
  235. package/dist/lib/utilities/source-map.mjs.map +1 -1
  236. package/dist/lib/utilities/write-file.cjs +0 -1
  237. package/dist/lib/utilities/write-file.mjs.map +1 -1
  238. package/dist/lib/vfs.cjs +1104 -0
  239. package/dist/lib/vfs.d.cts +321 -0
  240. package/dist/lib/vfs.d.cts.map +1 -0
  241. package/dist/lib/vfs.d.mts +321 -0
  242. package/dist/lib/vfs.d.mts.map +1 -0
  243. package/dist/lib/vfs.mjs +1102 -0
  244. package/dist/lib/vfs.mjs.map +1 -0
  245. package/dist/plugin-base.cjs +1 -2
  246. package/dist/plugin-base.d.cts +1 -5
  247. package/dist/plugin-base.d.cts.map +1 -1
  248. package/dist/plugin-base.d.mts +1 -5
  249. package/dist/plugin-base.d.mts.map +1 -1
  250. package/dist/plugin-base.mjs +1 -1
  251. package/dist/plugin-base.mjs.map +1 -1
  252. package/dist/plugin-utils/build-helpers.cjs +2 -3
  253. package/dist/plugin-utils/build-helpers.d.cts +3 -4
  254. package/dist/plugin-utils/build-helpers.d.cts.map +1 -1
  255. package/dist/plugin-utils/build-helpers.d.mts +3 -4
  256. package/dist/plugin-utils/build-helpers.d.mts.map +1 -1
  257. package/dist/plugin-utils/build-helpers.mjs +2 -2
  258. package/dist/plugin-utils/build-helpers.mjs.map +1 -1
  259. package/dist/plugin-utils/combine-plugins.cjs +0 -1
  260. package/dist/plugin-utils/combine-plugins.d.cts +7 -9
  261. package/dist/plugin-utils/combine-plugins.d.cts.map +1 -1
  262. package/dist/plugin-utils/combine-plugins.d.mts +7 -9
  263. package/dist/plugin-utils/combine-plugins.d.mts.map +1 -1
  264. package/dist/plugin-utils/combine-plugins.mjs.map +1 -1
  265. package/dist/plugin-utils/context-helpers.cjs +0 -1
  266. package/dist/plugin-utils/context-helpers.d.cts.map +1 -1
  267. package/dist/plugin-utils/context-helpers.d.mts.map +1 -1
  268. package/dist/plugin-utils/context-helpers.mjs.map +1 -1
  269. package/dist/plugin-utils/docs-helper.cjs +0 -1
  270. package/dist/plugin-utils/docs-helper.d.cts.map +1 -1
  271. package/dist/plugin-utils/docs-helper.d.mts.map +1 -1
  272. package/dist/plugin-utils/docs-helper.mjs.map +1 -1
  273. package/dist/plugin-utils/enable-plugin.cjs +33 -0
  274. package/dist/plugin-utils/enable-plugin.d.cts +29 -0
  275. package/dist/plugin-utils/enable-plugin.d.cts.map +1 -0
  276. package/dist/plugin-utils/enable-plugin.d.mts +29 -0
  277. package/dist/plugin-utils/enable-plugin.d.mts.map +1 -0
  278. package/dist/plugin-utils/enable-plugin.mjs +33 -0
  279. package/dist/plugin-utils/enable-plugin.mjs.map +1 -0
  280. package/dist/plugin-utils/extend.cjs +0 -1
  281. package/dist/plugin-utils/extend.mjs.map +1 -1
  282. package/dist/plugin-utils/filter.cjs +2 -2
  283. package/dist/plugin-utils/filter.d.cts.map +1 -1
  284. package/dist/plugin-utils/filter.d.mts.map +1 -1
  285. package/dist/plugin-utils/filter.mjs +2 -2
  286. package/dist/plugin-utils/filter.mjs.map +1 -1
  287. package/dist/plugin-utils/format-package-json.cjs +0 -1
  288. package/dist/plugin-utils/format-package-json.mjs.map +1 -1
  289. package/dist/plugin-utils/format.cjs +14 -7
  290. package/dist/plugin-utils/format.d.cts.map +1 -1
  291. package/dist/plugin-utils/format.d.mts.map +1 -1
  292. package/dist/plugin-utils/format.mjs +14 -6
  293. package/dist/plugin-utils/format.mjs.map +1 -1
  294. package/dist/plugin-utils/get-config-path.cjs +0 -1
  295. package/dist/plugin-utils/get-config-path.d.cts.map +1 -1
  296. package/dist/plugin-utils/get-config-path.d.mts.map +1 -1
  297. package/dist/plugin-utils/get-config-path.mjs.map +1 -1
  298. package/dist/plugin-utils/helpers.cjs +1 -2
  299. package/dist/plugin-utils/helpers.d.cts +18 -23
  300. package/dist/plugin-utils/helpers.d.cts.map +1 -1
  301. package/dist/plugin-utils/helpers.d.mts +18 -23
  302. package/dist/plugin-utils/helpers.d.mts.map +1 -1
  303. package/dist/plugin-utils/helpers.mjs +1 -1
  304. package/dist/plugin-utils/helpers.mjs.map +1 -1
  305. package/dist/plugin-utils/index.cjs +7 -2
  306. package/dist/plugin-utils/index.d.cts +8 -6
  307. package/dist/plugin-utils/index.d.mts +8 -6
  308. package/dist/plugin-utils/index.mjs +5 -3
  309. package/dist/plugin-utils/install.cjs +46 -0
  310. package/dist/plugin-utils/install.d.cts +23 -0
  311. package/dist/plugin-utils/install.d.cts.map +1 -0
  312. package/dist/plugin-utils/install.d.mts +23 -0
  313. package/dist/plugin-utils/install.d.mts.map +1 -0
  314. package/dist/plugin-utils/install.mjs +45 -0
  315. package/dist/plugin-utils/install.mjs.map +1 -0
  316. package/dist/plugin-utils/logging.cjs +50 -47
  317. package/dist/plugin-utils/logging.d.cts +3 -2
  318. package/dist/plugin-utils/logging.d.cts.map +1 -1
  319. package/dist/plugin-utils/logging.d.mts +3 -2
  320. package/dist/plugin-utils/logging.d.mts.map +1 -1
  321. package/dist/plugin-utils/logging.mjs +50 -47
  322. package/dist/plugin-utils/logging.mjs.map +1 -1
  323. package/dist/plugin-utils/merge.cjs +1 -1
  324. package/dist/plugin-utils/merge.d.cts +1 -2
  325. package/dist/plugin-utils/merge.d.cts.map +1 -1
  326. package/dist/plugin-utils/merge.d.mts +1 -2
  327. package/dist/plugin-utils/merge.d.mts.map +1 -1
  328. package/dist/plugin-utils/merge.mjs +1 -1
  329. package/dist/plugin-utils/merge.mjs.map +1 -1
  330. package/dist/plugin-utils/modules.cjs +1 -1
  331. package/dist/plugin-utils/modules.d.cts.map +1 -1
  332. package/dist/plugin-utils/modules.d.mts.map +1 -1
  333. package/dist/plugin-utils/modules.mjs +1 -1
  334. package/dist/plugin-utils/modules.mjs.map +1 -1
  335. package/dist/plugin-utils/paths.cjs +1 -2
  336. package/dist/plugin-utils/paths.d.cts.map +1 -1
  337. package/dist/plugin-utils/paths.d.mts.map +1 -1
  338. package/dist/plugin-utils/paths.mjs +1 -1
  339. package/dist/plugin-utils/paths.mjs.map +1 -1
  340. package/dist/plugin-utils/virtual.d.cts +1 -2
  341. package/dist/plugin-utils/virtual.d.cts.map +1 -1
  342. package/dist/plugin-utils/virtual.d.mts +1 -2
  343. package/dist/plugin-utils/virtual.d.mts.map +1 -1
  344. package/dist/plugin-utils/virtual.mjs.map +1 -1
  345. package/dist/schemas/fs.cjs +232 -0
  346. package/dist/schemas/fs.d.cts +127 -0
  347. package/dist/schemas/fs.d.cts.map +1 -0
  348. package/dist/schemas/fs.d.mts +127 -0
  349. package/dist/schemas/fs.d.mts.map +1 -0
  350. package/dist/schemas/fs.mjs +226 -0
  351. package/dist/schemas/fs.mjs.map +1 -0
  352. package/dist/storage/base.cjs +216 -0
  353. package/dist/storage/base.d.cts +200 -0
  354. package/dist/storage/base.d.cts.map +1 -0
  355. package/dist/storage/base.d.mts +200 -0
  356. package/dist/storage/base.d.mts.map +1 -0
  357. package/dist/storage/base.mjs +216 -0
  358. package/dist/storage/base.mjs.map +1 -0
  359. package/dist/storage/file-system.cjs +179 -0
  360. package/dist/storage/file-system.d.cts +127 -0
  361. package/dist/storage/file-system.d.cts.map +1 -0
  362. package/dist/storage/file-system.d.mts +127 -0
  363. package/dist/storage/file-system.d.mts.map +1 -0
  364. package/dist/storage/file-system.mjs +179 -0
  365. package/dist/storage/file-system.mjs.map +1 -0
  366. package/dist/storage/helpers.cjs +36 -0
  367. package/dist/storage/helpers.d.cts +25 -0
  368. package/dist/storage/helpers.d.cts.map +1 -0
  369. package/dist/storage/helpers.d.mts +25 -0
  370. package/dist/storage/helpers.d.mts.map +1 -0
  371. package/dist/storage/helpers.mjs +34 -0
  372. package/dist/storage/helpers.mjs.map +1 -0
  373. package/dist/storage/index.cjs +12 -0
  374. package/dist/storage/index.d.cts +5 -0
  375. package/dist/storage/index.d.mts +5 -0
  376. package/dist/storage/index.mjs +6 -0
  377. package/dist/storage/virtual.cjs +97 -0
  378. package/dist/storage/virtual.d.cts +80 -0
  379. package/dist/storage/virtual.d.cts.map +1 -0
  380. package/dist/storage/virtual.d.mts +80 -0
  381. package/dist/storage/virtual.d.mts.map +1 -0
  382. package/dist/storage/virtual.mjs +97 -0
  383. package/dist/storage/virtual.mjs.map +1 -0
  384. package/dist/types/api.d.cts +10 -162
  385. package/dist/types/api.d.cts.map +1 -1
  386. package/dist/types/api.d.mts +10 -162
  387. package/dist/types/api.d.mts.map +1 -1
  388. package/dist/types/config.d.cts +144 -181
  389. package/dist/types/config.d.cts.map +1 -1
  390. package/dist/types/config.d.mts +145 -182
  391. package/dist/types/config.d.mts.map +1 -1
  392. package/dist/types/context.d.cts +120 -184
  393. package/dist/types/context.d.cts.map +1 -1
  394. package/dist/types/context.d.mts +123 -187
  395. package/dist/types/context.d.mts.map +1 -1
  396. package/dist/types/fs.d.cts +1 -12
  397. package/dist/types/fs.d.cts.map +1 -1
  398. package/dist/types/fs.d.mts +2 -13
  399. package/dist/types/fs.d.mts.map +1 -1
  400. package/dist/types/hooks.d.cts +1 -12
  401. package/dist/types/hooks.d.cts.map +1 -1
  402. package/dist/types/hooks.d.mts +1 -12
  403. package/dist/types/hooks.d.mts.map +1 -1
  404. package/dist/types/index.d.cts +9 -11
  405. package/dist/types/index.d.mts +9 -11
  406. package/dist/types/logging.d.cts +5 -20
  407. package/dist/types/logging.d.cts.map +1 -1
  408. package/dist/types/logging.d.mts +5 -20
  409. package/dist/types/logging.d.mts.map +1 -1
  410. package/dist/types/plugin.d.cts +5 -15
  411. package/dist/types/plugin.d.cts.map +1 -1
  412. package/dist/types/plugin.d.mts +5 -15
  413. package/dist/types/plugin.d.mts.map +1 -1
  414. package/dist/types/tsconfig.d.cts +1 -8
  415. package/dist/types/tsconfig.d.cts.map +1 -1
  416. package/dist/types/tsconfig.d.mts +2 -9
  417. package/dist/types/tsconfig.d.mts.map +1 -1
  418. package/dist/types/unplugin.d.cts +6 -31
  419. package/dist/types/unplugin.d.cts.map +1 -1
  420. package/dist/types/unplugin.d.mts +6 -31
  421. package/dist/types/unplugin.d.mts.map +1 -1
  422. package/package.json +158 -25
  423. package/schemas/fs.capnp +42 -0
  424. package/dist/types/_internal.cjs +0 -0
  425. package/dist/types/_internal.d.cts +0 -91
  426. package/dist/types/_internal.d.cts.map +0 -1
  427. package/dist/types/_internal.d.mts +0 -91
  428. package/dist/types/_internal.d.mts.map +0 -1
  429. package/dist/types/_internal.mjs +0 -1
  430. package/dist/types/commands.d.cts +0 -16
  431. package/dist/types/commands.d.cts.map +0 -1
  432. package/dist/types/commands.d.mts +0 -16
  433. package/dist/types/commands.d.mts.map +0 -1
  434. package/dist/types/utils.d.cts +0 -9
  435. package/dist/types/utils.d.cts.map +0 -1
  436. package/dist/types/utils.d.mts +0 -9
  437. package/dist/types/utils.d.mts.map +0 -1
@@ -1,8 +1,8 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
2
 
3
3
  //#region src/constants/api.ts
4
- const BASE_API_FUNCTIONS = [
5
- "new",
4
+ const BASE_EXECUTION_API_METHODS = [
5
+ "create",
6
6
  "clean",
7
7
  "prepare",
8
8
  "lint",
@@ -11,8 +11,8 @@ const BASE_API_FUNCTIONS = [
11
11
  "docs",
12
12
  "deploy"
13
13
  ];
14
- const POWERLINES_API_FUNCTIONS = ["types", ...BASE_API_FUNCTIONS];
14
+ const EXECUTION_API_METHODS = ["types", ...BASE_EXECUTION_API_METHODS];
15
15
 
16
16
  //#endregion
17
- exports.BASE_API_FUNCTIONS = BASE_API_FUNCTIONS;
18
- exports.POWERLINES_API_FUNCTIONS = POWERLINES_API_FUNCTIONS;
17
+ exports.BASE_EXECUTION_API_METHODS = BASE_EXECUTION_API_METHODS;
18
+ exports.EXECUTION_API_METHODS = EXECUTION_API_METHODS;
@@ -1,6 +1,6 @@
1
1
  //#region src/constants/api.d.ts
2
- declare const BASE_API_FUNCTIONS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
3
- declare const POWERLINES_API_FUNCTIONS: readonly ["types", "new", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
2
+ declare const BASE_EXECUTION_API_METHODS: readonly ["create", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
3
+ declare const EXECUTION_API_METHODS: readonly ["types", "create", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
4
4
  //#endregion
5
- export { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS };
5
+ export { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS };
6
6
  //# sourceMappingURL=api.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.cts","names":[],"sources":["../../src/constants/api.ts"],"mappings":";cAkBa,kBAAA;AAAA,cAWA,wBAAA"}
1
+ {"version":3,"file":"api.d.cts","names":[],"sources":["../../src/constants/api.ts"],"mappings":";cAkBa,0BAAA;AAAA,cAWA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
  //#region src/constants/api.d.ts
2
- declare const BASE_API_FUNCTIONS: readonly ["new", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
3
- declare const POWERLINES_API_FUNCTIONS: readonly ["types", "new", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
2
+ declare const BASE_EXECUTION_API_METHODS: readonly ["create", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
3
+ declare const EXECUTION_API_METHODS: readonly ["types", "create", "clean", "prepare", "lint", "test", "build", "docs", "deploy"];
4
4
  //#endregion
5
- export { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS };
5
+ export { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS };
6
6
  //# sourceMappingURL=api.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.mts","names":[],"sources":["../../src/constants/api.ts"],"mappings":";cAkBa,kBAAA;AAAA,cAWA,wBAAA"}
1
+ {"version":3,"file":"api.d.mts","names":[],"sources":["../../src/constants/api.ts"],"mappings":";cAkBa,0BAAA;AAAA,cAWA,qBAAA"}
@@ -1,6 +1,6 @@
1
1
  //#region src/constants/api.ts
2
- const BASE_API_FUNCTIONS = [
3
- "new",
2
+ const BASE_EXECUTION_API_METHODS = [
3
+ "create",
4
4
  "clean",
5
5
  "prepare",
6
6
  "lint",
@@ -9,8 +9,8 @@ const BASE_API_FUNCTIONS = [
9
9
  "docs",
10
10
  "deploy"
11
11
  ];
12
- const POWERLINES_API_FUNCTIONS = ["types", ...BASE_API_FUNCTIONS];
12
+ const EXECUTION_API_METHODS = ["types", ...BASE_EXECUTION_API_METHODS];
13
13
 
14
14
  //#endregion
15
- export { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS };
15
+ export { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS };
16
16
  //# sourceMappingURL=api.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.mjs","names":[],"sources":["../../src/constants/api.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const BASE_API_FUNCTIONS = [\n \"new\",\n \"clean\",\n \"prepare\",\n \"lint\",\n \"test\",\n \"build\",\n \"docs\",\n \"deploy\"\n] as const;\n\nexport const POWERLINES_API_FUNCTIONS = [\n \"types\",\n ...BASE_API_FUNCTIONS\n] as const;\n"],"mappings":";AAkBA,MAAa,qBAAqB;CAChC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD;AAED,MAAa,2BAA2B,CACtC,SACA,GAAG,mBACJ"}
1
+ {"version":3,"file":"api.mjs","names":[],"sources":["../../src/constants/api.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const BASE_EXECUTION_API_METHODS = [\n \"create\",\n \"clean\",\n \"prepare\",\n \"lint\",\n \"test\",\n \"build\",\n \"docs\",\n \"deploy\"\n] as const;\n\nexport const EXECUTION_API_METHODS = [\n \"types\",\n ...BASE_EXECUTION_API_METHODS\n] as const;\n"],"mappings":";AAkBA,MAAa,6BAA6B;CACxC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACF;AAEA,MAAa,wBAAwB,CACnC,SACA,GAAG,0BACL"}
@@ -2,7 +2,7 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
2
  const require_constants_api = require('./api.cjs');
3
3
 
4
4
  //#region src/constants/commands.ts
5
- const SUPPORTED_COMMANDS = [...require_constants_api.POWERLINES_API_FUNCTIONS, "finalize"];
5
+ const SUPPORTED_COMMANDS = [...require_constants_api.EXECUTION_API_METHODS, "finalize"];
6
6
 
7
7
  //#endregion
8
8
  exports.SUPPORTED_COMMANDS = SUPPORTED_COMMANDS;
@@ -1,5 +1,5 @@
1
1
  //#region src/constants/commands.d.ts
2
- declare const SUPPORTED_COMMANDS: readonly ["types", "new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
2
+ declare const SUPPORTED_COMMANDS: readonly string[];
3
3
  //#endregion
4
4
  export { SUPPORTED_COMMANDS };
5
5
  //# sourceMappingURL=commands.d.cts.map
@@ -1,5 +1,5 @@
1
1
  //#region src/constants/commands.d.ts
2
- declare const SUPPORTED_COMMANDS: readonly ["types", "new", "clean", "prepare", "lint", "test", "build", "docs", "deploy", "finalize"];
2
+ declare const SUPPORTED_COMMANDS: readonly string[];
3
3
  //#endregion
4
4
  export { SUPPORTED_COMMANDS };
5
5
  //# sourceMappingURL=commands.d.mts.map
@@ -1,7 +1,7 @@
1
- import { POWERLINES_API_FUNCTIONS } from "./api.mjs";
1
+ import { EXECUTION_API_METHODS } from "./api.mjs";
2
2
 
3
3
  //#region src/constants/commands.ts
4
- const SUPPORTED_COMMANDS = [...POWERLINES_API_FUNCTIONS, "finalize"];
4
+ const SUPPORTED_COMMANDS = [...EXECUTION_API_METHODS, "finalize"];
5
5
 
6
6
  //#endregion
7
7
  export { SUPPORTED_COMMANDS };
@@ -1 +1 @@
1
- {"version":3,"file":"commands.mjs","names":[],"sources":["../../src/constants/commands.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { POWERLINES_API_FUNCTIONS } from \"./api\";\n\nexport const SUPPORTED_COMMANDS = [\n ...POWERLINES_API_FUNCTIONS,\n \"finalize\"\n] as const;\n"],"mappings":";;;AAoBA,MAAa,qBAAqB,CAChC,GAAG,0BACH,WACD"}
1
+ {"version":3,"file":"commands.mjs","names":[],"sources":["../../src/constants/commands.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { EXECUTION_API_METHODS } from \"./api\";\n\nexport const SUPPORTED_COMMANDS = [\n ...EXECUTION_API_METHODS,\n \"finalize\"\n] as readonly string[];\n"],"mappings":";;;AAoBA,MAAa,qBAAqB,CAChC,GAAG,uBACH,UACF"}
@@ -0,0 +1,23 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+
3
+ //#region src/constants/devtools.ts
4
+ const DEVTOOLS_DEFAULT_PORT = 5e3;
5
+ const DEVTOOLS_MOUNT_PATH = "/.devtools/";
6
+ const DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = "/.devtools";
7
+ const DEVTOOLS_DIRNAME = "devtools";
8
+ const DEVTOOLS_CONNECTION_META_FILENAME = ".connection.json";
9
+ const DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = "rpc-dump/index.json";
10
+ const DEVTOOLS_DOCK_IMPORTS_FILENAME = ".client-imports.js";
11
+ const DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = "/.devtools-client-imports.js";
12
+ const DEVTOOLS_RPC_DUMP_DIRNAME = "rpc-dump";
13
+
14
+ //#endregion
15
+ exports.DEVTOOLS_CONNECTION_META_FILENAME = DEVTOOLS_CONNECTION_META_FILENAME;
16
+ exports.DEVTOOLS_DEFAULT_PORT = DEVTOOLS_DEFAULT_PORT;
17
+ exports.DEVTOOLS_DIRNAME = DEVTOOLS_DIRNAME;
18
+ exports.DEVTOOLS_DOCK_IMPORTS_FILENAME = DEVTOOLS_DOCK_IMPORTS_FILENAME;
19
+ exports.DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID;
20
+ exports.DEVTOOLS_MOUNT_PATH = DEVTOOLS_MOUNT_PATH;
21
+ exports.DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH;
22
+ exports.DEVTOOLS_RPC_DUMP_DIRNAME = DEVTOOLS_RPC_DUMP_DIRNAME;
23
+ exports.DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME;
@@ -0,0 +1,13 @@
1
+ //#region src/constants/devtools.d.ts
2
+ declare const DEVTOOLS_DEFAULT_PORT = 5000;
3
+ declare const DEVTOOLS_MOUNT_PATH = "/.devtools/";
4
+ declare const DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = "/.devtools";
5
+ declare const DEVTOOLS_DIRNAME = "devtools";
6
+ declare const DEVTOOLS_CONNECTION_META_FILENAME = ".connection.json";
7
+ declare const DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = "rpc-dump/index.json";
8
+ declare const DEVTOOLS_DOCK_IMPORTS_FILENAME = ".client-imports.js";
9
+ declare const DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = "/.devtools-client-imports.js";
10
+ declare const DEVTOOLS_RPC_DUMP_DIRNAME = "rpc-dump";
11
+ //#endregion
12
+ export { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME };
13
+ //# sourceMappingURL=devtools.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devtools.d.cts","names":[],"sources":["../../src/constants/devtools.ts"],"mappings":";cAkBa,qBAAA;AAAA,cAGA,mBAAA;AAAA,cACA,qCAAA;AAAA,cACA,gBAAA;AAAA,cAEA,iCAAA;AAAA,cACA,mCAAA;AAAA,cACA,8BAAA;AAAA,cACA,gCAAA;AAAA,cACA,yBAAA"}
@@ -0,0 +1,13 @@
1
+ //#region src/constants/devtools.d.ts
2
+ declare const DEVTOOLS_DEFAULT_PORT = 5000;
3
+ declare const DEVTOOLS_MOUNT_PATH = "/.devtools/";
4
+ declare const DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = "/.devtools";
5
+ declare const DEVTOOLS_DIRNAME = "devtools";
6
+ declare const DEVTOOLS_CONNECTION_META_FILENAME = ".connection.json";
7
+ declare const DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = "rpc-dump/index.json";
8
+ declare const DEVTOOLS_DOCK_IMPORTS_FILENAME = ".client-imports.js";
9
+ declare const DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = "/.devtools-client-imports.js";
10
+ declare const DEVTOOLS_RPC_DUMP_DIRNAME = "rpc-dump";
11
+ //#endregion
12
+ export { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME };
13
+ //# sourceMappingURL=devtools.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devtools.d.mts","names":[],"sources":["../../src/constants/devtools.ts"],"mappings":";cAkBa,qBAAA;AAAA,cAGA,mBAAA;AAAA,cACA,qCAAA;AAAA,cACA,gBAAA;AAAA,cAEA,iCAAA;AAAA,cACA,mCAAA;AAAA,cACA,8BAAA;AAAA,cACA,gCAAA;AAAA,cACA,yBAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/constants/devtools.ts
2
+ const DEVTOOLS_DEFAULT_PORT = 5e3;
3
+ const DEVTOOLS_MOUNT_PATH = "/.devtools/";
4
+ const DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = "/.devtools";
5
+ const DEVTOOLS_DIRNAME = "devtools";
6
+ const DEVTOOLS_CONNECTION_META_FILENAME = ".connection.json";
7
+ const DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = "rpc-dump/index.json";
8
+ const DEVTOOLS_DOCK_IMPORTS_FILENAME = ".client-imports.js";
9
+ const DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = "/.devtools-client-imports.js";
10
+ const DEVTOOLS_RPC_DUMP_DIRNAME = "rpc-dump";
11
+
12
+ //#endregion
13
+ export { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME };
14
+ //# sourceMappingURL=devtools.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"devtools.mjs","names":[],"sources":["../../src/constants/devtools.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const DEVTOOLS_DEFAULT_PORT = 5000;\n\n// DevTools runtime routes and static output conventions.\nexport const DEVTOOLS_MOUNT_PATH = \"/.devtools/\";\nexport const DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = \"/.devtools\";\nexport const DEVTOOLS_DIRNAME = \"devtools\";\n\nexport const DEVTOOLS_CONNECTION_META_FILENAME = \".connection.json\";\nexport const DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = \"rpc-dump/index.json\";\nexport const DEVTOOLS_DOCK_IMPORTS_FILENAME = \".client-imports.js\";\nexport const DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = \"/.devtools-client-imports.js\";\nexport const DEVTOOLS_RPC_DUMP_DIRNAME = \"rpc-dump\";\n"],"mappings":";AAkBA,MAAa,wBAAwB;AAGrC,MAAa,sBAAsB;AACnC,MAAa,wCAAwC;AACrD,MAAa,mBAAmB;AAEhC,MAAa,oCAAoC;AACjD,MAAa,sCAAsC;AACnD,MAAa,iCAAiC;AAC9C,MAAa,mCAAmC;AAChD,MAAa,4BAA4B"}
@@ -0,0 +1,21 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+
3
+ //#region src/constants/extensions.ts
4
+ const DEFAULT_EXTENSIONS = [
5
+ "js",
6
+ "ts",
7
+ "cjs",
8
+ "cts",
9
+ "mjs",
10
+ "mts",
11
+ "tsx",
12
+ "jsx",
13
+ "json",
14
+ "json5",
15
+ "jsonc",
16
+ "md",
17
+ "mdx"
18
+ ];
19
+
20
+ //#endregion
21
+ exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS;
@@ -0,0 +1,5 @@
1
+ //#region src/constants/extensions.d.ts
2
+ declare const DEFAULT_EXTENSIONS: string[];
3
+ //#endregion
4
+ export { DEFAULT_EXTENSIONS };
5
+ //# sourceMappingURL=extensions.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensions.d.cts","names":[],"sources":["../../src/constants/extensions.ts"],"mappings":";cAkBa,kBAAA"}
@@ -0,0 +1,5 @@
1
+ //#region src/constants/extensions.d.ts
2
+ declare const DEFAULT_EXTENSIONS: string[];
3
+ //#endregion
4
+ export { DEFAULT_EXTENSIONS };
5
+ //# sourceMappingURL=extensions.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensions.d.mts","names":[],"sources":["../../src/constants/extensions.ts"],"mappings":";cAkBa,kBAAA"}
@@ -0,0 +1,20 @@
1
+ //#region src/constants/extensions.ts
2
+ const DEFAULT_EXTENSIONS = [
3
+ "js",
4
+ "ts",
5
+ "cjs",
6
+ "cts",
7
+ "mjs",
8
+ "mts",
9
+ "tsx",
10
+ "jsx",
11
+ "json",
12
+ "json5",
13
+ "jsonc",
14
+ "md",
15
+ "mdx"
16
+ ];
17
+
18
+ //#endregion
19
+ export { DEFAULT_EXTENSIONS };
20
+ //# sourceMappingURL=extensions.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"extensions.mjs","names":[],"sources":["../../src/constants/extensions.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const DEFAULT_EXTENSIONS = [\n \"js\",\n \"ts\",\n \"cjs\",\n \"cts\",\n \"mjs\",\n \"mts\",\n \"tsx\",\n \"jsx\",\n \"json\",\n \"json5\",\n \"jsonc\",\n \"md\",\n \"mdx\"\n];\n"],"mappings":";AAkBA,MAAa,qBAAqB;CAChC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;AACF"}
@@ -1 +1 @@
1
- {"version":3,"file":"fs.mjs","names":[],"sources":["../../src/constants/fs.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\n// eslint-disable-next-line ts/naming-convention\nexport const __VFS_PATCH__ = \"__VFS_PATCH__\";\n\n// eslint-disable-next-line ts/naming-convention\nexport const __VFS_REVERT__ = \"__VFS_REVERT__\";\n\nexport const STORAGE_PRESETS = [\"fs\", \"virtual\"];\n"],"mappings":";AAmBA,MAAa,gBAAgB;AAG7B,MAAa,iBAAiB;AAE9B,MAAa,kBAAkB,CAAC,MAAM,UAAU"}
1
+ {"version":3,"file":"fs.mjs","names":[],"sources":["../../src/constants/fs.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\n// eslint-disable-next-line ts/naming-convention\nexport const __VFS_PATCH__ = \"__VFS_PATCH__\";\n\n// eslint-disable-next-line ts/naming-convention\nexport const __VFS_REVERT__ = \"__VFS_REVERT__\";\n\nexport const STORAGE_PRESETS = [\"fs\", \"virtual\"];\n"],"mappings":";AAmBA,MAAa,gBAAgB;AAG7B,MAAa,iBAAiB;AAE9B,MAAa,kBAAkB,CAAC,MAAM,SAAS"}
@@ -1 +1 @@
1
- {"version":3,"file":"hooks.mjs","names":[],"sources":["../../src/constants/hooks.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const HOOKS_LIST_ORDERS = [\n \"preOrdered\",\n \"preEnforced\",\n \"normal\",\n \"postEnforced\",\n \"postOrdered\"\n] as const;\n"],"mappings":";AAkBA,MAAa,oBAAoB;CAC/B;CACA;CACA;CACA;CACA;CACD"}
1
+ {"version":3,"file":"hooks.mjs","names":[],"sources":["../../src/constants/hooks.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nexport const HOOKS_LIST_ORDERS = [\n \"preOrdered\",\n \"preEnforced\",\n \"normal\",\n \"postEnforced\",\n \"postOrdered\"\n] as const;\n"],"mappings":";AAkBA,MAAa,oBAAoB;CAC/B;CACA;CACA;CACA;CACA;AACF"}
@@ -1,21 +1,34 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
+ const require_constants_environments = require('./environments.cjs');
3
+ const require_constants_log_level = require('./log-level.cjs');
2
4
  const require_constants_api = require('./api.cjs');
3
5
  const require_constants_commands = require('./commands.cjs');
4
6
  const require_constants_plugin = require('./plugin.cjs');
5
- const require_constants_environments = require('./environments.cjs');
6
- const require_constants_log_level = require('./log-level.cjs');
7
+ const require_constants_devtools = require('./devtools.cjs');
8
+ const require_constants_extensions = require('./extensions.cjs');
7
9
  const require_constants_fs = require('./fs.cjs');
8
10
  const require_constants_hooks = require('./hooks.cjs');
9
11
  const require_constants_meta = require('./meta.cjs');
10
12
 
11
- exports.BASE_API_FUNCTIONS = require_constants_api.BASE_API_FUNCTIONS;
13
+ exports.BASE_EXECUTION_API_METHODS = require_constants_api.BASE_EXECUTION_API_METHODS;
12
14
  exports.BUILDER_VARIANTS = require_constants_plugin.BUILDER_VARIANTS;
13
15
  exports.CACHE_HASH_LENGTH = require_constants_meta.CACHE_HASH_LENGTH;
14
16
  exports.CLIENT_ENVIRONMENT = require_constants_environments.CLIENT_ENVIRONMENT;
15
17
  exports.DEFAULT_DEVELOPMENT_LOG_LEVEL = require_constants_log_level.DEFAULT_DEVELOPMENT_LOG_LEVEL;
16
18
  exports.DEFAULT_ENVIRONMENT = require_constants_environments.DEFAULT_ENVIRONMENT;
19
+ exports.DEFAULT_EXTENSIONS = require_constants_extensions.DEFAULT_EXTENSIONS;
17
20
  exports.DEFAULT_PRODUCTION_LOG_LEVEL = require_constants_log_level.DEFAULT_PRODUCTION_LOG_LEVEL;
18
21
  exports.DEFAULT_TEST_LOG_LEVEL = require_constants_log_level.DEFAULT_TEST_LOG_LEVEL;
22
+ exports.DEVTOOLS_CONNECTION_META_FILENAME = require_constants_devtools.DEVTOOLS_CONNECTION_META_FILENAME;
23
+ exports.DEVTOOLS_DEFAULT_PORT = require_constants_devtools.DEVTOOLS_DEFAULT_PORT;
24
+ exports.DEVTOOLS_DIRNAME = require_constants_devtools.DEVTOOLS_DIRNAME;
25
+ exports.DEVTOOLS_DOCK_IMPORTS_FILENAME = require_constants_devtools.DEVTOOLS_DOCK_IMPORTS_FILENAME;
26
+ exports.DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID = require_constants_devtools.DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID;
27
+ exports.DEVTOOLS_MOUNT_PATH = require_constants_devtools.DEVTOOLS_MOUNT_PATH;
28
+ exports.DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH = require_constants_devtools.DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH;
29
+ exports.DEVTOOLS_RPC_DUMP_DIRNAME = require_constants_devtools.DEVTOOLS_RPC_DUMP_DIRNAME;
30
+ exports.DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME = require_constants_devtools.DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME;
31
+ exports.EXECUTION_API_METHODS = require_constants_api.EXECUTION_API_METHODS;
19
32
  exports.GLOBAL_ENVIRONMENT = require_constants_environments.GLOBAL_ENVIRONMENT;
20
33
  exports.HOOKS_LIST_ORDERS = require_constants_hooks.HOOKS_LIST_ORDERS;
21
34
  exports.KNOWN_PLUGIN_FIELDS = require_constants_plugin.KNOWN_PLUGIN_FIELDS;
@@ -26,7 +39,6 @@ exports.LogCategories = require_constants_log_level.LogCategories;
26
39
  exports.LogLevels = require_constants_log_level.LogLevels;
27
40
  exports.PLUGIN_HOOKS_FIELDS = require_constants_plugin.PLUGIN_HOOKS_FIELDS;
28
41
  exports.PLUGIN_NON_HOOK_FIELDS = require_constants_plugin.PLUGIN_NON_HOOK_FIELDS;
29
- exports.POWERLINES_API_FUNCTIONS = require_constants_api.POWERLINES_API_FUNCTIONS;
30
42
  exports.ROOT_HASH_LENGTH = require_constants_meta.ROOT_HASH_LENGTH;
31
43
  exports.RSC_ENVIRONMENT = require_constants_environments.RSC_ENVIRONMENT;
32
44
  exports.SERVER_ENVIRONMENT = require_constants_environments.SERVER_ENVIRONMENT;
@@ -1,9 +1,11 @@
1
- import { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS } from "./api.cjs";
1
+ import { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS } from "./api.cjs";
2
2
  import { SUPPORTED_COMMANDS } from "./commands.cjs";
3
+ import { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME } from "./devtools.cjs";
3
4
  import { CLIENT_ENVIRONMENT, DEFAULT_ENVIRONMENT, GLOBAL_ENVIRONMENT, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT } from "./environments.cjs";
5
+ import { DEFAULT_EXTENSIONS } from "./extensions.cjs";
4
6
  import { STORAGE_PRESETS, __VFS_PATCH__, __VFS_REVERT__ } from "./fs.cjs";
5
7
  import { HOOKS_LIST_ORDERS } from "./hooks.cjs";
6
8
  import { DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels } from "./log-level.cjs";
7
9
  import { CACHE_HASH_LENGTH, ROOT_HASH_LENGTH } from "./meta.cjs";
8
10
  import { BUILDER_VARIANTS, KNOWN_PLUGIN_FIELDS, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, UNPLUGIN_BUILDER_VARIANTS } from "./plugin.cjs";
9
- export { BASE_API_FUNCTIONS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, POWERLINES_API_FUNCTIONS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
11
+ export { BASE_EXECUTION_API_METHODS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_EXTENSIONS, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME, EXECUTION_API_METHODS, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
@@ -1,9 +1,11 @@
1
- import { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS } from "./api.mjs";
1
+ import { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS } from "./api.mjs";
2
2
  import { SUPPORTED_COMMANDS } from "./commands.mjs";
3
+ import { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME } from "./devtools.mjs";
3
4
  import { CLIENT_ENVIRONMENT, DEFAULT_ENVIRONMENT, GLOBAL_ENVIRONMENT, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT } from "./environments.mjs";
5
+ import { DEFAULT_EXTENSIONS } from "./extensions.mjs";
4
6
  import { STORAGE_PRESETS, __VFS_PATCH__, __VFS_REVERT__ } from "./fs.mjs";
5
7
  import { HOOKS_LIST_ORDERS } from "./hooks.mjs";
6
8
  import { DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels } from "./log-level.mjs";
7
9
  import { CACHE_HASH_LENGTH, ROOT_HASH_LENGTH } from "./meta.mjs";
8
10
  import { BUILDER_VARIANTS, KNOWN_PLUGIN_FIELDS, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, UNPLUGIN_BUILDER_VARIANTS } from "./plugin.mjs";
9
- export { BASE_API_FUNCTIONS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, POWERLINES_API_FUNCTIONS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
11
+ export { BASE_EXECUTION_API_METHODS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_EXTENSIONS, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME, EXECUTION_API_METHODS, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
@@ -1,10 +1,12 @@
1
- import { BASE_API_FUNCTIONS, POWERLINES_API_FUNCTIONS } from "./api.mjs";
2
- import { SUPPORTED_COMMANDS } from "./commands.mjs";
3
- import { BUILDER_VARIANTS, KNOWN_PLUGIN_FIELDS, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, UNPLUGIN_BUILDER_VARIANTS } from "./plugin.mjs";
4
1
  import { CLIENT_ENVIRONMENT, DEFAULT_ENVIRONMENT, GLOBAL_ENVIRONMENT, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT } from "./environments.mjs";
5
2
  import { DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels } from "./log-level.mjs";
3
+ import { BASE_EXECUTION_API_METHODS, EXECUTION_API_METHODS } from "./api.mjs";
4
+ import { SUPPORTED_COMMANDS } from "./commands.mjs";
5
+ import { BUILDER_VARIANTS, KNOWN_PLUGIN_FIELDS, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, UNPLUGIN_BUILDER_VARIANTS } from "./plugin.mjs";
6
+ import { DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME } from "./devtools.mjs";
7
+ import { DEFAULT_EXTENSIONS } from "./extensions.mjs";
6
8
  import { STORAGE_PRESETS, __VFS_PATCH__, __VFS_REVERT__ } from "./fs.mjs";
7
9
  import { HOOKS_LIST_ORDERS } from "./hooks.mjs";
8
10
  import { CACHE_HASH_LENGTH, ROOT_HASH_LENGTH } from "./meta.mjs";
9
11
 
10
- export { BASE_API_FUNCTIONS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, POWERLINES_API_FUNCTIONS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
12
+ export { BASE_EXECUTION_API_METHODS, BUILDER_VARIANTS, CACHE_HASH_LENGTH, CLIENT_ENVIRONMENT, DEFAULT_DEVELOPMENT_LOG_LEVEL, DEFAULT_ENVIRONMENT, DEFAULT_EXTENSIONS, DEFAULT_PRODUCTION_LOG_LEVEL, DEFAULT_TEST_LOG_LEVEL, DEVTOOLS_CONNECTION_META_FILENAME, DEVTOOLS_DEFAULT_PORT, DEVTOOLS_DIRNAME, DEVTOOLS_DOCK_IMPORTS_FILENAME, DEVTOOLS_DOCK_IMPORTS_VIRTUAL_ID, DEVTOOLS_MOUNT_PATH, DEVTOOLS_MOUNT_PATH_NO_TRAILING_SLASH, DEVTOOLS_RPC_DUMP_DIRNAME, DEVTOOLS_RPC_DUMP_MANIFEST_FILENAME, EXECUTION_API_METHODS, GLOBAL_ENVIRONMENT, HOOKS_LIST_ORDERS, KNOWN_PLUGIN_FIELDS, LOG_CATEGORIES, LOG_CATEGORIES_ARRAY, LOG_LEVELS, LogCategories, LogLevels, PLUGIN_HOOKS_FIELDS, PLUGIN_NON_HOOK_FIELDS, ROOT_HASH_LENGTH, RSC_ENVIRONMENT, SERVER_ENVIRONMENT, SSR_ENVIRONMENT, STORAGE_PRESETS, SUPPORTED_COMMANDS, UNPLUGIN_BUILDER_VARIANTS, __VFS_PATCH__, __VFS_REVERT__ };
@@ -25,9 +25,9 @@ const LogCategories = {
25
25
  PLUGINS: "plugins",
26
26
  HOOKS: "hooks",
27
27
  ENV: "env",
28
- IPC: "ipc",
28
+ RPC: "rpc",
29
29
  BABEL: "babel",
30
- NETWORK: "network"
30
+ COMMUNICATION: "communication"
31
31
  };
32
32
  const LOG_CATEGORIES_ARRAY = Object.values(LogCategories);
33
33
  const LOG_CATEGORIES = [
@@ -38,8 +38,8 @@ const LOG_CATEGORIES = [
38
38
  LogCategories.PLUGINS,
39
39
  LogCategories.HOOKS,
40
40
  LogCategories.ENV,
41
- LogCategories.IPC,
42
- LogCategories.NETWORK,
41
+ LogCategories.RPC,
42
+ LogCategories.COMMUNICATION,
43
43
  LogCategories.BABEL
44
44
  ];
45
45
  const DEFAULT_DEVELOPMENT_LOG_LEVEL = {
@@ -50,8 +50,8 @@ const DEFAULT_DEVELOPMENT_LOG_LEVEL = {
50
50
  hooks: "debug",
51
51
  performance: "debug",
52
52
  env: "info",
53
- ipc: "info",
54
- network: "debug",
53
+ rpc: "info",
54
+ communication: "debug",
55
55
  babel: "debug"
56
56
  };
57
57
  const DEFAULT_TEST_LOG_LEVEL = {
@@ -62,8 +62,8 @@ const DEFAULT_TEST_LOG_LEVEL = {
62
62
  hooks: "warn",
63
63
  performance: "info",
64
64
  env: "warn",
65
- ipc: "warn",
66
- network: "warn",
65
+ rpc: "warn",
66
+ communication: "warn",
67
67
  babel: "warn"
68
68
  };
69
69
  const DEFAULT_PRODUCTION_LOG_LEVEL = {
@@ -74,8 +74,8 @@ const DEFAULT_PRODUCTION_LOG_LEVEL = {
74
74
  hooks: "warn",
75
75
  performance: "info",
76
76
  env: "error",
77
- ipc: "error",
78
- network: "error",
77
+ rpc: "error",
78
+ communication: "error",
79
79
  babel: "warn"
80
80
  };
81
81
 
@@ -16,12 +16,12 @@ declare const LogCategories: {
16
16
  readonly PLUGINS: "plugins";
17
17
  readonly HOOKS: "hooks";
18
18
  readonly ENV: "env";
19
- readonly IPC: "ipc";
19
+ readonly RPC: "rpc";
20
20
  readonly BABEL: "babel";
21
- readonly NETWORK: "network";
21
+ readonly COMMUNICATION: "communication";
22
22
  };
23
- declare const LOG_CATEGORIES_ARRAY: ("plugins" | "config" | "fs" | "general" | "performance" | "hooks" | "env" | "ipc" | "babel" | "network")[];
24
- declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "ipc", "network", "babel"];
23
+ declare const LOG_CATEGORIES_ARRAY: ("plugins" | "general" | "fs" | "performance" | "config" | "hooks" | "env" | "rpc" | "babel" | "communication")[];
24
+ declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "rpc", "communication", "babel"];
25
25
  declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
26
26
  readonly general: "debug";
27
27
  readonly fs: "info";
@@ -30,8 +30,8 @@ declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
30
30
  readonly hooks: "debug";
31
31
  readonly performance: "debug";
32
32
  readonly env: "info";
33
- readonly ipc: "info";
34
- readonly network: "debug";
33
+ readonly rpc: "info";
34
+ readonly communication: "debug";
35
35
  readonly babel: "debug";
36
36
  };
37
37
  declare const DEFAULT_TEST_LOG_LEVEL: {
@@ -42,8 +42,8 @@ declare const DEFAULT_TEST_LOG_LEVEL: {
42
42
  readonly hooks: "warn";
43
43
  readonly performance: "info";
44
44
  readonly env: "warn";
45
- readonly ipc: "warn";
46
- readonly network: "warn";
45
+ readonly rpc: "warn";
46
+ readonly communication: "warn";
47
47
  readonly babel: "warn";
48
48
  };
49
49
  declare const DEFAULT_PRODUCTION_LOG_LEVEL: {
@@ -54,8 +54,8 @@ declare const DEFAULT_PRODUCTION_LOG_LEVEL: {
54
54
  readonly hooks: "warn";
55
55
  readonly performance: "info";
56
56
  readonly env: "error";
57
- readonly ipc: "error";
58
- readonly network: "error";
57
+ readonly rpc: "error";
58
+ readonly communication: "error";
59
59
  readonly babel: "warn";
60
60
  };
61
61
  //#endregion
@@ -16,12 +16,12 @@ declare const LogCategories: {
16
16
  readonly PLUGINS: "plugins";
17
17
  readonly HOOKS: "hooks";
18
18
  readonly ENV: "env";
19
- readonly IPC: "ipc";
19
+ readonly RPC: "rpc";
20
20
  readonly BABEL: "babel";
21
- readonly NETWORK: "network";
21
+ readonly COMMUNICATION: "communication";
22
22
  };
23
- declare const LOG_CATEGORIES_ARRAY: ("plugins" | "config" | "fs" | "general" | "performance" | "hooks" | "env" | "ipc" | "babel" | "network")[];
24
- declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "ipc", "network", "babel"];
23
+ declare const LOG_CATEGORIES_ARRAY: ("plugins" | "general" | "fs" | "performance" | "config" | "hooks" | "env" | "rpc" | "babel" | "communication")[];
24
+ declare const LOG_CATEGORIES: readonly ["general", "fs", "performance", "config", "plugins", "hooks", "env", "rpc", "communication", "babel"];
25
25
  declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
26
26
  readonly general: "debug";
27
27
  readonly fs: "info";
@@ -30,8 +30,8 @@ declare const DEFAULT_DEVELOPMENT_LOG_LEVEL: {
30
30
  readonly hooks: "debug";
31
31
  readonly performance: "debug";
32
32
  readonly env: "info";
33
- readonly ipc: "info";
34
- readonly network: "debug";
33
+ readonly rpc: "info";
34
+ readonly communication: "debug";
35
35
  readonly babel: "debug";
36
36
  };
37
37
  declare const DEFAULT_TEST_LOG_LEVEL: {
@@ -42,8 +42,8 @@ declare const DEFAULT_TEST_LOG_LEVEL: {
42
42
  readonly hooks: "warn";
43
43
  readonly performance: "info";
44
44
  readonly env: "warn";
45
- readonly ipc: "warn";
46
- readonly network: "warn";
45
+ readonly rpc: "warn";
46
+ readonly communication: "warn";
47
47
  readonly babel: "warn";
48
48
  };
49
49
  declare const DEFAULT_PRODUCTION_LOG_LEVEL: {
@@ -54,8 +54,8 @@ declare const DEFAULT_PRODUCTION_LOG_LEVEL: {
54
54
  readonly hooks: "warn";
55
55
  readonly performance: "info";
56
56
  readonly env: "error";
57
- readonly ipc: "error";
58
- readonly network: "error";
57
+ readonly rpc: "error";
58
+ readonly communication: "error";
59
59
  readonly babel: "warn";
60
60
  };
61
61
  //#endregion