dev-report 0.1.4 → 0.1.5

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/install.js CHANGED
@@ -105,10 +105,8 @@ async function main() {
105
105
 
106
106
  const binDest = path.join(BIN_DIR, binName);
107
107
 
108
- // Skip if already installed
109
108
  if (fs.existsSync(binDest)) {
110
- console.log(` dev-report: binary already present, skipping download.`);
111
- return;
109
+ fs.unlinkSync(binDest);
112
110
  }
113
111
 
114
112
  console.log(` dev-report: downloading ${archiveName}…`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-report",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "AI-powered developer work report generator from Git commits",
5
5
  "bin": {
6
6
  "dev-report": "bin/dev-report.js"
@@ -12,7 +12,7 @@
12
12
  "yauzl": "^2.10.0"
13
13
  },
14
14
  "files": [
15
- "bin/",
15
+ "bin/dev-report.js",
16
16
  "install.js",
17
17
  "README.md"
18
18
  ],
Binary file