@naturalcycles/dev-lib 16.6.1 → 16.6.2
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/dist/lint.util.js +3 -4
- package/package.json +16 -17
package/dist/lint.util.js
CHANGED
|
@@ -14,7 +14,6 @@ const node_child_process_1 = tslib_1.__importDefault(require("node:child_process
|
|
|
14
14
|
const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
|
|
15
15
|
const js_lib_1 = require("@naturalcycles/js-lib");
|
|
16
16
|
const nodejs_lib_1 = require("@naturalcycles/nodejs-lib");
|
|
17
|
-
const yargs_1 = tslib_1.__importDefault(require("yargs"));
|
|
18
17
|
const paths_1 = require("./paths");
|
|
19
18
|
const { prettierDirs, prettierExtensionsAll, stylelintExtensions, eslintExtensions, lintExclude, minActionlintVersion, } = require('../cfg/_cnst');
|
|
20
19
|
/**
|
|
@@ -22,7 +21,7 @@ const { prettierDirs, prettierExtensionsAll, stylelintExtensions, eslintExtensio
|
|
|
22
21
|
*/
|
|
23
22
|
async function lintAllCommand() {
|
|
24
23
|
const started = Date.now();
|
|
25
|
-
const { commitOnChanges, failOnChanges } =
|
|
24
|
+
const { commitOnChanges, failOnChanges } = (0, nodejs_lib_1._yargs)().options({
|
|
26
25
|
commitOnChanges: {
|
|
27
26
|
type: 'boolean',
|
|
28
27
|
default: false,
|
|
@@ -74,7 +73,7 @@ async function lintAllCommand() {
|
|
|
74
73
|
*/
|
|
75
74
|
async function eslintAll(opt) {
|
|
76
75
|
const started = Date.now();
|
|
77
|
-
const { argv } =
|
|
76
|
+
const { argv } = (0, nodejs_lib_1._yargs)().options({
|
|
78
77
|
ext: {
|
|
79
78
|
type: 'string',
|
|
80
79
|
default: eslintExtensions,
|
|
@@ -167,7 +166,7 @@ const stylelintPaths = [
|
|
|
167
166
|
...lintExclude.map((s) => `!${s}`),
|
|
168
167
|
];
|
|
169
168
|
function stylelintAll() {
|
|
170
|
-
const { fix } =
|
|
169
|
+
const { fix } = (0, nodejs_lib_1._yargs)().options({
|
|
171
170
|
fix: {
|
|
172
171
|
type: 'boolean',
|
|
173
172
|
default: true,
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/dev-lib",
|
|
3
|
-
"version": "16.6.
|
|
3
|
+
"version": "16.6.2",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"prepare": "husky",
|
|
6
|
-
"tsn-debug": "
|
|
7
|
-
"dev-lib": "
|
|
8
|
-
"bt": "
|
|
9
|
-
"lbt": "
|
|
10
|
-
"build": "
|
|
11
|
-
"build-prod-esm-cjs": "
|
|
12
|
-
"test": "
|
|
13
|
-
"test-leaks": "
|
|
14
|
-
"test-integration": "
|
|
15
|
-
"test-manual": "
|
|
16
|
-
"lint": "
|
|
17
|
-
"up": "
|
|
18
|
-
"upnc": "
|
|
6
|
+
"tsn-debug": "tsx scripts/testScript.ts",
|
|
7
|
+
"dev-lib": "tsx ./src/bin/dev-lib.ts",
|
|
8
|
+
"bt": "tsx ./src/bin/dev-lib.ts bt && tsx scripts/eslintPrintConfig.script.ts",
|
|
9
|
+
"lbt": "tsx ./src/bin/dev-lib.ts lbt && tsx scripts/eslintPrintConfig.script.ts",
|
|
10
|
+
"build": "tsx ./src/bin/dev-lib.ts build",
|
|
11
|
+
"build-prod-esm-cjs": "tsx ./src/bin/dev-lib.ts build-esm-cjs",
|
|
12
|
+
"test": "tsx ./src/bin/dev-lib.ts test",
|
|
13
|
+
"test-leaks": "tsx ./src/bin/dev-lib.ts test-leaks",
|
|
14
|
+
"test-integration": "tsx ./src/bin/dev-lib.ts test-integration",
|
|
15
|
+
"test-manual": "tsx ./src/bin/dev-lib.ts test-manual",
|
|
16
|
+
"lint": "tsx ./src/bin/dev-lib.ts lint",
|
|
17
|
+
"up": "tsx ./src/bin/up.ts",
|
|
18
|
+
"upnc": "tsx ./src/bin/upnc.ts"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@biomejs/biome": "^1",
|
|
@@ -43,14 +43,13 @@
|
|
|
43
43
|
"timekeeper": "^2",
|
|
44
44
|
"typescript": "^5",
|
|
45
45
|
"typescript-eslint": "^8",
|
|
46
|
-
"vue-eslint-parser": "^10"
|
|
47
|
-
"yargs": "^17"
|
|
46
|
+
"vue-eslint-parser": "^10"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@types/yargs": "^16",
|
|
51
49
|
"@vitest/coverage-v8": "^3",
|
|
52
50
|
"stylelint": "^16",
|
|
53
51
|
"stylelint-config-standard-scss": "^14",
|
|
52
|
+
"tsx": "^4",
|
|
54
53
|
"vitest": "^3"
|
|
55
54
|
},
|
|
56
55
|
"files": [
|