@certik/skynet 0.10.34 → 0.10.35

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 (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/app.js +11 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.35
4
+
5
+ - Set better process name
6
+
3
7
  ## 0.10.33 & 0.10.34
4
8
 
5
9
  - Fixed api monitor error messages
package/app.js CHANGED
@@ -189,6 +189,8 @@ function indexer({ name, selector, build, check, env = {}, region = "us-east-1"
189
189
  });
190
190
 
191
191
  run();
192
+
193
+ process.title = name;
192
194
  },
193
195
  onDeploy: () => {
194
196
  const bin = detectBin();
@@ -295,6 +297,8 @@ function modeIndexer({ name, selector, state, build, validate, check, env = {},
295
297
  });
296
298
 
297
299
  run();
300
+
301
+ process.title = name;
298
302
  },
299
303
  onDeploy: () => {
300
304
  const bin = detectBin();
@@ -411,6 +415,8 @@ function producer({ name, selector, produce, check, state, env = {}, region = "u
411
415
  });
412
416
 
413
417
  run();
418
+
419
+ process.title = name;
414
420
  },
415
421
  onDeploy: () => {
416
422
  const bin = detectBin();
@@ -507,6 +513,8 @@ function consumer({ name, selector, consume, check, env = {}, region = "us-east-
507
513
  });
508
514
 
509
515
  run();
516
+
517
+ process.title = name;
510
518
  },
511
519
  onDeploy: () => {
512
520
  const bin = detectBin();
@@ -644,7 +652,7 @@ function api({ name, routes, serve, beforeListen, env = {}, region = "us-east-1"
644
652
  env,
645
653
  check,
646
654
  onRun: () => {
647
- return startApiApp({
655
+ startApiApp({
648
656
  binaryName: `${getBinaryName()} run`,
649
657
  name,
650
658
  selector,
@@ -652,6 +660,8 @@ function api({ name, routes, serve, beforeListen, env = {}, region = "us-east-1"
652
660
  serve,
653
661
  beforeListen,
654
662
  });
663
+
664
+ process.title = name;
655
665
  },
656
666
  onDeploy: () => {
657
667
  const bin = detectBin();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.10.34",
3
+ "version": "0.10.35",
4
4
  "description": "Skynet Shared JS library",
5
5
  "main": "index.js",
6
6
  "author": "CertiK Engineering",