whyinstall 0.1.0 → 0.1.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/dist/cli.js +1 -1
- package/package.json +2 -2
- package/src/cli.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -13,7 +13,7 @@ const program = new commander_1.Command();
|
|
|
13
13
|
program
|
|
14
14
|
.name('whyinstall')
|
|
15
15
|
.description('Find why a dependency exists in your JS/TS project')
|
|
16
|
-
.version('0.1.
|
|
16
|
+
.version('0.1.1')
|
|
17
17
|
.argument('<package-name>', 'Package name to analyze')
|
|
18
18
|
.option('-j, --json', 'Output as JSON')
|
|
19
19
|
.option('-c, --cwd <path>', 'Working directory', process.cwd())
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "whyinstall",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "CLI tool to find why a dependency exists in your JS/TS project",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"author": "Saumya Kushwah",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"chalk": "^
|
|
25
|
+
"chalk": "^4.1.2",
|
|
26
26
|
"commander": "^11.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
package/src/cli.ts
CHANGED
|
@@ -11,7 +11,7 @@ const program = new Command();
|
|
|
11
11
|
program
|
|
12
12
|
.name('whyinstall')
|
|
13
13
|
.description('Find why a dependency exists in your JS/TS project')
|
|
14
|
-
.version('0.1.
|
|
14
|
+
.version('0.1.1')
|
|
15
15
|
.argument('<package-name>', 'Package name to analyze')
|
|
16
16
|
.option('-j, --json', 'Output as JSON')
|
|
17
17
|
.option('-c, --cwd <path>', 'Working directory', process.cwd())
|