@naturalcycles/dev-lib 15.21.0 → 15.22.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/eslint-rules.js +1 -0
- package/package.json +2 -2
package/cfg/eslint-rules.js
CHANGED
|
@@ -382,6 +382,7 @@ module.exports = {
|
|
|
382
382
|
'unicorn/prefer-regexp-test': 0,
|
|
383
383
|
'unicorn/prefer-query-selector': 0,
|
|
384
384
|
'unicorn/prefer-prototype-methods': 0, // false-positive on node promisify() of callback functions
|
|
385
|
+
'unicorn/expiring-todo-comments': 1, // warning, instead of error
|
|
385
386
|
'@typescript-eslint/return-await': [2, 'always'],
|
|
386
387
|
'@typescript-eslint/require-await': 0,
|
|
387
388
|
'@typescript-eslint/no-misused-promises': 0,
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/dev-lib",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.22.0",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"prepare": "husky",
|
|
6
6
|
"tsn-debug": "tsn testScript.ts",
|
|
7
7
|
"dev-lib": "tsn ./src/bin/dev-lib.ts",
|
|
8
8
|
"bt": "tsn ./src/bin/dev-lib.ts bt && tsn eslintPrintConfig",
|
|
9
|
-
"lbt": "tsn ./src/bin/dev-lib.ts lbt",
|
|
9
|
+
"lbt": "tsn ./src/bin/dev-lib.ts lbt && tsn eslintPrintConfig",
|
|
10
10
|
"build": "tsn ./src/bin/dev-lib.ts build",
|
|
11
11
|
"build-prod-esm-cjs": "tsn ./src/bin/dev-lib.ts build-esm-cjs",
|
|
12
12
|
"test": "tsn ./src/bin/dev-lib.ts test",
|