Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement TOML & JSON support in Bun's new bundler #2609

Merged
merged 3 commits into from
Apr 10, 2023
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
6 changes: 6 additions & 0 deletions src/api/schema.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions src/api/schema.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/api/schema.peechy
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ smol Loader {
toml = 8;
wasm = 9;
napi = 10;
base64 = 11;
dataurl = 12;
}

smol FrameworkEntryPointType {
Expand Down
6 changes: 6 additions & 0 deletions src/api/schema.zig
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,12 @@ pub const Api = struct {
/// napi
napi,

/// base64
base64,

/// dataurl
dataurl,

_,

pub fn jsonStringify(self: *const @This(), opts: anytype, o: anytype) !void {
Expand Down
Loading