diff options
author | 2022-07-02 01:35:41 -0700 | |
---|---|---|
committer | 2022-07-02 01:36:04 -0700 | |
commit | 29af6560d37e136cf9d9d7e766fd0c1430ac0c5c (patch) | |
tree | 7ef82fb29743b691f345c88daa6a3fcb83a2caec | |
parent | ef742f2fa8e83f8e559403f149cd8242f05b435d (diff) | |
download | bun-29af6560d37e136cf9d9d7e766fd0c1430ac0c5c.tar.gz bun-29af6560d37e136cf9d9d7e766fd0c1430ac0c5c.tar.zst bun-29af6560d37e136cf9d9d7e766fd0c1430ac0c5c.zip |
[internal] Add react-dom as a dev dependency for the tests
-rw-r--r-- | package.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json index 8e6b1d517..7cc7eec8c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "dependencies": { "mitata": "^0.1.3", "peechy": "0.4.32", - "react": "^17.0.2" + "react": "^17.0.2", + "react-dom": "^18.2.0" }, "scripts": { "build-runtime": "esbuild --target=esnext --bundle src/runtime/index.ts --format=iife --platform=browser --global-name=BUN_RUNTIME > src/runtime.out.js; cat src/runtime.footer.js >> src/runtime.out.js", |