knip 2.30.0 → 2.30.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/README.md CHANGED
@@ -80,7 +80,9 @@ For updates or questions, come hang out in [The Knip Barn (Discord)][10], or fol
80
80
 
81
81
  ### Installation
82
82
 
83
- npm install -D knip
83
+ ```
84
+ npm install -D knip
85
+ ```
84
86
 
85
87
  Knip supports LTS versions of Node.js, and currently requires at least Node.js v16.17 or v18.6.
86
88
 
@@ -445,7 +447,9 @@ In a more fine-grained manner, you can also ignore only specific issue types:
445
447
 
446
448
  When a repository is self-contained or private, you may want to include entry files when reporting unused exports:
447
449
 
448
- knip --include-entry-exports
450
+ ```
451
+ knip --include-entry-exports
452
+ ```
449
453
 
450
454
  Knip will also report unused exports in entry source files and scripts (such as those referenced in `package.json`). But
451
455
  not in entry and configuration files from plugins, such as `next.config.js` or `src/routes/+page.svelte`.
@@ -587,12 +591,16 @@ Alternatively, they can be added to the configuration (e.g. `"exclude": ["depend
587
591
 
588
592
  Use `--include` to report only specific issue types (the following example commands do the same):
589
593
 
590
- knip --include files --include dependencies
591
- knip --include files,dependencies
594
+ ```
595
+ knip --include files --include dependencies
596
+ knip --include files,dependencies
597
+ ```
592
598
 
593
599
  Use `--exclude` to ignore reports you're not interested in:
594
600
 
595
- knip --include files --exclude classMembers,enumMembers
601
+ ```
602
+ knip --include files --exclude classMembers,enumMembers
603
+ ```
596
604
 
597
605
  Use `--dependencies` or `--exports` as shortcuts to combine groups of related types.
598
606
 
@@ -660,7 +668,8 @@ Knip takes the following JSDoc/TSDoc tags into account:
660
668
 
661
669
  ## Command Line Options
662
670
 
663
- $ npx knip --help
671
+ ```
672
+ $ npx knip --help
664
673
  ✂️ Find unused files, dependencies and exports in your JavaScript and TypeScript projects
665
674
 
666
675
  Usage: knip [options]
@@ -704,6 +713,7 @@ Knip takes the following JSDoc/TSDoc tags into account:
704
713
  $ knip --debug --debug-file-filter '(specific|particular)-module'
705
714
 
706
715
  More documentation and bug reports: https://github.com/webpro/knip
716
+ ```
707
717
 
708
718
  ## Potential boost with `--no-gitignore`
709
719
 
@@ -739,15 +749,19 @@ Below some similar commands to get another idea of what Knip does in comparison:
739
749
 
740
750
  The following commands are similar:
741
751
 
742
- depcheck
743
- knip --dependencies
752
+ ```
753
+ depcheck
754
+ knip --dependencies
755
+ ```
744
756
 
745
757
  ### unimported
746
758
 
747
759
  The following commands are similar:
748
760
 
749
- unimported
750
- knip --production --dependencies --include files
761
+ ```
762
+ unimported
763
+ knip --production --dependencies --include files
764
+ ```
751
765
 
752
766
  Also see [production mode][25].
753
767
 
@@ -755,17 +769,21 @@ Also see [production mode][25].
755
769
 
756
770
  The following commands are similar:
757
771
 
758
- ts-unused-exports
759
- knip --include exports,types,nsExports,nsTypes
760
- knip --exports # Adds unused enum and class members
772
+ ```
773
+ ts-unused-exports
774
+ knip --include exports,types,nsExports,nsTypes
775
+ knip --exports # Adds unused enum and class members
776
+ ```
761
777
 
762
778
  ### ts-prune
763
779
 
764
780
  The following commands are similar:
765
781
 
766
- ts-prune
767
- knip --include exports,types
768
- knip --exports # Adds unused exports/types in namespaces and unused enum/class members
782
+ ```
783
+ ts-prune
784
+ knip --include exports,types
785
+ knip --exports # Adds unused exports/types in namespaces and unused enum/class members
786
+ ```
769
787
 
770
788
  ## Projects using Knip
771
789
 
package/dist/constants.js CHANGED
@@ -13,6 +13,7 @@ export const IGNORED_GLOBAL_BINARIES = [
13
13
  'cd',
14
14
  'chmod',
15
15
  'cp',
16
+ 'curl',
16
17
  'deno',
17
18
  'dirname',
18
19
  'echo',
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "2.30.0";
1
+ export declare const version = "2.30.1";
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const version = '2.30.0';
1
+ export const version = '2.30.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "knip",
3
- "version": "2.30.0",
3
+ "version": "2.30.1",
4
4
  "description": "Find unused files, dependencies and exports in your TypeScript and JavaScript projects",
5
5
  "homepage": "https://github.com/webpro/knip",
6
6
  "repository": "github:webpro/knip",
@@ -65,16 +65,16 @@
65
65
  "@npmcli/package-json": "5.0.0",
66
66
  "@release-it/bumper": "5.1.0",
67
67
  "@swc/cli": "0.1.62",
68
- "@swc/core": "1.3.90",
68
+ "@swc/core": "1.3.91",
69
69
  "@types/eslint": "8.44.3",
70
70
  "@types/js-yaml": "4.0.6",
71
71
  "@types/micromatch": "4.0.3",
72
72
  "@types/minimist": "1.2.3",
73
- "@types/node": "20.7.1",
73
+ "@types/node": "20.8.2",
74
74
  "@types/npmcli__map-workspaces": "3.0.2",
75
75
  "@types/webpack": "5.28.3",
76
- "@typescript-eslint/eslint-plugin": "6.7.3",
77
- "@typescript-eslint/parser": "6.7.3",
76
+ "@typescript-eslint/eslint-plugin": "6.7.4",
77
+ "@typescript-eslint/parser": "6.7.4",
78
78
  "c8": "8.0.1",
79
79
  "eslint": "8.50.0",
80
80
  "eslint-import-resolver-typescript": "3.6.1",
@@ -82,10 +82,10 @@
82
82
  "eslint-plugin-n": "16.1.0",
83
83
  "prettier": "3.0.3",
84
84
  "release-it": "16.2.1",
85
- "remark-cli": "11.0.0",
86
- "remark-preset-webpro": "0.0.3",
85
+ "remark-cli": "12.0.0",
86
+ "remark-preset-webpro": "1.0.0",
87
87
  "tsx": "3.13.0",
88
- "type-fest": "4.3.2"
88
+ "type-fest": "4.3.3"
89
89
  },
90
90
  "engines": {
91
91
  "node": ">=16.17.0 <17 || >=18.6.0"