Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"main": "dist/main.js",
"private": true,
"scripts": {
"postinstall": "bunx cre-setup"
"postinstall": "bun x cre-setup"
},
"license": "UNLICENSED",
"dependencies": {
"@chainlink/cre-sdk": "^1.0.7",
"@chainlink/cre-sdk": "^1.0.8",
"zod": "3.25.76"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"main": "dist/main.js",
"private": true,
"scripts": {
"postinstall": "bunx cre-setup"
"postinstall": "bun x cre-setup"
},
"license": "UNLICENSED",
"dependencies": {
"@chainlink/cre-sdk": "^1.0.7",
"@chainlink/cre-sdk": "^1.0.8",
"viem": "2.34.0",
"zod": "3.25.76"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"main": "dist/main.js",
"private": true,
"scripts": {
"postinstall": "bunx cre-setup"
"postinstall": "bun x cre-setup"
},
"license": "UNLICENSED",
"dependencies": {
"@chainlink/cre-sdk": "^1.0.7"
"@chainlink/cre-sdk": "^1.0.8"
},
"devDependencies": {
"@types/bun": "1.2.21"
Expand Down
2 changes: 1 addition & 1 deletion install/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function Test-GoDependency {
function Test-BunDependency {
if (-not (Get-Command bun -ErrorAction SilentlyContinue)) {
Write-Warning "'bun' is not installed."
Write-Host " Bun $RequiredBunVersion or later is recommended to run TypeScript CRE workflows (e.g. 'postinstall: bunx cre-setup')."
Write-Host " Bun $RequiredBunVersion or later is recommended to run TypeScript CRE workflows (e.g. 'postinstall: bun x cre-setup')."
return
}

Expand Down
4 changes: 2 additions & 2 deletions install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ check_go_dependency() {
fi
}

# Check Bun dependency and version (for TypeScript workflows using 'bunx cre-setup').
# Check Bun dependency and version (for TypeScript workflows using 'bun x cre-setup').
check_bun_dependency() {
if ! command -v bun >/dev/null 2>&1; then
echo "Warning: 'bun' is not installed."
echo " Bun $REQUIRED_BUN_VERSION or later is recommended to run TypeScript CRE workflows (e.g. 'postinstall: bunx cre-setup')."
echo " Bun $REQUIRED_BUN_VERSION or later is recommended to run TypeScript CRE workflows (e.g. 'postinstall: bun x cre-setup')."
return
fi

Expand Down
Loading