@ms-cloudpack/cli 0.77.28 → 0.77.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,9 @@
1
1
  import { EventEmitter } from 'node:events';
2
2
  /**
3
- * Event emitter for command lifecycle events. Not all events are applicable to all commands.
4
- *
5
- * This event emitter provides a reliable mechanism for coordinating test execution
6
- * with server initialization, ensuring that test assertions only run after all
7
- * necessary services are fully operational.
8
- *
9
- * Events:
10
- * - `'ready'`: An interactive command is ready.
11
- * - For `start`, all servers are ready (and browser opening has started).
3
+ * Create an event emitter for command lifecycle events. Not all events are applicable to all commands.
4
+ * @see {@link CommandEvents}
12
5
  */
13
- export const commandEvents = new EventEmitter();
6
+ export function createCommandEvents() {
7
+ return new EventEmitter();
8
+ }
14
9
  //# sourceMappingURL=commandEvents.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"commandEvents.js","sourceRoot":"","sources":["../../src/utilities/commandEvents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,aAAa,GAAG,IAAI,YAAY,EAAiB,CAAC","sourcesContent":["import { EventEmitter } from 'node:events';\n\n/**\n * Event emitter for command lifecycle events. Not all events are applicable to all commands.\n *\n * This event emitter provides a reliable mechanism for coordinating test execution\n * with server initialization, ensuring that test assertions only run after all\n * necessary services are fully operational.\n *\n * Events:\n * - `'ready'`: An interactive command is ready.\n * - For `start`, all servers are ready (and browser opening has started).\n */\nexport const commandEvents = new EventEmitter<{ ready: [] }>();\n"]}
1
+ {"version":3,"file":"commandEvents.js","sourceRoot":"","sources":["../../src/utilities/commandEvents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAe3C;;;GAGG;AACH,MAAM,UAAU,mBAAmB;IACjC,OAAO,IAAI,YAAY,EAAE,CAAC;AAC5B,CAAC","sourcesContent":["import { EventEmitter } from 'node:events';\n\n/**\n * Event emitter for command lifecycle events. Not all events are applicable to all commands.\n *\n * This event emitter provides a reliable mechanism for coordinating test execution\n * with server initialization, ensuring that test assertions only run after all\n * necessary services are fully operational.\n *\n * Events:\n * - `'ready'`: An interactive command is ready.\n * - For `start`, all servers are ready (and browser opening has started).\n */\nexport type CommandEvents = EventEmitter<{ ready: [] }>;\n\n/**\n * Create an event emitter for command lifecycle events. Not all events are applicable to all commands.\n * @see {@link CommandEvents}\n */\nexport function createCommandEvents(): CommandEvents {\n return new EventEmitter();\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/cli",
3
- "version": "0.77.28",
3
+ "version": "0.77.29",
4
4
  "description": "The Cloudpack command line interface - a tool for managing fast inner and outer looping in web apps.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -30,25 +30,25 @@
30
30
  "test": "cloudpack-scripts test"
31
31
  },
32
32
  "dependencies": {
33
- "@ms-cloudpack/api-server": "^0.65.9",
34
- "@ms-cloudpack/app-server": "^0.20.33",
35
- "@ms-cloudpack/bundler": "^0.26.18",
33
+ "@ms-cloudpack/api-server": "^0.65.10",
34
+ "@ms-cloudpack/app-server": "^0.20.34",
35
+ "@ms-cloudpack/bundler": "^0.27.0",
36
36
  "@ms-cloudpack/bundler-capabilities": "^0.4.8",
37
37
  "@ms-cloudpack/common-types": "^0.33.0",
38
- "@ms-cloudpack/config": "^0.38.19",
39
- "@ms-cloudpack/create-express-app": "^1.10.64",
38
+ "@ms-cloudpack/config": "^0.38.20",
39
+ "@ms-cloudpack/create-express-app": "^1.10.65",
40
40
  "@ms-cloudpack/environment": "^0.1.1",
41
- "@ms-cloudpack/file-watcher": "^0.4.22",
41
+ "@ms-cloudpack/file-watcher": "^0.4.23",
42
42
  "@ms-cloudpack/json-utilities": "^0.1.11",
43
- "@ms-cloudpack/link-proxy": "^0.2.55",
44
- "@ms-cloudpack/overlay": "^0.19.51",
45
- "@ms-cloudpack/package-utilities": "^13.2.3",
43
+ "@ms-cloudpack/link-proxy": "^0.2.56",
44
+ "@ms-cloudpack/overlay": "^0.19.52",
45
+ "@ms-cloudpack/package-utilities": "^13.2.4",
46
46
  "@ms-cloudpack/path-string-parsing": "^1.2.7",
47
- "@ms-cloudpack/path-utilities": "^3.2.0",
48
- "@ms-cloudpack/remote-cache": "^0.11.55",
47
+ "@ms-cloudpack/path-utilities": "^3.2.1",
48
+ "@ms-cloudpack/remote-cache": "^0.11.56",
49
49
  "@ms-cloudpack/setup-utilities": "^0.5.55",
50
50
  "@ms-cloudpack/task-reporter": "^0.17.4",
51
- "@ms-cloudpack/telemetry": "^0.11.55",
51
+ "@ms-cloudpack/telemetry": "^0.11.56",
52
52
  "@yarnpkg/lockfile": "^1.1.0",
53
53
  "commander": "^14.0.0",
54
54
  "cross-spawn": "^7.0.3",