@kitschpatrol/knip-config 5.2.0 → 5.3.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.
- package/bin/cli.js +9 -3
- package/dist/index.js +6 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -5552,7 +5552,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
5552
5552
|
var yargs_default = Yargs;
|
|
5553
5553
|
|
|
5554
5554
|
// ../../package.json
|
|
5555
|
-
var version = "5.
|
|
5555
|
+
var version = "5.3.1";
|
|
5556
5556
|
|
|
5557
5557
|
// ../../src/execa-utilities.ts
|
|
5558
5558
|
function isErrorExecaError(error) {
|
|
@@ -6249,7 +6249,11 @@ var sharedKnipConfig = {
|
|
|
6249
6249
|
"kpi-cspell",
|
|
6250
6250
|
"kpi-knip",
|
|
6251
6251
|
"kpi-remark",
|
|
6252
|
-
"kpi-prettier"
|
|
6252
|
+
"kpi-prettier",
|
|
6253
|
+
// 1Password CLI, typically a global install...
|
|
6254
|
+
"op",
|
|
6255
|
+
// GitHub CLI, typically a global install...
|
|
6256
|
+
"gh"
|
|
6253
6257
|
],
|
|
6254
6258
|
ignoreDependencies: [
|
|
6255
6259
|
"@kitschpatrol/cspell-config",
|
|
@@ -6266,7 +6270,9 @@ var sharedKnipConfig = {
|
|
|
6266
6270
|
"prettier-plugin-sh",
|
|
6267
6271
|
"prettier-plugin-sql",
|
|
6268
6272
|
"prettier-plugin-tailwindcss",
|
|
6269
|
-
"prettier-plugin-toml"
|
|
6273
|
+
"prettier-plugin-toml",
|
|
6274
|
+
// Undetected due to string import in cspell.config.js
|
|
6275
|
+
"@kitschpatrol/dict-en-wiktionary"
|
|
6270
6276
|
]
|
|
6271
6277
|
};
|
|
6272
6278
|
var index_default = sharedKnipConfig;
|
package/dist/index.js
CHANGED
|
@@ -29,6 +29,10 @@ const sharedKnipConfig = {
|
|
|
29
29
|
'kpi-knip',
|
|
30
30
|
'kpi-remark',
|
|
31
31
|
'kpi-prettier',
|
|
32
|
+
// 1Password CLI, typically a global install...
|
|
33
|
+
'op',
|
|
34
|
+
// GitHub CLI, typically a global install...
|
|
35
|
+
'gh',
|
|
32
36
|
],
|
|
33
37
|
ignoreDependencies: [
|
|
34
38
|
'@kitschpatrol/cspell-config',
|
|
@@ -46,6 +50,8 @@ const sharedKnipConfig = {
|
|
|
46
50
|
'prettier-plugin-sql',
|
|
47
51
|
'prettier-plugin-tailwindcss',
|
|
48
52
|
'prettier-plugin-toml',
|
|
53
|
+
// Undetected due to string import in cspell.config.js
|
|
54
|
+
'@kitschpatrol/dict-en-wiktionary',
|
|
49
55
|
],
|
|
50
56
|
};
|
|
51
57
|
/**
|