Skip to content

Commit 97e4310

Browse files
committed
chore: sync versions
1 parent 7e55e0e commit 97e4310

File tree

10 files changed

+82
-58
lines changed

10 files changed

+82
-58
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,9 @@ jobs:
274274
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
275275
BUN_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
276276
with:
277-
scope: '@foundry-rs'
278-
bun-version: 'latest'
279-
registry-url: 'https://registry.npmjs.org'
277+
scope: "@foundry-rs"
278+
bun-version: "latest"
279+
registry-url: "https://registry.npmjs.org"
280280

281281
- name: Install dependencies
282282
working-directory: ./npm
@@ -296,7 +296,7 @@ jobs:
296296
bun run ./scripts/prepublish.ts \
297297
--arch=${{ env.ARCH }} \
298298
--forge-bin-path=${{ env.FORGE_BIN_PATH }}
299-
299+
300300
- name: Publish npm package
301301
shell: bash
302302
working-directory: ./npm
@@ -309,7 +309,7 @@ jobs:
309309
run: |-
310310
bun run ./scripts/publis.ts ./@foundry-rs/forge-${{ env.PLATFORM }}-${{ env.ARCH }}
311311
312-
# bump version, bump version of each item in `optionalDependencies`
312+
# bump version of each item in `optionalDependencies`
313313
- name: Finally, publish @foundry-rs/forge
314314
shell: bash
315315
working-directory: ./npm
@@ -322,7 +322,7 @@ jobs:
322322
BUMP_VERSION: "TODO: Find this"
323323
run: |-
324324
cd @foundr-rs/forge
325-
325+
326326
export NPM_TOKEN=${{ secrets.NPM_TOKEN }}
327327
export BUN_AUTH_TOKEN=${{ secrets.NPM_TOKEN }}
328328
export NPM_CONFIG_TOKEN=${{ secrets.NPM_TOKEN }}
@@ -335,7 +335,7 @@ jobs:
335335
--git-tag-version=false \
336336
--commit-hook=false \
337337
--allow-same-version
338-
338+
339339
bun pm pack
340340
341341
bun publish \

npm/@foundry-rs/forge-darwin-arm64/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@unfoundry/forge-darwin-arm64",
3-
"version": "0.0.3",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework (macOS arm64)",
77
"bin": {
8-
"forge": "./bin/forge"
8+
"forge": "./bin/forge.mjs"
99
},
1010
"os": [
1111
"darwin"
@@ -14,9 +14,7 @@
1414
"arm64"
1515
],
1616
"files": [
17-
"bin",
18-
"README.md",
19-
"package.json"
17+
"bin"
2018
],
2119
"engines": {
2220
"node": ">=20"

npm/@foundry-rs/forge-darwin-x64/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unfoundry/forge-darwin-x64",
3-
"version": "0.0.2",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework (macOS x64)",
@@ -13,6 +13,9 @@
1313
"cpu": [
1414
"x64"
1515
],
16+
"files": [
17+
"bin"
18+
],
1619
"engines": {
1720
"node": ">=20"
1821
},

npm/@foundry-rs/forge-linux-arm64/package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "@unfoundry/forge-linux-arm64",
3-
"version": "0.0.3",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework (Linux arm64)",
77
"bin": {
8-
"forge": "./bin/forge"
8+
"forge": "./bin/forge.mjs"
99
},
1010
"os": [
1111
"linux"
@@ -14,9 +14,7 @@
1414
"arm64"
1515
],
1616
"files": [
17-
"bin",
18-
"README.md",
19-
"package.json"
17+
"bin"
2018
],
2119
"engines": {
2220
"node": ">=20"

npm/@foundry-rs/forge-linux-x64/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unfoundry/forge-linux-x64",
3-
"version": "0.0.2",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework (Linux x64)",
@@ -13,6 +13,9 @@
1313
"cpu": [
1414
"x64"
1515
],
16+
"files": [
17+
"bin"
18+
],
1619
"engines": {
1720
"node": ">=20"
1821
},

npm/@foundry-rs/forge-win32-x64/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unfoundry/forge-win32-x64",
3-
"version": "0.0.2",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework (Windows x64)",
@@ -13,6 +13,9 @@
1313
"cpu": [
1414
"x64"
1515
],
16+
"files": [
17+
"bin"
18+
],
1619
"engines": {
1720
"node": ">=20"
1821
},

npm/@foundry-rs/forge/package.json

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@unfoundry/forge",
3-
"version": "0.0.3",
3+
"version": "1.2.3",
44
"type": "module",
55
"homepage": "https://getfoundry.sh",
66
"description": "Fast and flexible Ethereum testing framework",
@@ -14,16 +14,14 @@
1414
},
1515
"files": [
1616
"bin",
17-
"dist",
18-
"package.json",
19-
"README.md"
17+
"dist"
2018
],
2119
"scripts": {
2220
"postinstall": "node ./dist/install.mjs"
2321
},
2422
"optionalDependencies": {
25-
"@unfoundry/forge-darwin-arm64": "0.0.3",
26-
"@unfoundry/forge-linux-arm64": "0.0.3"
23+
"@unfoundry/forge-darwin-arm64": "1.2.3",
24+
"@unfoundry/forge-linux-arm64": "1.2.3"
2725
},
2826
"publishConfig": {
2927
"access": "public",

npm/bun.lock

Lines changed: 41 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
{
22
"private": true,
3-
"version": "0.0.2",
3+
"version": "0.0.1",
4+
"imports": {
5+
"#package.json": "./package.json"
6+
},
47
"scripts": {
58
"build": "tsdown --config='tsdown.config.ts'"
69
},
710
"dependencies": {
8-
"tsdown": "^0.12.8",
11+
"tsdown": "^0.12.9",
912
"typescript": "^5.8.3",
10-
"@types/bun": "^1.2.17",
11-
"@types/node": "^24.0.3"
13+
"@types/bun": "^1.2.18",
14+
"@types/node": "^24.0.14"
1215
},
13-
"license": "MIT OR Apache-2.0"
16+
"license": "MIT OR Apache-2.0",
17+
"$schema": "https://json.schemastore.org/package.json"
1418
}

npm/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
"#*": [
3737
"./src/*"
3838
],
39+
// "#Cargo.toml": [
40+
// "../Cargo.toml"
41+
// ],
3942
"#package.json": [
4043
"./package.json"
4144
]

0 commit comments

Comments
 (0)