diff options
author | 2021-06-26 23:12:57 -0700 | |
---|---|---|
committer | 2021-06-26 23:12:57 -0700 | |
commit | 506d9b81a7c9dac5dd870f6735c39df105e72fd4 (patch) | |
tree | 4dc6e2f51867acf1cf5d601aa5444a99a9f95142 /src/api/schema.js | |
parent | 3a95a74b7feadb59a215ff06446ccebff4a4008e (diff) | |
download | bun-506d9b81a7c9dac5dd870f6735c39df105e72fd4.tar.gz bun-506d9b81a7c9dac5dd870f6735c39df105e72fd4.tar.zst bun-506d9b81a7c9dac5dd870f6735c39df105e72fd4.zip |
wip
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index c4341c1d4..e48d857a6 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -53,14 +53,18 @@ const ResolveModeKeys = { const Platform = { "1": 1, "2": 2, + "3": 3, "browser": 1, - "node": 2 + "node": 2, + "speedy": 3 }; const PlatformKeys = { "1": "browser", "2": "node", + "3": "speedy", "browser": "browser", - "node": "node" + "node": "node", + "speedy": "speedy" }; const JSXRuntime = { "1": 1, |