codeforge-cli 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/package.json +1 -1
- package/scripts/postinstall.js +2 -1
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -13,7 +13,8 @@ const { execSync } = require('child_process');
|
|
|
13
13
|
|
|
14
14
|
// Configuration - Use Cloudflare R2 as CDN
|
|
15
15
|
const DOWNLOAD_BASE = process.env.FORGE_DOWNLOAD_URL || 'https://pub-63b4afd13ea24e6f94f86d0b7f3a802c.r2.dev/forge-cli';
|
|
16
|
-
|
|
16
|
+
// Always download from 'latest' - the release workflow updates this folder
|
|
17
|
+
const VERSION = 'latest';
|
|
17
18
|
const BIN_DIR = path.join(__dirname, '..', 'bin');
|
|
18
19
|
const LIB_DIR = path.join(__dirname, '..', 'lib');
|
|
19
20
|
|