@certik/skynet 0.16.6 → 0.16.7

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.7
4
+
5
+ - Updated: use larger cpu/mem for service monitor process
6
+
3
7
  ## 0.16.6
4
8
 
5
9
  - Updated: use larger cpu/mem for service monitor process
package/deploy.js CHANGED
@@ -585,8 +585,8 @@ function createDeploy({
585
585
  region,
586
586
  cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
587
587
  killTimeout: check.killTimeout || "10s",
588
- cpu: check.cpu || 100,
589
- mem: check.mem || 100,
588
+ cpu: check.cpu || 500,
589
+ mem: check.mem || 500,
590
590
  isProduction: production,
591
591
  });
592
592
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.16.6",
3
+ "version": "0.16.7",
4
4
  "description": "Skynet Shared JS library",
5
5
  "type": "module",
6
6
  "main": "index.js",