@certik/skynet 0.16.5 → 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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.16.7
4
+
5
+ - Updated: use larger cpu/mem for service monitor process
6
+
7
+ ## 0.16.6
8
+
9
+ - Updated: use larger cpu/mem for service monitor process
10
+
3
11
  ## 0.16.5
4
12
 
5
13
  - 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
 
@@ -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.5",
3
+ "version": "0.16.7",
4
4
  "description": "Skynet Shared JS library",
5
5
  "type": "module",
6
6
  "main": "index.js",