From 7e09835e865284aa18ae9568f23b35580d8e9392 Mon Sep 17 00:00:00 2001 From: Lukas Holzer Date: Tue, 19 Sep 2023 18:19:48 +0200 Subject: [PATCH] chore: export bun as runtime --- packages/build-info/src/runtime/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/build-info/src/runtime/index.ts b/packages/build-info/src/runtime/index.ts index 9e832007c8..080500ba4c 100644 --- a/packages/build-info/src/runtime/index.ts +++ b/packages/build-info/src/runtime/index.ts @@ -1,4 +1,5 @@ import { Brew } from './brew.js' +import { Bun } from './bun.js' import { Emacs } from './cask.js' import { Go } from './go.js' import { Java } from './java.js' @@ -9,4 +10,4 @@ import { Ruby } from './ruby.js' import { Rust } from './rust.js' import { Swift } from './swift.js' -export const runtimes = [Node, Ruby, Brew, Emacs, Go, Java, Php, Rust, Swift, Python] +export const runtimes = [Node, Ruby, Brew, Bun, Emacs, Go, Java, Php, Rust, Swift, Python]