@naturalcycles/js-lib 15.17.0 → 15.18.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.
@@ -0,0 +1,2 @@
1
+ export * from './array.util.js';
2
+ export * from './range.js';
@@ -0,0 +1,2 @@
1
+ export * from './array.util.js';
2
+ export * from './range.js';
package/dist/index.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  export * from './abort.js';
2
- export * from './array/array.util.js';
3
- export * from './array/range.js';
4
2
  export * from './bot.model.js';
5
3
  export * from './define.js';
6
4
  export * from './enum.util.js';
package/dist/index.js CHANGED
@@ -1,6 +1,4 @@
1
1
  export * from './abort.js';
2
- export * from './array/array.util.js';
3
- export * from './array/range.js';
4
2
  export * from './bot.model.js';
5
3
  export * from './define.js';
6
4
  export * from './enum.util.js';
@@ -1,4 +1,4 @@
1
- import { _uniq } from '../../index.js';
1
+ import { _uniq } from '../../array/index.js';
2
2
  import { _stringMapEntries } from '../../types.js';
3
3
  /**
4
4
  * Each row must be an object (current limitation).
package/package.json CHANGED
@@ -1,22 +1,24 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
3
  "type": "module",
4
- "version": "15.17.0",
4
+ "version": "15.18.0",
5
5
  "dependencies": {
6
6
  "tslib": "^2",
7
7
  "zod": "^4"
8
8
  },
9
9
  "devDependencies": {
10
- "@naturalcycles/dev-lib": "*",
11
10
  "@types/crypto-js": "^4",
12
11
  "@types/node": "^24",
13
12
  "@types/semver": "^7",
14
13
  "crypto-js": "^4",
15
- "dayjs": "^1"
14
+ "dayjs": "^1",
15
+ "@naturalcycles/dev-lib": "19.11.0"
16
16
  },
17
17
  "exports": {
18
- "./cfg/frontend/tsconfig.json": "./cfg/frontend/tsconfig.json",
19
18
  ".": "./dist/index.js",
19
+ "./cfg/frontend/tsconfig.json": "./cfg/frontend/tsconfig.json",
20
+ "./array": "./dist/array/index.js",
21
+ "./array/*.js": "./dist/array/*.js",
20
22
  "./browser": "./dist/browser/index.js",
21
23
  "./browser/*.js": "./dist/browser/*.js",
22
24
  "./datetime": "./dist/datetime/index.js",
@@ -0,0 +1,2 @@
1
+ export * from './array.util.js'
2
+ export * from './range.js'
package/src/index.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  export * from './abort.js'
2
- export * from './array/array.util.js'
3
- export * from './array/range.js'
4
2
  export * from './bot.model.js'
5
3
  export * from './define.js'
6
4
  export * from './enum.util.js'
@@ -1,4 +1,4 @@
1
- import { _uniq } from '../../index.js'
1
+ import { _uniq } from '../../array/index.js'
2
2
  import { _stringMapEntries, type AnyObject, type StringMap } from '../../types.js'
3
3
  import type {
4
4
  JsonSchema,