bun-workspaces 1.5.1 → 1.5.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 (255) hide show
  1. package/bin/cli.js +0 -0
  2. package/package.json +1 -5
  3. package/src/1108.mjs +30 -0
  4. package/src/{cli/commands/commandsConfig.mjs → 2392.mjs} +52 -11
  5. package/src/4427.mjs +9 -0
  6. package/src/5166.mjs +8 -0
  7. package/src/8126.mjs +4 -0
  8. package/src/8257.mjs +4 -0
  9. package/src/{config/util/configLocation.mjs → 8529.mjs} +11 -2
  10. package/src/ai/mcp/bwMcpServer.mjs +213 -9
  11. package/src/ai/mcp/core/index.mjs +3 -1
  12. package/src/ai/mcp/core/server.mjs +1 -3
  13. package/src/ai/mcp/core/transport.mjs +1 -2
  14. package/src/ai/mcp/core/types.mjs +0 -1
  15. package/src/ai/mcp/index.mjs +3 -1
  16. package/src/ai/mcp/resources.mjs +1 -2
  17. package/src/ai/mcp/tools.mjs +1 -5
  18. package/src/cli/commands/commandHandlerUtils.mjs +2 -6
  19. package/src/cli/commands/commands.mjs +1 -4
  20. package/src/cli/commands/handleSimpleCommands.mjs +4 -10
  21. package/src/cli/commands/index.mjs +11 -2
  22. package/src/cli/commands/mcp.mjs +1 -4
  23. package/src/cli/commands/runScript/handleRunScript.mjs +1 -9
  24. package/src/cli/commands/runScript/index.mjs +3 -1
  25. package/src/cli/commands/runScript/output/index.mjs +3 -1
  26. package/src/cli/commands/runScript/output/outputStyle.mjs +1 -3
  27. package/src/cli/commands/runScript/output/renderGroupedOutput.mjs +1 -6
  28. package/src/cli/commands/runScript/output/renderPlainOutput.mjs +1 -2
  29. package/src/cli/commands/runScript/output/sanitizeChunk.mjs +0 -1
  30. package/src/cli/createCli.mjs +2 -12
  31. package/src/cli/fatalErrorLogger.mjs +1 -2
  32. package/src/cli/globalOptions/globalOptions.mjs +2 -9
  33. package/src/cli/globalOptions/index.mjs +3 -2
  34. package/src/cli/index.d.ts +1025 -3
  35. package/src/cli/index.mjs +3 -1
  36. package/src/cli/middleware.mjs +1 -3
  37. package/src/config/index.mjs +3 -1
  38. package/src/config/public.d.ts +93 -10
  39. package/src/config/public.mjs +2 -6
  40. package/src/config/rootConfig/defineRootConfig.mjs +1 -2
  41. package/src/config/rootConfig/errors.mjs +1 -2
  42. package/src/config/rootConfig/index.mjs +2 -1
  43. package/src/config/rootConfig/loadRootConfig.mjs +1 -4
  44. package/src/config/rootConfig/rootConfig.mjs +1 -6
  45. package/src/config/rootConfig/rootConfigSchema.mjs +0 -1
  46. package/src/config/userEnvVars/index.mjs +3 -1
  47. package/src/config/userEnvVars/userEnvVars.mjs +3 -8
  48. package/src/config/util/ajvTypes.mjs +2 -1
  49. package/src/config/util/index.mjs +2 -1
  50. package/src/config/util/loadConfig.mjs +1 -6
  51. package/src/config/util/validateConfig.mjs +0 -1
  52. package/src/config/workspaceConfig/defineWorkspaceConfig.mjs +1 -2
  53. package/src/config/workspaceConfig/errors.mjs +1 -2
  54. package/src/config/workspaceConfig/index.mjs +2 -1
  55. package/src/config/workspaceConfig/loadWorkspaceConfig.mjs +2 -8
  56. package/src/config/workspaceConfig/workspaceConfig.mjs +1 -5
  57. package/src/config/workspaceConfig/workspaceConfigSchema.mjs +0 -1
  58. package/src/doctor/doctor.mjs +1 -5
  59. package/src/doctor/index.mjs +3 -1
  60. package/src/index.d.ts +458 -38
  61. package/src/index.mjs +4 -13
  62. package/src/internal/bun/bunLock.mjs +2 -4
  63. package/src/internal/bun/bunVersion.mjs +1 -3
  64. package/src/internal/bun/index.mjs +3 -1
  65. package/src/internal/bundledDeps/commander.mjs +3843 -0
  66. package/src/internal/bundledDeps/shellQuote.mjs +291 -0
  67. package/src/internal/core/error/error.mjs +0 -1
  68. package/src/internal/core/error/index.mjs +3 -1
  69. package/src/internal/core/index.mjs +3 -1
  70. package/src/internal/core/json/index.mjs +3 -1
  71. package/src/internal/core/json/json.mjs +3 -5
  72. package/src/internal/core/json/jsonc.mjs +0 -1
  73. package/src/internal/core/language/array/index.mjs +3 -1
  74. package/src/internal/core/language/array/optionalArray.mjs +0 -1
  75. package/src/internal/core/language/asyncIterable/asyncIterableQueue.mjs +0 -1
  76. package/src/internal/core/language/asyncIterable/index.mjs +3 -1
  77. package/src/internal/core/language/asyncIterable/mergeAsyncIterables.mjs +0 -1
  78. package/src/internal/core/language/events/typedEventTarget.mjs +0 -1
  79. package/src/internal/core/language/index.mjs +3 -1
  80. package/src/internal/core/language/regex/index.mjs +3 -1
  81. package/src/internal/core/language/regex/regex.mjs +0 -1
  82. package/src/internal/core/language/string/id.mjs +0 -1
  83. package/src/internal/core/language/string/index.mjs +3 -1
  84. package/src/internal/core/language/string/utf/eastAsianWidth.mjs +0 -1
  85. package/src/internal/core/language/string/utf/visibleLength.mjs +1 -2
  86. package/src/internal/core/language/types/index.mjs +3 -1
  87. package/src/internal/core/language/types/typeof.mjs +1 -3
  88. package/src/internal/core/language/types/types.mjs +3 -2
  89. package/src/internal/core/runtime/env.mjs +0 -1
  90. package/src/internal/core/runtime/index.mjs +3 -1
  91. package/src/internal/core/runtime/onExit.mjs +1 -2
  92. package/src/internal/core/runtime/os.mjs +1 -3
  93. package/src/internal/core/runtime/tempFile.mjs +1 -9
  94. package/src/internal/core/runtime/terminal.mjs +0 -1
  95. package/src/internal/generated/aiDocs/.gitkeep.mjs +1 -0
  96. package/src/internal/generated/aiDocs/docs.mjs +0 -1
  97. package/src/internal/logger/index.mjs +3 -1
  98. package/src/internal/logger/logger.mjs +4 -14
  99. package/src/internal/version.mjs +1 -2
  100. package/src/project/errors.mjs +1 -2
  101. package/src/project/implementations/fileSystemProject.mjs +3 -18
  102. package/src/project/implementations/memoryProject.mjs +1 -5
  103. package/src/project/implementations/projectBase.mjs +10 -19
  104. package/src/project/index.mjs +3 -1
  105. package/src/project/project.mjs +2 -1
  106. package/src/rslib-runtime.mjs +62 -0
  107. package/src/runScript/index.mjs +3 -1
  108. package/src/runScript/output/index.mjs +3 -1
  109. package/src/runScript/output/multiProcessOutput.mjs +1 -2
  110. package/src/runScript/output/outputStream.mjs +1 -1
  111. package/src/runScript/output/processOutput.mjs +1 -2
  112. package/src/runScript/parallel.mjs +4 -10
  113. package/src/runScript/recursion.mjs +1 -2
  114. package/src/runScript/runScript.mjs +1 -4
  115. package/src/runScript/runScripts.mjs +1 -6
  116. package/src/runScript/scriptCommand.mjs +1 -2
  117. package/src/runScript/scriptExecution.mjs +1 -3
  118. package/src/runScript/scriptRuntimeMetadata.mjs +38 -56
  119. package/src/runScript/scriptShellOption.mjs +5 -14
  120. package/src/runScript/subprocesses.mjs +1 -3
  121. package/src/workspaces/dependencyGraph/cycles.mjs +0 -1
  122. package/src/workspaces/dependencyGraph/index.mjs +3 -1
  123. package/src/workspaces/dependencyGraph/resolveDependencies.mjs +1 -2
  124. package/src/workspaces/dependencyGraph/validateDependencyRules.mjs +1 -3
  125. package/src/workspaces/errors.mjs +1 -2
  126. package/src/workspaces/findWorkspaces.mjs +1 -11
  127. package/src/workspaces/index.mjs +3 -1
  128. package/src/workspaces/packageJson.mjs +2 -7
  129. package/src/workspaces/workspace.mjs +2 -1
  130. package/src/workspaces/workspacePattern.mjs +4 -4
  131. package/src/ai/mcp/bwMcpServer.d.ts +0 -4
  132. package/src/ai/mcp/core/index.d.ts +0 -3
  133. package/src/ai/mcp/core/server.d.ts +0 -14
  134. package/src/ai/mcp/core/transport.d.ts +0 -12
  135. package/src/ai/mcp/core/types.d.ts +0 -104
  136. package/src/ai/mcp/index.d.ts +0 -2
  137. package/src/ai/mcp/resources.d.ts +0 -6
  138. package/src/ai/mcp/tools.d.ts +0 -6
  139. package/src/cli/commands/commandHandlerUtils.d.ts +0 -51
  140. package/src/cli/commands/commands.d.ts +0 -10
  141. package/src/cli/commands/commandsConfig.d.ts +0 -436
  142. package/src/cli/commands/handleSimpleCommands.d.ts +0 -21
  143. package/src/cli/commands/index.d.ts +0 -4
  144. package/src/cli/commands/mcp.d.ts +0 -3
  145. package/src/cli/commands/runScript/handleRunScript.d.ts +0 -3
  146. package/src/cli/commands/runScript/index.d.ts +0 -2
  147. package/src/cli/commands/runScript/output/index.d.ts +0 -1
  148. package/src/cli/commands/runScript/output/outputStyle.d.ts +0 -9
  149. package/src/cli/commands/runScript/output/renderGroupedOutput.d.ts +0 -75
  150. package/src/cli/commands/runScript/output/renderPlainOutput.d.ts +0 -24
  151. package/src/cli/commands/runScript/output/sanitizeChunk.d.ts +0 -4
  152. package/src/cli/createCli.d.ts +0 -26
  153. package/src/cli/fatalErrorLogger.d.ts +0 -1
  154. package/src/cli/globalOptions/globalOptions.d.ts +0 -43
  155. package/src/cli/globalOptions/globalOptionsConfig.d.ts +0 -52
  156. package/src/cli/globalOptions/globalOptionsConfig.mjs +0 -43
  157. package/src/cli/globalOptions/index.d.ts +0 -2
  158. package/src/cli/middleware.d.ts +0 -83
  159. package/src/config/index.d.ts +0 -3
  160. package/src/config/rootConfig/defineRootConfig.d.ts +0 -4
  161. package/src/config/rootConfig/errors.d.ts +0 -1
  162. package/src/config/rootConfig/index.d.ts +0 -5
  163. package/src/config/rootConfig/loadRootConfig.d.ts +0 -3
  164. package/src/config/rootConfig/rootConfig.d.ts +0 -25
  165. package/src/config/rootConfig/rootConfigLocation.d.ts +0 -2
  166. package/src/config/rootConfig/rootConfigLocation.mjs +0 -5
  167. package/src/config/rootConfig/rootConfigSchema.d.ts +0 -21
  168. package/src/config/userEnvVars/index.d.ts +0 -1
  169. package/src/config/userEnvVars/userEnvVars.d.ts +0 -13
  170. package/src/config/util/ajvTypes.d.ts +0 -10
  171. package/src/config/util/configLocation.d.ts +0 -18
  172. package/src/config/util/index.d.ts +0 -4
  173. package/src/config/util/loadConfig.d.ts +0 -18
  174. package/src/config/util/validateConfig.d.ts +0 -8
  175. package/src/config/workspaceConfig/defineWorkspaceConfig.d.ts +0 -7
  176. package/src/config/workspaceConfig/errors.d.ts +0 -1
  177. package/src/config/workspaceConfig/index.d.ts +0 -5
  178. package/src/config/workspaceConfig/loadWorkspaceConfig.d.ts +0 -3
  179. package/src/config/workspaceConfig/workspaceConfig.d.ts +0 -56
  180. package/src/config/workspaceConfig/workspaceConfigLocation.d.ts +0 -2
  181. package/src/config/workspaceConfig/workspaceConfigLocation.mjs +0 -5
  182. package/src/config/workspaceConfig/workspaceConfigSchema.d.ts +0 -56
  183. package/src/doctor/doctor.d.ts +0 -35
  184. package/src/doctor/index.d.ts +0 -1
  185. package/src/internal/bun/bunLock.d.ts +0 -20
  186. package/src/internal/bun/bunVersion.d.ts +0 -21
  187. package/src/internal/bun/index.d.ts +0 -2
  188. package/src/internal/core/error/error.d.ts +0 -13
  189. package/src/internal/core/error/index.d.ts +0 -1
  190. package/src/internal/core/index.d.ts +0 -4
  191. package/src/internal/core/json/index.d.ts +0 -2
  192. package/src/internal/core/json/json.d.ts +0 -49
  193. package/src/internal/core/json/jsonc.d.ts +0 -9
  194. package/src/internal/core/language/array/index.d.ts +0 -1
  195. package/src/internal/core/language/array/optionalArray.d.ts +0 -15
  196. package/src/internal/core/language/asyncIterable/asyncIterableQueue.d.ts +0 -16
  197. package/src/internal/core/language/asyncIterable/index.d.ts +0 -2
  198. package/src/internal/core/language/asyncIterable/mergeAsyncIterables.d.ts +0 -5
  199. package/src/internal/core/language/events/typedEventTarget.d.ts +0 -50
  200. package/src/internal/core/language/index.d.ts +0 -5
  201. package/src/internal/core/language/regex/index.d.ts +0 -1
  202. package/src/internal/core/language/regex/regex.d.ts +0 -3
  203. package/src/internal/core/language/string/id.d.ts +0 -1
  204. package/src/internal/core/language/string/index.d.ts +0 -1
  205. package/src/internal/core/language/string/utf/eastAsianWidth.d.ts +0 -16
  206. package/src/internal/core/language/string/utf/visibleLength.d.ts +0 -5
  207. package/src/internal/core/language/types/index.d.ts +0 -2
  208. package/src/internal/core/language/types/typeof.d.ts +0 -102
  209. package/src/internal/core/language/types/types.d.ts +0 -19
  210. package/src/internal/core/runtime/env.d.ts +0 -6
  211. package/src/internal/core/runtime/index.d.ts +0 -5
  212. package/src/internal/core/runtime/onExit.d.ts +0 -4
  213. package/src/internal/core/runtime/os.d.ts +0 -6
  214. package/src/internal/core/runtime/tempFile.d.ts +0 -20
  215. package/src/internal/core/runtime/terminal.d.ts +0 -1
  216. package/src/internal/docs/apiQuickstart.d.ts +0 -3
  217. package/src/internal/docs/apiQuickstart.mjs +0 -132
  218. package/src/internal/docs/cliQuickstart.d.ts +0 -2
  219. package/src/internal/docs/cliQuickstart.mjs +0 -86
  220. package/src/internal/docs/index.d.ts +0 -2
  221. package/src/internal/docs/index.mjs +0 -2
  222. package/src/internal/generated/aiDocs/docs.d.ts +0 -10
  223. package/src/internal/logger/index.d.ts +0 -1
  224. package/src/internal/logger/logger.d.ts +0 -45
  225. package/src/internal/version.d.ts +0 -1
  226. package/src/project/errors.d.ts +0 -5
  227. package/src/project/implementations/fileSystemProject.d.ts +0 -148
  228. package/src/project/implementations/memoryProject.d.ts +0 -41
  229. package/src/project/implementations/projectBase.d.ts +0 -37
  230. package/src/project/index.d.ts +0 -5
  231. package/src/project/project.d.ts +0 -79
  232. package/src/runScript/index.d.ts +0 -7
  233. package/src/runScript/output/index.d.ts +0 -3
  234. package/src/runScript/output/multiProcessOutput.d.ts +0 -14
  235. package/src/runScript/output/outputStream.d.ts +0 -1
  236. package/src/runScript/output/processOutput.d.ts +0 -33
  237. package/src/runScript/parallel.d.ts +0 -24
  238. package/src/runScript/recursion.d.ts +0 -4
  239. package/src/runScript/runScript.d.ts +0 -45
  240. package/src/runScript/runScripts.d.ts +0 -65
  241. package/src/runScript/scriptCommand.d.ts +0 -33
  242. package/src/runScript/scriptExecution.d.ts +0 -9
  243. package/src/runScript/scriptRuntimeMetadata.d.ts +0 -73
  244. package/src/runScript/scriptShellOption.d.ts +0 -8
  245. package/src/runScript/subprocesses.d.ts +0 -11
  246. package/src/workspaces/dependencyGraph/cycles.d.ts +0 -9
  247. package/src/workspaces/dependencyGraph/index.d.ts +0 -3
  248. package/src/workspaces/dependencyGraph/resolveDependencies.d.ts +0 -18
  249. package/src/workspaces/dependencyGraph/validateDependencyRules.d.ts +0 -7
  250. package/src/workspaces/errors.d.ts +0 -14
  251. package/src/workspaces/findWorkspaces.d.ts +0 -24
  252. package/src/workspaces/index.d.ts +0 -4
  253. package/src/workspaces/packageJson.d.ts +0 -31
  254. package/src/workspaces/workspace.d.ts +0 -21
  255. package/src/workspaces/workspacePattern.d.ts +0 -22
package/bin/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bun-workspaces",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "A monorepo management tool for Bun, with a CLI and API to enhance Bun's native workspaces.",
5
5
  "license": "MIT",
6
6
  "exports": {
@@ -43,9 +43,5 @@
43
43
  "build": "1.3.5",
44
44
  "libraryConsumer": "^1.2.0"
45
45
  }
46
- },
47
- "dependencies": {
48
- "commander": "^12.1.0",
49
- "shell-quote": "^1.8.3"
50
46
  }
51
47
  }
package/src/1108.mjs ADDED
@@ -0,0 +1,30 @@
1
+ const SCRIPT_RUNTIME_METADATA_CONFIG = {
2
+ projectPath: {
3
+ inlineName: "<projectPath>",
4
+ envVarName: "BW_PROJECT_PATH",
5
+ },
6
+ projectName: {
7
+ inlineName: "<projectName>",
8
+ envVarName: "BW_PROJECT_NAME",
9
+ },
10
+ workspacePath: {
11
+ inlineName: "<workspacePath>",
12
+ envVarName: "BW_WORKSPACE_PATH",
13
+ },
14
+ workspaceRelativePath: {
15
+ inlineName: "<workspaceRelativePath>",
16
+ envVarName: "BW_WORKSPACE_RELATIVE_PATH",
17
+ },
18
+ scriptName: {
19
+ inlineName: "<scriptName>",
20
+ envVarName: "BW_SCRIPT_NAME",
21
+ },
22
+ workspaceName: {
23
+ inlineName: "<workspaceName>",
24
+ envVarName: "BW_WORKSPACE_NAME",
25
+ },
26
+ };
27
+ const getScriptRuntimeMetadataConfig = (key) =>
28
+ SCRIPT_RUNTIME_METADATA_CONFIG[key];
29
+
30
+ export { getScriptRuntimeMetadataConfig };
@@ -1,9 +1,8 @@
1
- import { SCRIPT_SHELL_OPTIONS } from "../../runScript/scriptShellOption.mjs";
2
- import { OUTPUT_STYLE_VALUES } from "./runScript/output/outputStyle.mjs"; // CONCATENATED MODULE: external "../../runScript/scriptShellOption.mjs"
3
- // CONCATENATED MODULE: external "./runScript/output/outputStyle.mjs"
4
- // CONCATENATED MODULE: ./src/cli/commands/commandsConfig.ts
1
+ import { OUTPUT_STYLE_VALUES, SCRIPT_SHELL_OPTIONS } from "./4427.mjs";
2
+ import { LOG_LEVELS } from "./8126.mjs";
5
3
 
6
4
  const JSON_FLAGS = ["-j", "--json"];
5
+ const PRETTY_FLAGS = ["-p", "--pretty"];
7
6
  const CLI_COMMANDS_CONFIG = {
8
7
  doctor: {
9
8
  command: "doctor",
@@ -16,7 +15,7 @@ const CLI_COMMANDS_CONFIG = {
16
15
  description: "Output as JSON",
17
16
  },
18
17
  pretty: {
19
- flags: ["-p", "--pretty"],
18
+ flags: PRETTY_FLAGS,
20
19
  description: "Pretty print JSON",
21
20
  },
22
21
  },
@@ -40,7 +39,7 @@ const CLI_COMMANDS_CONFIG = {
40
39
  description: "Output as JSON",
41
40
  },
42
41
  pretty: {
43
- flags: ["-p", "--pretty"],
42
+ flags: PRETTY_FLAGS,
44
43
  description: "Pretty print JSON",
45
44
  },
46
45
  },
@@ -60,7 +59,7 @@ const CLI_COMMANDS_CONFIG = {
60
59
  description: "Output as JSON",
61
60
  },
62
61
  pretty: {
63
- flags: ["-p", "--pretty"],
62
+ flags: PRETTY_FLAGS,
64
63
  description: "Pretty print JSON",
65
64
  },
66
65
  },
@@ -76,7 +75,7 @@ const CLI_COMMANDS_CONFIG = {
76
75
  description: "Output as JSON",
77
76
  },
78
77
  pretty: {
79
- flags: ["-p", "--pretty"],
78
+ flags: PRETTY_FLAGS,
80
79
  description: "Pretty print JSON",
81
80
  },
82
81
  },
@@ -96,7 +95,7 @@ const CLI_COMMANDS_CONFIG = {
96
95
  description: "Output as JSON",
97
96
  },
98
97
  pretty: {
99
- flags: ["-p", "--pretty"],
98
+ flags: PRETTY_FLAGS,
100
99
  description: "Pretty print JSON",
101
100
  },
102
101
  },
@@ -116,7 +115,7 @@ const CLI_COMMANDS_CONFIG = {
116
115
  description: "Output as JSON",
117
116
  },
118
117
  pretty: {
119
- flags: ["-p", "--pretty"],
118
+ flags: PRETTY_FLAGS,
120
119
  description: "Pretty print JSON",
121
120
  },
122
121
  },
@@ -132,7 +131,7 @@ const CLI_COMMANDS_CONFIG = {
132
131
  description: "Output as JSON",
133
132
  },
134
133
  pretty: {
135
- flags: ["-p", "--pretty"],
134
+ flags: PRETTY_FLAGS,
136
135
  description: "Pretty print JSON",
137
136
  },
138
137
  },
@@ -217,9 +216,51 @@ const CLI_COMMANDS_CONFIG = {
217
216
  const getCliCommandConfig = (commandName) => CLI_COMMANDS_CONFIG[commandName];
218
217
  const getCliCommandNames = () => Object.keys(CLI_COMMANDS_CONFIG);
219
218
 
219
+ const CLI_GLOBAL_OPTIONS_CONFIG = {
220
+ logLevel: {
221
+ mainOption: "--log-level",
222
+ shortOption: "-l",
223
+ description: "Log levels",
224
+ defaultValue: "info",
225
+ values: [...LOG_LEVELS, "silent"],
226
+ param: "level",
227
+ },
228
+ cwd: {
229
+ mainOption: "--cwd",
230
+ shortOption: "-d",
231
+ description: "Working directory",
232
+ defaultValue: "",
233
+ values: null,
234
+ param: "path",
235
+ },
236
+ includeRoot: {
237
+ mainOption: "--include-root",
238
+ shortOption: "-r",
239
+ description: "Include the root workspace as a normal workspace",
240
+ defaultValue: "",
241
+ values: null,
242
+ param: "",
243
+ },
244
+ workspaceRoot: {
245
+ mainOption: "--workspace-root",
246
+ shortOption: "-w",
247
+ description:
248
+ "Run from the project root above the current working directory",
249
+ defaultValue: "",
250
+ values: null,
251
+ param: "",
252
+ },
253
+ };
254
+ const getCliGlobalOptionConfig = (optionName) =>
255
+ CLI_GLOBAL_OPTIONS_CONFIG[optionName];
256
+ const getCliGlobalOptionNames = () => Object.keys(CLI_GLOBAL_OPTIONS_CONFIG);
257
+
220
258
  export {
221
259
  CLI_COMMANDS_CONFIG,
222
260
  JSON_FLAGS,
261
+ PRETTY_FLAGS,
223
262
  getCliCommandConfig,
224
263
  getCliCommandNames,
264
+ getCliGlobalOptionConfig,
265
+ getCliGlobalOptionNames,
225
266
  };
package/src/4427.mjs ADDED
@@ -0,0 +1,9 @@
1
+ const SCRIPT_SHELL_OPTIONS = ["bun", "system"];
2
+ const OUTPUT_STYLE_VALUES = ["grouped", "prefixed", "plain", "none"];
3
+ const PARALLEL_MAX_VALUES = /* unused pure expression or super */ null && [
4
+ "auto",
5
+ "unbounded",
6
+ "default",
7
+ ];
8
+
9
+ export { OUTPUT_STYLE_VALUES, SCRIPT_SHELL_OPTIONS };
package/src/5166.mjs ADDED
@@ -0,0 +1,8 @@
1
+ const USER_ENV_VARS = {
2
+ parallelMaxDefault: "BW_PARALLEL_MAX_DEFAULT",
3
+ scriptShellDefault: "BW_SHELL_DEFAULT",
4
+ includeRootWorkspaceDefault: "BW_INCLUDE_ROOT_WORKSPACE_DEFAULT",
5
+ };
6
+ const getUserEnvVarName = (key) => USER_ENV_VARS[key];
7
+
8
+ export { USER_ENV_VARS, getUserEnvVarName };
package/src/8126.mjs ADDED
@@ -0,0 +1,4 @@
1
+ const LOG_LEVELS = ["debug", "info", "warn", "error"];
2
+ const getLogLevelNumber = (level) => LOG_LEVELS.indexOf(level);
3
+
4
+ export { LOG_LEVELS, getLogLevelNumber };
package/src/8257.mjs ADDED
@@ -0,0 +1,4 @@
1
+ const isJSONObject = (value) =>
2
+ typeof value === "object" && value !== null && value?.constructor === Object;
3
+
4
+ export { isJSONObject };
@@ -1,4 +1,7 @@
1
- // CONCATENATED MODULE: ./src/config/util/configLocation.ts
1
+ const ROOT_CONFIG_FILE_NAME = "bw.root";
2
+ const ROOT_CONFIG_PACKAGE_JSON_KEY = "bw-root";
3
+ const WORKSPACE_CONFIG_FILE_NAME = "bw.workspace";
4
+ const WORKSPACE_CONFIG_PACKAGE_JSON_KEY = "bw";
2
5
  const CONFIG_LOCATION_TYPES = [
3
6
  "tsFile",
4
7
  "jsFile",
@@ -16,4 +19,10 @@ const CONFIG_LOCATION_PATHS = {
16
19
  const createConfigLocationPath = (locationType, name, packageJsonKey) =>
17
20
  CONFIG_LOCATION_PATHS[locationType](name, packageJsonKey);
18
21
 
19
- export { CONFIG_LOCATION_TYPES, createConfigLocationPath };
22
+ export {
23
+ CONFIG_LOCATION_TYPES,
24
+ ROOT_CONFIG_FILE_NAME,
25
+ ROOT_CONFIG_PACKAGE_JSON_KEY,
26
+ WORKSPACE_CONFIG_FILE_NAME,
27
+ createConfigLocationPath,
28
+ };
@@ -1,15 +1,219 @@
1
1
  import package_0 from "../../../package.json";
2
- import { API_QUICKSTART } from "../../internal/docs/apiQuickstart.mjs";
3
- import { CLI_QUICKSTART } from "../../internal/docs/cliQuickstart.mjs";
4
2
  import { createMcpServer } from "./core/index.mjs";
5
3
  import { registerBwResources } from "./resources.mjs";
6
- import { registerBwTools } from "./tools.mjs"; // CONCATENATED MODULE: external "../../../package.json"
7
- // CONCATENATED MODULE: external "../../internal/docs/apiQuickstart.mjs"
8
- // CONCATENATED MODULE: external "../../internal/docs/cliQuickstart.mjs"
9
- // CONCATENATED MODULE: external "./core/index.mjs"
10
- // CONCATENATED MODULE: external "./resources.mjs"
11
- // CONCATENATED MODULE: external "./tools.mjs"
12
- // CONCATENATED MODULE: ./src/ai/mcp/bwMcpServer.ts
4
+ import { registerBwTools } from "./tools.mjs";
5
+
6
+ const CLI_QUICKSTART = `
7
+ # You can add this to .bashrc, .zshrc, or similar.
8
+ # You can also invoke "bw" in your root package.json scripts.
9
+ alias bw="bunx bun-workspaces"
10
+
11
+ # List all workspaces in your project
12
+ bw list-workspaces
13
+
14
+ # ls is an alias for list-workspaces
15
+ bw ls --json --pretty # Output as formatted JSON
16
+
17
+ # Get info about a workspace
18
+ bw workspace-info my-workspace
19
+ bw info my-workspace --json --pretty # info is alias for workspace-info
20
+
21
+ # Get info about a script, such as the workspaces that have it
22
+ bw script-info my-script
23
+
24
+ # Run the lint script for all workspaces
25
+ # that have it in their package.json "scripts" field
26
+ bw run-script lint
27
+
28
+ # run is an alias for run-script
29
+ bw run lint my-workspace # Run for a single workspace
30
+ bw run lint my-workspace-a my-workspace-b # Run for multiple workspaces
31
+ bw run lint my-alias-a my-alias-b # Run by alias (set by optional config)
32
+
33
+ # A workspace's script will wait until any workspaces it depends on have completed
34
+ # Similar to Bun's --filter behavior
35
+ bw run lint --dep-order
36
+
37
+ # Continue running scripts even if a dependency fails
38
+ bw run lint --dep-order --ignore-dep-failure
39
+
40
+ bw run lint "my-workspace-*" # Run for matching workspace names
41
+ bw run lint "alias:my-alias-*" "path:my-glob/**/*" "tag:my-tag" # Use matching specifiers
42
+ bw run lint "*" "not:path:my-path/*" # Run for all workspaces not in my-path/
43
+
44
+ bw run lint --args="--my-appended-args" # Add args to each script call
45
+ bw run lint --args="--my-arg=<workspaceName>" # Use the workspace name in args
46
+
47
+ bw run "bun build" --inline # Run an inline command via the Bun shell
48
+
49
+ # Scripts run in parallel by default
50
+ bw run lint --parallel=false # Run in series
51
+ bw run lint --parallel=2 # Run in parallel with a max of 2 concurrent scripts
52
+ bw run lint --parallel=auto # Default, based on number of available logical CPUs
53
+ bw run lint --parallel=50% # Run in parallel with a max of 50% of the "auto" limit
54
+
55
+ # Use the grouped output style (default when on a TTY)
56
+ bw run my-script --output-style=grouped
57
+
58
+ # Set the max preview lines for script output in grouped output style
59
+ bw run my-script --output-style=grouped --grouped-lines=auto
60
+ bw run my-script --output-style=grouped --grouped-lines=10
61
+
62
+ # Use simple script output with workspace prefixes (default when not on a TTY)
63
+ bw run my-script --output-style=prefixed
64
+
65
+ # Use the plain output style (no workspace prefixes)
66
+ bw run my-script --output-style=plain
67
+
68
+ # Silence all output of the run command
69
+ bw --log-level=silent run my-script --output-style=none
70
+
71
+ # Show usage (you can pass --help to any command)
72
+ bw help
73
+ bw --help
74
+
75
+ # Show version
76
+ bw --version
77
+
78
+ # Pass --cwd to any command
79
+ bw --cwd=/path/to/your/project ls
80
+ bw --cwd=/path/to/your/project run my-script
81
+
82
+ # Pass --log-level to any command (debug, info, warn, error, or silent)
83
+ bw --log-level=debug ls
84
+ `.trim();
85
+ const INLINE_SCRIPT_EXAMPLE =
86
+ /* unused pure expression or super */ null &&
87
+ `
88
+ # Run an inline command from the workspace directory
89
+ bw run "bun run build" --inline
90
+ `.trim();
91
+
92
+ const RUN_WORKSPACE_SCRIPT_EXAMPLE = `
93
+ const { output, exit } = project.runWorkspaceScript({
94
+ workspaceNameOrAlias: "my-workspace",
95
+ script: "my-script",
96
+
97
+ // Optional. Arguments to add to the command
98
+ // Can be a string or an array of strings
99
+ // If string, the argv will be parsed POSIX-style
100
+ args: ["--my", "--appended", "--args"],
101
+
102
+ // Optional. Whether to ignore all output from the script.
103
+ // This saves memory when you don't need script output.
104
+ ignoreOutput: false,
105
+ });
106
+
107
+ // Get a stream of the script subprocess's output
108
+ for await (const { chunk, metadata } of output.text()) {
109
+ // console.log(chunk); // The output chunk's content (string)
110
+ // console.log(metadata.streamName); // The output stream, "stdout" or "stderr"
111
+ // console.log(metadata.workspace); // The target Workspace
112
+ }
113
+
114
+ // Get data about the script execution after it exits
115
+ const exitResult = await exit;
116
+
117
+ // exitResult.exitCode // The exit code (number)
118
+ // exitResult.signal // The exit signal (string), or null
119
+ // exitResult.success // true if exit code was 0
120
+ // exitResult.startTimeISO // Start time (string)
121
+ // exitResult.endTimeISO // End time (string)
122
+ // exitResult.durationMs // Duration in milliseconds (number)
123
+ // exitResult.metadata.workspace // The target workspace (Workspace)
124
+
125
+ `.trim();
126
+ const RUN_SCRIPT_ACROSS_WORKSPACES_EXAMPLE = `
127
+
128
+ const { output, summary } = project.runScriptAcrossWorkspaces({
129
+ // Optional. This will run in all matching workspaces that have my-script
130
+ // Accepts same values as the CLI run-script command's workspace patterns
131
+ // When not provided, all workspaces that have the script will be used.
132
+ workspacePatterns: ["my-workspace", "my-name-pattern-*"],
133
+
134
+ // Required. The package.json "scripts" field name to run
135
+ script: "my-script",
136
+
137
+ // Optional. Arguments to add to the command (same as for runWorkspaceScript)
138
+ args: ["--my", "--appended", "--args"],
139
+
140
+ // Optional. Whether to run the scripts in parallel (default: true)
141
+ parallel: true,
142
+
143
+ // Optional. When true, a workspace's script will wait
144
+ // until any workspaces it depends on have completed
145
+ dependencyOrder: false,
146
+
147
+ // Optional. When true and dependencyOrder is true,
148
+ // continue running scripts even if a dependency fails
149
+ ignoreDependencyFailure: false,
150
+
151
+ // Optional. Whether to ignore all output from the scripts.
152
+ // This saves memory when you don't need script output.
153
+ ignoreOutput: false,
154
+
155
+ // Optional, callback when script starts, skips, or exits
156
+ onScriptEvent: (event, { workspace, exitResult }) => {
157
+ // event: "start", "skip", "exit"
158
+ }
159
+ });
160
+
161
+ // Get a stream of script output
162
+ for await (const { chunk, metadata } of output.text()) {
163
+ // console.log(chunk); // the output chunk's content (string)
164
+ // console.log(metadata.streamName); // "stdout" or "stderr"
165
+ // console.log(metadata.workspace); // the Workspace that the output came from
166
+ }
167
+
168
+ // Get final summary data and script exit details after all scripts have completed
169
+ const summaryResult = await summary;
170
+
171
+ // summaryResult.totalCount // Total number of scripts
172
+ // summaryResult.allSuccess // true if all scripts succeeded
173
+ // summaryResult.successCount // Number of scripts that succeeded
174
+ // summaryResult.failureCount // Number of scripts that failed
175
+ // summaryResult.startTimeISO // Start time (string)
176
+ // summaryResult.endTimeISO // End time (string)
177
+ // summaryResult.durationMs // Total duration in milliseconds (number)
178
+
179
+ // The exit details of each workspace script
180
+ for (const exitResult of summaryResult.scriptResults) {
181
+ // exitResult.exitCode // The exit code (number)
182
+ // exitResult.signal // The exit signal (string), or null
183
+ // exitResult.success // true if exit code was 0
184
+ // exitResult.startTimeISO // Start time (ISO string)
185
+ // exitResult.endTimeISO // End time (ISO string)
186
+ // exitResult.durationMs // Duration in milliseconds (number)
187
+ // exitResult.metadata.workspace // The target workspace (Workspace)
188
+ }
189
+ `.trim();
190
+ const API_QUICKSTART = `
191
+ import { createFileSystemProject } from "bun-workspaces";
192
+
193
+ // A Project contains the core functionality of bun-workspaces.
194
+ // Below defaults to process.cwd() for the project root directory
195
+ // Pass { rootDirectory: "path/to/your/project" } to use a different root directory
196
+ const project = createFileSystemProject();
197
+
198
+ // A Workspace that matches the name or alias "my-workspace"
199
+ const myWorkspace = project.findWorkspaceByNameOrAlias("my-workspace");
200
+
201
+ // Array of workspaces whose names match the wildcard pattern
202
+ const wildcardWorkspaces = project.findWorkspacesByPattern("my-workspace-*");
203
+
204
+ // Array of workspaces that have "my-script" in their package.json "scripts"
205
+ const workspacesWithScript = project.listWorkspacesWithScript("my-script");
206
+
207
+ // Run a script in a workspace
208
+ const runSingleScript = async () => {
209
+ ${RUN_WORKSPACE_SCRIPT_EXAMPLE.split("\n").join("\n ")}
210
+ }
211
+
212
+ // Run a script in all workspaces that have it in their package.json "scripts" field
213
+ const runManyScripts = async () => {
214
+ ${RUN_SCRIPT_ACROSS_WORKSPACES_EXAMPLE.split("\n").join("\n ")}
215
+ }
216
+ `.trim();
13
217
 
14
218
  const SERVER_INSTRUCTIONS = `
15
219
  bun-workspaces MCP server: tools to query Bun monorepo workspace metadata and documentation resources for the bun-workspaces CLI and TypeScript API.
@@ -1,3 +1,5 @@
1
1
  export * from "./types.mjs";
2
2
  export * from "./transport.mjs";
3
- export * from "./server.mjs"; // CONCATENATED MODULE: ./src/ai/mcp/core/index.ts
3
+ export * from "./server.mjs";
4
+
5
+ export {};
@@ -1,7 +1,5 @@
1
1
  import { createStdioTransport } from "./transport.mjs";
2
- import { JSON_RPC_ERROR_CODES, MCP_PROTOCOL_VERSION } from "./types.mjs"; // CONCATENATED MODULE: external "./transport.mjs"
3
- // CONCATENATED MODULE: external "./types.mjs"
4
- // CONCATENATED MODULE: ./src/ai/mcp/core/server.ts
2
+ import { JSON_RPC_ERROR_CODES, MCP_PROTOCOL_VERSION } from "./types.mjs";
5
3
 
6
4
  const createMcpServer = (info) => {
7
5
  const tools = new Map();
@@ -1,5 +1,4 @@
1
- import readline from "readline"; // CONCATENATED MODULE: external "readline"
2
- // CONCATENATED MODULE: ./src/ai/mcp/core/transport.ts
1
+ import readline from "readline";
3
2
 
4
3
  const createMemoryTransport = (messages) => {
5
4
  const sent = [];
@@ -1,4 +1,3 @@
1
- // CONCATENATED MODULE: ./src/ai/mcp/core/types.ts
2
1
  const JSON_RPC_ERROR_CODES = {
3
2
  parseError: -32700,
4
3
  invalidRequest: -32600,
@@ -1,2 +1,4 @@
1
1
  export * from "./core/index.mjs";
2
- export * from "./bwMcpServer.mjs"; // CONCATENATED MODULE: ./src/ai/mcp/index.ts
2
+ export * from "./bwMcpServer.mjs";
3
+
4
+ export {};
@@ -4,8 +4,7 @@ import {
4
4
  DOC_CONCEPTS,
5
5
  DOC_CONFIG,
6
6
  DOC_OVERVIEW,
7
- } from "../../internal/generated/aiDocs/docs.mjs"; // CONCATENATED MODULE: external "../../internal/generated/aiDocs/docs.mjs"
8
- // CONCATENATED MODULE: ./src/ai/mcp/resources.ts
7
+ } from "../../internal/generated/aiDocs/docs.mjs";
9
8
 
10
9
  const textResource = (uri, text) => ({
11
10
  contents: [
@@ -1,9 +1,5 @@
1
1
  import { getDoctorInfo } from "../../doctor/index.mjs";
2
2
  import { BUN_WORKSPACES_VERSION } from "../../internal/version.mjs";
3
- import { ROOT_WORKSPACE_SELECTOR } from "../../project/implementations/projectBase.mjs"; // CONCATENATED MODULE: external "../../doctor/index.mjs"
4
- // CONCATENATED MODULE: external "../../internal/version.mjs"
5
- // CONCATENATED MODULE: external "../../project/implementations/projectBase.mjs"
6
- // CONCATENATED MODULE: ./src/ai/mcp/tools.ts
7
3
 
8
4
  const textResult = (data) => ({
9
5
  content: [
@@ -83,7 +79,7 @@ const registerBwTools = (server, project) => {
83
79
  ({ nameOrAlias }) => {
84
80
  const name = nameOrAlias;
85
81
  const workspace =
86
- name === ROOT_WORKSPACE_SELECTOR
82
+ name === /* inlined export .ROOT_WORKSPACE_SELECTOR */ "@root"
87
83
  ? project.rootWorkspace
88
84
  : project.findWorkspaceByNameOrAlias(name);
89
85
  if (!workspace) {
@@ -1,11 +1,7 @@
1
- import { Option } from "commander";
1
+ import { Option } from "../../internal/bundledDeps/commander.mjs";
2
2
  import { BunWorkspacesError } from "../../internal/core/error/index.mjs";
3
3
  import { createLogger, logger } from "../../internal/logger/index.mjs";
4
- import { getCliCommandConfig } from "./commandsConfig.mjs"; // CONCATENATED MODULE: external "commander"
5
- // CONCATENATED MODULE: external "../../internal/core/error/index.mjs"
6
- // CONCATENATED MODULE: external "../../internal/logger/index.mjs"
7
- // CONCATENATED MODULE: external "./commandsConfig.mjs"
8
- // CONCATENATED MODULE: ./src/cli/commands/commandHandlerUtils.ts
4
+ import { getCliCommandConfig } from "../../2392.mjs";
9
5
 
10
6
  /** Splits workspace patterns by whitespace, but allows escaping spaces via backslash */ const splitWorkspacePatterns =
11
7
  (workspacePatterns) =>
@@ -8,10 +8,7 @@ import {
8
8
  workspaceInfo,
9
9
  } from "./handleSimpleCommands.mjs";
10
10
  import { mcpServer } from "./mcp.mjs";
11
- import { runScript } from "./runScript/index.mjs"; // CONCATENATED MODULE: external "./handleSimpleCommands.mjs"
12
- // CONCATENATED MODULE: external "./mcp.mjs"
13
- // CONCATENATED MODULE: external "./runScript/index.mjs"
14
- // CONCATENATED MODULE: ./src/cli/commands/commands.ts
11
+ import { runScript } from "./runScript/index.mjs";
15
12
 
16
13
  const defineGlobalCommands = (context) => {
17
14
  doctor(context);
@@ -1,7 +1,5 @@
1
1
  import { getDoctorInfo } from "../../doctor/index.mjs";
2
- import { isJSONObject } from "../../internal/core/index.mjs";
3
2
  import { logger } from "../../internal/logger/index.mjs";
4
- import { ROOT_WORKSPACE_SELECTOR } from "../../project/index.mjs";
5
3
  import {
6
4
  commandOutputLogger,
7
5
  createJsonLines,
@@ -10,12 +8,8 @@ import {
10
8
  handleGlobalCommand,
11
9
  handleProjectCommand,
12
10
  splitWorkspacePatterns,
13
- } from "./commandHandlerUtils.mjs"; // CONCATENATED MODULE: external "../../doctor/index.mjs"
14
- // CONCATENATED MODULE: external "../../internal/core/index.mjs"
15
- // CONCATENATED MODULE: external "../../internal/logger/index.mjs"
16
- // CONCATENATED MODULE: external "../../project/index.mjs"
17
- // CONCATENATED MODULE: external "./commandHandlerUtils.mjs"
18
- // CONCATENATED MODULE: ./src/cli/commands/handleSimpleCommands.ts
11
+ } from "./commandHandlerUtils.mjs";
12
+ import { isJSONObject } from "../../8257.mjs";
19
13
 
20
14
  const doctor = handleGlobalCommand("doctor", (_, options) => {
21
15
  logger.debug(`Options: ${JSON.stringify(options)}`);
@@ -128,7 +122,7 @@ const workspaceInfo = handleProjectCommand(
128
122
  ({ project }, workspaceName, options) => {
129
123
  logger.debug(`Options: ${JSON.stringify(options)}`);
130
124
  const workspace =
131
- workspaceName === ROOT_WORKSPACE_SELECTOR
125
+ workspaceName === /* inlined export .ROOT_WORKSPACE_SELECTOR */ "@root"
132
126
  ? project.rootWorkspace
133
127
  : project.findWorkspaceByNameOrAlias(workspaceName);
134
128
  if (!workspace) {
@@ -230,10 +224,10 @@ const handleSimpleCommands_tagInfo = handleProjectCommand(
230
224
 
231
225
  export {
232
226
  doctor,
227
+ handleSimpleCommands_tagInfo as tagInfo,
233
228
  listScripts,
234
229
  listTags,
235
230
  listWorkspaces,
236
231
  scriptInfo,
237
- handleSimpleCommands_tagInfo as tagInfo,
238
232
  workspaceInfo,
239
233
  };
@@ -1,4 +1,13 @@
1
1
  export * from "./commands.mjs";
2
- export * from "./commandsConfig.mjs";
3
2
  export * from "./mcp.mjs";
4
- export * from "./runScript/index.mjs"; // CONCATENATED MODULE: ./src/cli/commands/index.ts
3
+ export * from "./runScript/index.mjs";
4
+
5
+ export {
6
+ CLI_COMMANDS_CONFIG,
7
+ JSON_FLAGS,
8
+ PRETTY_FLAGS,
9
+ getCliCommandConfig,
10
+ getCliCommandNames,
11
+ getCliGlobalOptionConfig,
12
+ getCliGlobalOptionNames,
13
+ } from "../../2392.mjs";
@@ -1,9 +1,6 @@
1
1
  import { startBwMcpServer } from "../../ai/mcp/index.mjs";
2
2
  import { logger } from "../../internal/logger/index.mjs";
3
- import { handleProjectCommand } from "./commandHandlerUtils.mjs"; // CONCATENATED MODULE: external "../../ai/mcp/index.mjs"
4
- // CONCATENATED MODULE: external "../../internal/logger/index.mjs"
5
- // CONCATENATED MODULE: external "./commandHandlerUtils.mjs"
6
- // CONCATENATED MODULE: ./src/cli/commands/mcp.ts
3
+ import { handleProjectCommand } from "./commandHandlerUtils.mjs";
7
4
 
8
5
  const mcpServer = handleProjectCommand("mcpServer", async ({ project }) => {
9
6
  logger.printLevel = "silent";
@@ -15,15 +15,7 @@ import {
15
15
  createScriptEventTarget,
16
16
  renderGroupedOutput,
17
17
  } from "./output/renderGroupedOutput.mjs";
18
- import { renderPlainOutput } from "./output/renderPlainOutput.mjs"; // CONCATENATED MODULE: external "fs"
19
- // CONCATENATED MODULE: external "path"
20
- // CONCATENATED MODULE: external "../../../internal/core/index.mjs"
21
- // CONCATENATED MODULE: external "../../../internal/logger/index.mjs"
22
- // CONCATENATED MODULE: external "../commandHandlerUtils.mjs"
23
- // CONCATENATED MODULE: external "./output/outputStyle.mjs"
24
- // CONCATENATED MODULE: external "./output/renderGroupedOutput.mjs"
25
- // CONCATENATED MODULE: external "./output/renderPlainOutput.mjs"
26
- // CONCATENATED MODULE: ./src/cli/commands/runScript/handleRunScript.ts
18
+ import { renderPlainOutput } from "./output/renderPlainOutput.mjs";
27
19
 
28
20
  const runScript = handleProjectCommand(
29
21
  "runScript",
@@ -1,2 +1,4 @@
1
1
  export * from "./handleRunScript.mjs";
2
- export * from "./output/renderPlainOutput.mjs"; // CONCATENATED MODULE: ./src/cli/commands/runScript/index.ts
2
+ export * from "./output/renderPlainOutput.mjs";
3
+
4
+ export {};
@@ -1 +1,3 @@
1
- export * from "./renderPlainOutput.mjs"; // CONCATENATED MODULE: ./src/cli/commands/runScript/output/index.ts
1
+ export * from "./renderPlainOutput.mjs";
2
+
3
+ export {};