Skip to content

Commit

Permalink
Add a placeholder default export to std
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Apr 16, 2024
1 parent b4d61e6 commit 60db51a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions projects/std/project.bri
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import { toolchain } from "./toolchain";

export * from "./core";
export * from "./toolchain";

export const project = {
name: "std",
version: "0.0.0",
};

// NOTE: This default export is a workaround so that `brioche build -p ./std`
// will build the toolchain. This will be removed once we support building
// other exports more easily. The `never` type is used to discourage external
// use.
export default function (): never {
return toolchain() as never;
}

0 comments on commit 60db51a

Please sign in to comment.