@certik/skynet 0.16.5 → 0.16.6

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.6
4
+
5
+ - Updated: use larger cpu/mem for service monitor process
6
+
3
7
  ## 0.16.5
4
8
 
5
9
  - Updated: dynamodb translate config
package/deploy.js CHANGED
@@ -417,8 +417,8 @@ function createModeDeploy({
417
417
  region,
418
418
  cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
419
419
  killTimeout: check.killTimeout || "10s",
420
- cpu: check.cpu || 100,
421
- mem: check.mem || 100,
420
+ cpu: check.cpu || 500,
421
+ mem: check.mem || 500,
422
422
  isProduction: production,
423
423
  });
424
424
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.16.5",
3
+ "version": "0.16.6",
4
4
  "description": "Skynet Shared JS library",
5
5
  "type": "module",
6
6
  "main": "index.js",