@naturalcycles/dev-lib 17.1.1 → 17.1.2

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.
@@ -10,7 +10,9 @@ const isCI = !!process.env['CI']
10
10
  const junitReporterEnabled = isCI && testType !== 'manual'
11
11
  const maxWorkers = getMaxWorkers()
12
12
  const minWorkers = maxWorkers
13
- const pool = 'threads' // threads are tested to be ~10% faster than forks in CI (and no change locally)
13
+ // threads are tested to be ~10% faster than forks in CI (and no change locally)
14
+ // UPD: it was not statistically significant, so, reverting back to forks which is more stable
15
+ const pool = 'forks'
14
16
  process.env.TZ ||= 'UTC'
15
17
 
16
18
  if (testType === 'unit') {
@@ -1,4 +1,4 @@
1
- import { SemVerString } from '@naturalcycles/js-lib';
1
+ import type { SemVerString } from '@naturalcycles/js-lib';
2
2
  /**
3
3
  * Run all linters.
4
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
- "version": "17.1.1",
3
+ "version": "17.1.2",
4
4
  "scripts": {
5
5
  "prepare": "husky",
6
6
  "tsn-debug": "tsx scripts/testScript.ts",