@naturalcycles/dev-lib 13.10.0 → 13.11.1

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.
@@ -76,7 +76,8 @@ async function runJest(opt = {}) {
76
76
  }
77
77
  // We used to default to 2, but due to memory being an issue for Jest - now we default to 1,
78
78
  // as it's the most memory-efficient way
79
- maxWorkers || (maxWorkers = '--maxWorkers=1');
79
+ // Since `workerIdleMemoryLimit` was introduced by default - we're changing default back to 2 workers
80
+ maxWorkers || (maxWorkers = '--maxWorkers=2');
80
81
  }
81
82
  // Running all tests - will use `--silent` to suppress console-logs, will also set process.env.JEST_SILENT=1
82
83
  if (CI || isRunningAllTests()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "13.10.0",
3
+ "version": "13.11.1",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "tsn-debug": "tsn testScript.ts",
@@ -47,14 +47,14 @@
47
47
  "eslint-plugin-import": "^2.22.1",
48
48
  "eslint-plugin-jest": "^27.0.1",
49
49
  "eslint-plugin-jsdoc": "^39.1.0",
50
- "eslint-plugin-unicorn": "^44.0.0",
50
+ "eslint-plugin-unicorn": "^45.0.0",
51
51
  "eslint-plugin-unused-imports": "^2.0.0",
52
52
  "eslint-plugin-vue": "^9.0.0",
53
53
  "execa": "^5.0.0",
54
54
  "expect-type": "^0.15.0",
55
55
  "fs-extra": "^10.0.0",
56
56
  "husky": "^8.0.1",
57
- "jest-junit": "^14.0.0",
57
+ "jest-junit": "^15.0.0",
58
58
  "lint-staged": "^13.0.0",
59
59
  "mitm": "^1.7.0",
60
60
  "prettier": "^2.0.4",