@vinean/dependency-analyzer 0.1.1 → 0.1.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/README.md CHANGED
@@ -57,7 +57,7 @@ Identify abandoned or deprecated packages before they become a liability.
57
57
 
58
58
  ## 📑 Interactive Dashboard
59
59
 
60
- The tool generates a `dep-report.html` interactive dashboard in your project directory:
60
+ The tool generates a `dependency-report.html` interactive dashboard in your project directory:
61
61
 
62
62
  - **Sortable Metrics**: Rank dependencies by complexity, downloads, or update age.
63
63
  - **Export Capabilities**: Download the full analysis as a JSON for CI/CD or internal tools.
@@ -35,6 +35,7 @@ async function ensureBinaryExecutable(targetPath) {
35
35
  function runBinary(targetPath) {
36
36
  const child = spawn(targetPath, process.argv.slice(2), {
37
37
  stdio: "inherit",
38
+ cwd: process.cwd(),
38
39
  });
39
40
  child.on("exit", (code) => process.exit(code ?? 1));
40
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vinean/dependency-analyzer",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Dependency Analyzer for npm and go packages with replaceability analysis",
5
5
  "type": "module",
6
6
  "bin": {