Skip to content

Commit

Permalink
add bun to more places
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethan Arrowood committed Sep 11, 2023
1 parent a121f18 commit 4dd0b44
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
LATEST_PNPM=$(curl https://registry.npmjs.org/pnpm | jq '.["dist-tags"].latest + "+sha1." + .versions[.["dist-tags"].latest].dist.shasum')
LATEST_YARN=$(curl https://registry.npmjs.org/yarn | jq '.["dist-tags"].latest + "+sha1." + .versions[.["dist-tags"].latest].dist.shasum')
LATEST_BERRY=$(jq -n '$version + "+sha224." + $checksum' --arg version "$LATEST_BERRY_VERSION" --arg checksum "$(curl https://repo.yarnpkg.com/"$LATEST_BERRY_VERSION"/packages/yarnpkg-cli/bin/yarn.js | openssl dgst -sha224 | cut -d' ' -f2)")
LATEST_BUN=$(curl https://registry.npmjs.org/bun | jq '.["dist-tags"].latest + "+sha1." + .versions[.["dist-tags"].latest].dist.shasum')
git --no-pager show HEAD:config.json | jq '. * '"{
definitions: {
Expand All @@ -41,6 +42,9 @@ jobs:
default: $LATEST_BERRY,
},
},
bun: {
default: $LATEST_BUN,
}
},
}" > config.json
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
}
},
"bun": {
"default": "1.0.0",
"default": "1.0.0+sha1.318110dc2c46e1559fb5fef40884ebe77b711934",
"fetchLatestFrom": {
"type": "npm",
"package": "bun"
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@
"pnpm": "./dist/pnpm.js",
"pnpx": "./dist/pnpx.js",
"yarn": "./dist/yarn.js",
"yarnpkg": "./dist/yarnpkg.js"
"yarnpkg": "./dist/yarnpkg.js",
"bun": "./dist/bun",
"bunx": "./dist/bunx"
},
"executableFiles": [
"./dist/npm.js",
Expand All @@ -81,6 +83,7 @@
"./dist/yarn.js",
"./dist/yarnpkg.js",
"./dist/corepack.js",
"./dist/bun",
"./shims/npm",
"./shims/npm.ps1",
"./shims/npx",
Expand Down

0 comments on commit 4dd0b44

Please sign in to comment.