18 lines
203 B
TOML
18 lines
203 B
TOML
|
|
[phases.setup]
|
|
commands = [
|
|
"npm install -g bun"
|
|
]
|
|
|
|
[phases.install]
|
|
commands = [
|
|
"bun install"
|
|
]
|
|
|
|
[phases.build]
|
|
commands = [
|
|
"bun run build"
|
|
]
|
|
|
|
[phases.start]
|
|
commands = ["bun run start"]
|