aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2023-06-27don't overwrite `__esModule`Gravatar Dylan Conway 2-79/+83
2023-06-27add `__esModule`Gravatar Dylan Conway 2-117/+119
2023-06-27[bun:sqlite] enable FTS5 on linux build (#3431)Gravatar Benjamin Ryan 2-1/+19
* [bun:sqlite] enable FTS5 on linux build * prettier
2023-06-27Fix some checksGravatar Jarred Sumner 1-3/+3
2023-06-27add todo commentGravatar Dylan Conway 1-0/+2
2023-06-27getIfPropertyExists is safer than getDirect (#3391)Gravatar Jarred Sumner 1-16/+17
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-27fix macrosGravatar Dylan Conway 1-1/+1
2023-06-27Update Stric page in Ecosystem (#3399)Gravatar Revenity 1-8/+8
2023-06-27Add builtin exports listGravatar Jarred Sumner 4-0/+30211
2023-06-27Fix docker tag on releasebun-v0.6.11Gravatar Ashcon Partovi 1-2/+2
2023-06-27RegenerateGravatar Jarred Sumner 1-3/+3
2023-06-27Fix `node:util.callbackify` (#3428)Gravatar Ai Hoshino 2-2/+326
* remove the incorrect parameters Close: https://github.com/oven-sh/bun/issues/3424 * fix error code * add callbackify tests * fix function type * ensure `done` is called when error occurred
2023-06-27Update NodeModuleModule.cppGravatar Jarred Sumner 1-2/+5
2023-06-27Update build-idGravatar Jarred Sumner 1-1/+1
2023-06-27minor build diffs (#3427)Gravatar Alex Lam S.L 7-48/+48
2023-06-26Fix default export of `"module"` modulebun-v0.6.10Gravatar Jarred Sumner 2-46/+61
2023-06-26fix #3412 (#3422)Gravatar dave caruso 2-4/+22
2023-06-26webpack test and add empty `prototype` prop to module (#3421)Gravatar Dylan Conway 6-4/+57
2023-06-26Tweak the ramSize setting because /= 1024 is causing CI to fail on arm64 ↵Gravatar Jarred Sumner 1-1/+7
when there's only 8 GB of ram
2023-06-26Update crypto.mjsGravatar Jarred Sumner 1-8/+2
2023-06-26change the text from "error" to "warn"Gravatar Jarred Sumner 1-5/+7
2023-06-26Update bundle_v2.zig (#3420)Gravatar Dylan Conway 1-1/+1
2023-06-26docs: add troubleshooting section to installation page (#3389)Gravatar Peter Weinberg 2-7/+7
* docs: add troubleshooting section to installation page * Add note for unzip * Update msg in install.sh --------- Co-authored-by: Colin McDonnell <colinmcd94@gmail.com>
2023-06-26[bun install] Implement `--exact` flag (#3409)Gravatar Jarred Sumner 8-15/+155
* [bun install] Implement `--exact` flag * Rename to --save-exact * Rename --exact to --save-exact * Update bun-add.test.ts * We're going with --exact as the flag name --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-26Fix .rejectsGravatar Jarred Sumner 2-14/+29
2023-06-26`.randomInt()` support (#3357)Gravatar Silas Rech 7-5/+53
* Add initial .randomInt() fallback * Add basic .randomInt() test * Attempt creating a native implementation * Switch to JSC.wrapWithHasContainer * Switch to .jsNumberFromUint64(), it seems like using just .jsNumber() causes the number to overflow in some cases * Regenerate out folder after rebasing
2023-06-26Runtime support for `__esModule` annotations (#3393)Gravatar Jarred Sumner 17-15/+221
* Runtime support for `__esModule` annotations * Ignore `__esModule` annotation when `"type": "module"` is set --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-26test moved to `node-module-module.test.js`Gravatar Dylan Conway 1-6/+0
2023-06-26Implement writev & readv (#3419)Gravatar Jarred Sumner 10-12/+611
* [node:fs] Implement `writev` and `readv` * writev & readv tests * cast to const type * woops * cast --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-26[install] support trustedDependencies (#3288)Gravatar Alex Lam S.L 9-259/+342
* [install] support trustedDependencies closes #2073 * use `strings.indexOfChar()` * use hashes instead of strings * utilise `inline else`
2023-06-26implement `_nodeModulePaths` and `require.main.paths` (#3411)Gravatar Dylan Conway 5-11/+150
* tests in progress * add `require.main.paths`, add every dir up to root * remove imports
2023-06-25Fix test failures in import.meta (#3403)Gravatar Jarred Sumner 16-291/+350
* Fix test failures in import.meta * regenerate * Use bound functions for `import.meta.require` and `import.meta.require.resolve` and `Module.createRequire` --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-25Fixes #3334 (#3401)Gravatar Jarred Sumner 2-34/+84
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-25Use bun.String in mkdir (#3404)Gravatar Jarred Sumner 1-13/+19
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-25Update schema.zigGravatar Jarred Sumner 1-1/+1
2023-06-25remove very old stuffGravatar Jarred Sumner 24-10361/+0
2023-06-25Update WebKitGravatar Jarred Sumner 1-0/+0
2023-06-25chore: update lol-html version (#3356)Gravatar Brúnó Salomon 5-3/+29
* chore: update lol-html version * add tests --------- Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
2023-06-25Add support for install with --frozen-lockfile (#3365)Gravatar Tiago Teixeira 18-2/+142
* Add support for install with --frozen-lockfile * Add test * Add test for frozenLockfile in config file
2023-06-25fixupGravatar Jarred Sumner 1-2/+2
2023-06-25Support reading embedded files in compiled executables (#3405)Gravatar Jarred Sumner 7-17/+124
* Support reading embedded files in compiled executables * :nail_care: --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-25[fs.watch] fix reference/deinit (#3396)Gravatar Ciro Spaciari 11-259/+351
* fix js reference * fix close oops * refactor + hasPendingActivity * fmt * fix race conditions * fixup * add test calling close on error event * fix close inside close + test * cleanup
2023-06-25Fix the parameters of WriteStream constructor. (#3402)Gravatar Ai Hoshino 2-2/+40
* Fix the parameters of the `WriteStream` constructor. Close: https://github.com/oven-sh/bun/issues/3395 * test append mode in `createWriteStream` * fix lint * wait first stream finished
2023-06-26[install] fix hang in `bun install --production` (#3406)Gravatar Alex Lam S.L 2-16/+46
2023-06-25Add `process.mainModule`Gravatar Jarred Sumner 2-0/+17
2023-06-25FIx launch.json cwdGravatar Jarred Sumner 1-5/+12
2023-06-25Speculative fix for regression causing a hang with `install --production` ↵Gravatar Jarred Sumner 1-26/+26
(#3400) Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-06-25Revert "make these strings lazy"Gravatar Jarred Sumner 1-37/+26
This reverts commit 777f98bd1068239033718c44bdcfca87e58a91d5.
2023-06-25make these strings lazyGravatar Jarred Sumner 1-26/+37
2023-06-25Make timeout longerGravatar Jarred Sumner 1-1/+1