diff options
author | 2022-05-19 05:37:18 -0700 | |
---|---|---|
committer | 2022-05-19 05:37:18 -0700 | |
commit | d4767ca763f5a484cc5ec005f0d81d02fdd34390 (patch) | |
tree | c8aa2df29d6fe425672496aba77621941360f1e8 /src/api/schema.js | |
parent | 07e695da031ae9638684e6f1bd2e4e29ca14d098 (diff) | |
download | bun-d4767ca763f5a484cc5ec005f0d81d02fdd34390.tar.gz bun-d4767ca763f5a484cc5ec005f0d81d02fdd34390.tar.zst bun-d4767ca763f5a484cc5ec005f0d81d02fdd34390.zip |
[wip] Solid.js support for Bun!
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index 1db65f2ca..ac28f56ab 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -581,14 +581,18 @@ const CSSInJSBehaviorKeys = { const JSXRuntime = { 1: 1, 2: 2, + 3: 3, automatic: 1, classic: 2, + solid: 3, }; const JSXRuntimeKeys = { 1: "automatic", 2: "classic", + 3: "solid", automatic: "automatic", classic: "classic", + solid: "solid", }; function decodeJSX(bb) { |