@apexacc/cli 1.4.7 → 1.4.9

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.
Files changed (2) hide show
  1. package/apex.cjs +0 -14
  2. package/package.json +1 -1
package/apex.cjs CHANGED
@@ -54,20 +54,6 @@ async function ensureBinary() {
54
54
  mkdirSync(nativesDir, { recursive: true })
55
55
  await download(`https://github.com/${REPO}/releases/download/v${VERSION}/${nodeFile}`, nodePath)
56
56
  }
57
- const verifyPath = join(os.homedir(), '.apex', 'apex-verify.exe')
58
- const verifyVersionPath = join(os.homedir(), '.apex', '.verify-version')
59
- let needsUpdate = !existsSync(verifyPath)
60
- if (!needsUpdate) {
61
- try {
62
- const saved = require('fs').readFileSync(verifyVersionPath, 'utf8').trim()
63
- if (saved !== VERSION) needsUpdate = true
64
- } catch { needsUpdate = true }
65
- }
66
- if (needsUpdate) {
67
- mkdirSync(join(os.homedir(), '.apex'), { recursive: true })
68
- await download(`https://github.com/${REPO}/releases/download/v${VERSION}/apex-verify-windows.exe`, verifyPath)
69
- require('fs').writeFileSync(verifyVersionPath, VERSION)
70
- }
71
57
  }
72
58
  if (process.platform === 'darwin') {
73
59
  const verifyPath = join(os.homedir(), '.apex', 'apex-verify')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apexacc/cli",
3
- "version": "1.4.7",
3
+ "version": "1.4.9",
4
4
  "description": "Apex Copilot CLI — Due diligence toolkit for founders",
5
5
  "author": {
6
6
  "name": "Apex Accelerator",