diff options
author | 2021-07-01 05:12:15 -0700 | |
---|---|---|
committer | 2021-07-01 05:12:15 -0700 | |
commit | b7d7fac635d260a09383212bfaecc3a25bfb9881 (patch) | |
tree | 6f8f76d6d1d3e735f99654024b38e19624c0cba0 /src/api/schema.js | |
parent | a1d3191b89de8f6a05469cc50d7685d7d24d77d1 (diff) | |
download | bun-b7d7fac635d260a09383212bfaecc3a25bfb9881.tar.gz bun-b7d7fac635d260a09383212bfaecc3a25bfb9881.tar.zst bun-b7d7fac635d260a09383212bfaecc3a25bfb9881.zip |
this kind of works, but there is a crash when bundling. I think its missing a Stmt.Data.Store.reset()
Former-commit-id: 88aad6aeb19f3d1d73ced59a7a5aaddc2d7408ee
Diffstat (limited to 'src/api/schema.js')
-rw-r--r-- | src/api/schema.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/api/schema.js b/src/api/schema.js index e48d857a6..a8241f345 100644 --- a/src/api/schema.js +++ b/src/api/schema.js @@ -671,6 +671,10 @@ function decodeTransformOptions(bb) { result["node_modules_bundle_path"] = bb.readString(); break; + case 22: + result["javascript_framework_file"] = bb.readString(); + break; + default: throw new Error("Attempted to parse invalid message"); } @@ -835,6 +839,12 @@ bb.writeByte(encoded); bb.writeByte(21); bb.writeString(value); } + + var value = message["javascript_framework_file"]; + if (value != null) { + bb.writeByte(22); + bb.writeString(value); + } bb.writeByte(0); } |