Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
upgrade bun version and allow configuring version with SST_BUN_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Oct 18, 2024
1 parent cf20c65 commit 9e09159
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions pkg/flag/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ var SST_PRINT_LOGS = os.Getenv("SST_PRINT_LOGS") != ""
var SST_BUILD_CONCURRENCY = os.Getenv("SST_BUILD_CONCURRENCY")
var SST_SKIP_DEPENDENCY_CHECK = os.Getenv("SST_SKIP_DEPENDENCY_CHECK") != ""
var SST_TELEMETRY_DISABLED = os.Getenv("SST_TELEMETRY_DISABLED") == "1" || os.Getenv("DO_NOT_TRACK") == "1"
var SST_BUN_VERSION = os.Getenv("SST_BUN_VERSION")
var NO_BUN = os.Getenv("NO_BUN") != ""
7 changes: 6 additions & 1 deletion pkg/global/global.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ import (
)

var PULUMI_VERSION = "v" + sdk.Version.String()
var BUN_VERSION = func() string {
if flag.SST_BUN_VERSION != "" {
return flag.SST_BUN_VERSION
}
return "1.1.30"
}()

const BUN_VERSION = "1.1.29"
const UV_VERSION = "0.3.2"

var configDir = (func() string {
Expand Down

0 comments on commit 9e09159

Please sign in to comment.