@naturalcycles/dev-lib 20.5.0 → 20.7.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.
package/cfg/biome.jsonc CHANGED
@@ -41,7 +41,7 @@
41
41
  "noUnusedFunctionParameters": "off", // oxlint
42
42
  "noConstantCondition": "off", // ox
43
43
  // noUnusedImports + noUnusedVariables can replace eslint-plugin-unused-vars!
44
- "noUnusedImports": "off", // oxlint
44
+ "noUnusedImports": "error", // oxlint ignoreVars ^_ pattern also applies to imports named with _ prefix. Support for no-unused-imports tracked here https://github.com/oxc-project/oxc/issues/1117
45
45
  "noUnusedVariables": {
46
46
  "fix": "none",
47
47
  "level": "off", // oxlint
@@ -1,5 +1,5 @@
1
1
  import { BaseSequencer } from 'vitest/node'
2
- import { _sortBy } from '@naturalcycles/js-lib/array/array.util.js'
2
+ import { _sortBy } from '@naturalcycles/js-lib/array/sort.js'
3
3
 
4
4
  export class VitestAlphabeticSequencer extends BaseSequencer {
5
5
  async sort(files) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "20.5.0",
4
+ "version": "20.7.0",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^20",