@foundry-rs/forge 1.4.3 → 1.4.4-nightly.20251026.d4461df

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/dist/install.mjs +4 -1
  2. 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",
3
+ "version": "1.4.4-nightly.20251026.d4461df",
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.3",
19
- "@foundry-rs/forge-darwin-amd64": "1.4.3",
20
- "@foundry-rs/forge-linux-arm64": "1.4.3",
21
- "@foundry-rs/forge-linux-amd64": "1.4.3",
22
- "@foundry-rs/forge-win32-amd64": "1.4.3"
18
+ "@foundry-rs/forge-darwin-arm64": "1.4.4-nightly.20251026.d4461df",
19
+ "@foundry-rs/forge-darwin-amd64": "1.4.4-nightly.20251026.d4461df",
20
+ "@foundry-rs/forge-linux-arm64": "1.4.4-nightly.20251026.d4461df",
21
+ "@foundry-rs/forge-linux-amd64": "1.4.4-nightly.20251026.d4461df",
22
+ "@foundry-rs/forge-win32-amd64": "1.4.4-nightly.20251026.d4461df"
23
23
  },
24
24
  "publishConfig": {
25
25
  "access": "public",