diff options
author | 2023-05-11 17:42:54 -0400 | |
---|---|---|
committer | 2023-05-11 14:42:54 -0700 | |
commit | 6a163cf933542506354dc836bd92693bcae5939b (patch) | |
tree | 2eaeee9cddeb930792b96de6ed040a9877ebc318 /bench | |
parent | 02cad591f8c56f801fb9ccc480bf9547484144c2 (diff) | |
download | bun-6a163cf933542506354dc836bd92693bcae5939b.tar.gz bun-6a163cf933542506354dc836bd92693bcae5939b.tar.zst bun-6a163cf933542506354dc836bd92693bcae5939b.zip |
bundler tests and improve `Bun.build` return type (#2833)
* importstar_ts
* tests
* run acorn test suite
* bench tweaks
* test
* bun.build tests very incomplete
* remove dataurl and base64 loaders from tests since they dont work yet
* tests
* stuff
* stuff
* add errors and array of blobs
* work so far
* docs
* requested changes
* fix overwrite docs
* remove this file
Diffstat (limited to 'bench')
-rw-r--r-- | bench/react-hello-world/react-hello-world.jsx | 2 | ||||
-rw-r--r-- | bench/sqlite/deno.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bench/react-hello-world/react-hello-world.jsx b/bench/react-hello-world/react-hello-world.jsx index eac44d266..ae889f811 100644 --- a/bench/react-hello-world/react-hello-world.jsx +++ b/bench/react-hello-world/react-hello-world.jsx @@ -1,5 +1,5 @@ // to run this: -// NODE_ENV=production bun --jsx-production react-hello-world.jsx +// NODE_ENV=production bun react-hello-world.jsx // Make sure you're using react-dom@18.3.0 or later. // Currently that is available at react-dom@next (which is installed in this repository) diff --git a/bench/sqlite/deno.js b/bench/sqlite/deno.js index 821cf5149..cc69a5288 100644 --- a/bench/sqlite/deno.js +++ b/bench/sqlite/deno.js @@ -1,4 +1,4 @@ -import { Database } from "https://deno.land/x/sqlite3@0.8.0/mod.ts"; +import { Database } from "https://deno.land/x/sqlite3@0.9.1/mod.ts"; import { run, bench } from "../node_modules/mitata/src/cli.mjs"; const db = new Database("./src/northwind.sqlite"); |