@naturalcycles/dev-lib 19.3.2 → 19.4.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.
Files changed (2) hide show
  1. package/package.json +9 -2
  2. package/readme.md +0 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/dev-lib",
3
3
  "type": "module",
4
- "version": "19.3.2",
4
+ "version": "19.4.1",
5
5
  "dependencies": {
6
6
  "@biomejs/biome": "^2",
7
7
  "@commitlint/cli": "^19",
@@ -10,7 +10,7 @@
10
10
  "@inquirer/prompts": "^7",
11
11
  "@naturalcycles/js-lib": "^15",
12
12
  "@naturalcycles/nodejs-lib": "^14",
13
- "@stylistic/eslint-plugin": "^4",
13
+ "@stylistic/eslint-plugin": "^5",
14
14
  "@vitest/coverage-v8": "^3",
15
15
  "@vitest/eslint-plugin": "^1",
16
16
  "eslint": "^9",
@@ -49,6 +49,13 @@
49
49
  "@types/node": "^24",
50
50
  "@types/mitm": "^1"
51
51
  },
52
+ "exports": {
53
+ ".": "./dist/index.js",
54
+ "./cfg/": "./cfg/",
55
+ "./testing": "./dist/testing/index.js",
56
+ "./testing/time": "./dist/testing/time.js",
57
+ "./testing/testOffline": "./dist/testing/testOffline.js"
58
+ },
52
59
  "files": [
53
60
  "dist",
54
61
  "scripts/tsconfig.json",
package/readme.md CHANGED
@@ -138,7 +138,6 @@ For manual tests:
138
138
  #### Lint commands
139
139
 
140
140
  - `lint`: runs Biome, ESLint, Stylelint, Prettier, actionlint, ktlint in the right order.
141
-
142
141
  - `--commitOnChanges` will commit lint-modified changes and push them
143
142
  - `--failOnChanges` will exit with status 1 in the end (will fail the command)
144
143