@foundry-rs/forge 1.4.3 → 1.4.4-nightly.20251025.765b856
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/install.mjs +4 -1
- package/package.json +6 -6
package/dist/install.mjs
CHANGED
|
@@ -161,7 +161,10 @@ function isPlatformSpecificPackageInstalled() {
|
|
|
161
161
|
if (!PLATFORM_SPECIFIC_PACKAGE_NAME) throw new Error("Platform not supported!");
|
|
162
162
|
if (!isPlatformSpecificPackageInstalled()) {
|
|
163
163
|
console.log("Platform specific package not found. Will manually download binary.");
|
|
164
|
-
downloadBinaryFromRegistry()
|
|
164
|
+
downloadBinaryFromRegistry().catch((error) => {
|
|
165
|
+
console.error(colors.red, "Failed to download binary:", error, colors.reset);
|
|
166
|
+
process.exitCode = 1;
|
|
167
|
+
});
|
|
165
168
|
} else console.log("Platform specific package already installed. Skipping manual download.");
|
|
166
169
|
|
|
167
170
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@foundry-rs/forge",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4-nightly.20251025.765b856",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"homepage": "https://getfoundry.sh/forge",
|
|
6
6
|
"description": "Fast and flexible Ethereum testing framework",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"postinstall": "node ./dist/install.mjs"
|
|
16
16
|
},
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@foundry-rs/forge-darwin-arm64": "1.4.
|
|
19
|
-
"@foundry-rs/forge-darwin-amd64": "1.4.
|
|
20
|
-
"@foundry-rs/forge-linux-arm64": "1.4.
|
|
21
|
-
"@foundry-rs/forge-linux-amd64": "1.4.
|
|
22
|
-
"@foundry-rs/forge-win32-amd64": "1.4.
|
|
18
|
+
"@foundry-rs/forge-darwin-arm64": "1.4.4-nightly.20251025.765b856",
|
|
19
|
+
"@foundry-rs/forge-darwin-amd64": "1.4.4-nightly.20251025.765b856",
|
|
20
|
+
"@foundry-rs/forge-linux-arm64": "1.4.4-nightly.20251025.765b856",
|
|
21
|
+
"@foundry-rs/forge-linux-amd64": "1.4.4-nightly.20251025.765b856",
|
|
22
|
+
"@foundry-rs/forge-win32-amd64": "1.4.4-nightly.20251025.765b856"
|
|
23
23
|
},
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public",
|