@foundry-rs/chisel 1.4.4-nightly.20251030.6d94888 → 1.4.4

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/bin.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  import { BINARY_NAME, colors, KNOWN_TOOLS, PLATFORM_SPECIFIC_PACKAGE_NAME, resolveTargetTool } from '#const.mjs'
2
4
  import * as NodeChildProcess from 'node:child_process'
3
5
  import * as NodeFS from 'node:fs'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foundry-rs/chisel",
3
- "version": "1.4.4-nightly.20251030.6d94888",
3
+ "version": "1.4.4",
4
4
  "type": "module",
5
5
  "homepage": "https://getfoundry.sh/chisel",
6
6
  "description": "Chisel is a fast, utilitarian, and verbose Solidity REPL",
@@ -13,14 +13,14 @@
13
13
  "postinstall.mjs"
14
14
  ],
15
15
  "scripts": {
16
- "postinstall": "node ./postinstall.mjs"
16
+ "postinstall": "TARGET_TOOL=chisel node ./postinstall.mjs"
17
17
  },
18
18
  "optionalDependencies": {
19
- "@foundry-rs/chisel-darwin-arm64": "1.4.4-nightly.20251030.6d94888",
20
- "@foundry-rs/chisel-darwin-amd64": "1.4.4-nightly.20251030.6d94888",
21
- "@foundry-rs/chisel-linux-arm64": "1.4.4-nightly.20251030.6d94888",
22
- "@foundry-rs/chisel-linux-amd64": "1.4.4-nightly.20251030.6d94888",
23
- "@foundry-rs/chisel-win32-amd64": "1.4.4-nightly.20251030.6d94888"
19
+ "@foundry-rs/chisel-darwin-arm64": "1.4.4",
20
+ "@foundry-rs/chisel-darwin-amd64": "1.4.4",
21
+ "@foundry-rs/chisel-linux-arm64": "1.4.4",
22
+ "@foundry-rs/chisel-linux-amd64": "1.4.4",
23
+ "@foundry-rs/chisel-win32-amd64": "1.4.4"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public",
package/postinstall.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  // src/install.mjs
2
4
  import * as NodeCrypto from "node:crypto";
3
5
  import * as NodeFS from "node:fs";