@epic-web/workshop-utils 6.71.0 → 6.71.1

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.
@@ -328,7 +328,12 @@ export function startSidecarProcess(name, command) {
328
328
  .join('\n'));
329
329
  }
330
330
  sidecarProcess.stderr?.on('data', handleStdErrData);
331
- sidecarProcesses.set(name, { color, process: sidecarProcess, command, output });
331
+ sidecarProcesses.set(name, {
332
+ color,
333
+ process: sidecarProcess,
334
+ command,
335
+ output,
336
+ });
332
337
  sidecarProcess.on('exit', (code, signal) => {
333
338
  sidecarProcess.stdout?.off('data', handleStdOutData);
334
339
  sidecarProcess.stderr?.off('data', handleStdErrData);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epic-web/workshop-utils",
3
- "version": "6.71.0",
3
+ "version": "6.71.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },