@joystick.js/cli-canary 0.0.0-canary.80 → 0.0.0-canary.81

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.
@@ -62,6 +62,7 @@ const handleSignalEvents = (processIds = [], nodeMajorVersion = 0, __dirname = "
62
62
  silent: true
63
63
  }
64
64
  );
65
+ console.log(cleanupProcess);
65
66
  process.on("SIGINT", async () => {
66
67
  const databaseProcessIds = getDatabaseProcessIds();
67
68
  cleanupProcess.send(JSON.stringify({ processIds: [...processIds, ...databaseProcessIds] }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joystick.js/cli-canary",
3
- "version": "0.0.0-canary.80",
3
+ "version": "0.0.0-canary.81",
4
4
  "type": "module",
5
5
  "description": "CLI for the Joystick JavaScript framework.",
6
6
  "main": "development.js",
@@ -75,6 +75,8 @@ const handleSignalEvents = (processIds = [], nodeMajorVersion = 0, __dirname = '
75
75
  }
76
76
  );
77
77
 
78
+ console.log(cleanupProcess);
79
+
78
80
  process.on("SIGINT", async () => {
79
81
  const databaseProcessIds = getDatabaseProcessIds();
80
82
  cleanupProcess.send(JSON.stringify(({ processIds: [...processIds, ...databaseProcessIds] })));