@naturalcycles/dev-lib 19.14.1 → 19.15.0

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.
@@ -408,6 +408,7 @@ export default {
408
408
  'unicorn/expiring-todo-comments': 1, // warning, instead of error
409
409
  '@typescript-eslint/return-await': [2, 'always'],
410
410
  '@typescript-eslint/require-await': 0,
411
+ 'unicorn/no-array-reverse': 0, // too early
411
412
  '@typescript-eslint/no-misused-promises': 0,
412
413
  '@typescript-eslint/no-unsafe-assignment': 0,
413
414
  '@typescript-eslint/no-unsafe-member-access': 0,
@@ -45,16 +45,17 @@ export function defineVitestConfig(config) {
45
45
  },
46
46
  })
47
47
 
48
- const { silent, include, exclude, pool, maxWorkers } = mergedConfig.test
48
+ const { silent, pool, maxWorkers, isolate } = mergedConfig.test
49
49
 
50
50
  console.log({
51
51
  testType,
52
52
  silent,
53
53
  isCI,
54
54
  runsInIDE,
55
- include,
56
- exclude,
55
+ // include,
56
+ // exclude,
57
57
  pool,
58
+ isolate,
58
59
  maxWorkers,
59
60
  })
60
61
 
@@ -68,6 +69,7 @@ export const sharedConfig = {
68
69
  pool,
69
70
  minWorkers,
70
71
  maxWorkers,
72
+ isolate: true, // default
71
73
  watch: false,
72
74
  // dir: 'src',
73
75
  restoreMocks: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "19.14.1",
4
+ "version": "19.15.0",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",
@@ -17,7 +17,7 @@
17
17
  "eslint-plugin-import-x": "^4",
18
18
  "eslint-plugin-jsdoc": "^51",
19
19
  "eslint-plugin-simple-import-sort": "^12",
20
- "eslint-plugin-unicorn": "^59",
20
+ "eslint-plugin-unicorn": "^60",
21
21
  "eslint-plugin-vue": "^10",
22
22
  "globals": "^16",
23
23
  "lint-staged": "^16",