aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-09-06[Bun.plugin] Allow slashes in namespacesGravatar Jarred Sumner 1-1/+1
2022-09-06Rename LinkerMap to Aliases to be less confusingGravatar Jarred Sumner 1-1/+1
2022-09-06Return a `Buffer` object for fs.readFileGravatar Jarred Sumner 4-3/+56
2022-09-06Fix issue with `process` esm node exportGravatar Jarred Sumner 1-31/+68
2022-09-06Set a default Loader based on filenameGravatar Jarred Sumner 1-5/+7
2022-09-06Add `node:assert` to list of hardcoded modules to fix ESM compat issueGravatar Jarred Sumner 2-13/+3241
2022-09-06preserve statements when generating a separate module for bun pluginGravatar Jarred Sumner 1-2/+29
2022-09-06Loosen-up the streams polyfillGravatar Jarred Sumner 1-21/+10
2022-09-06Add `@` to acceptable namespace charactersGravatar Jarred Sumner 1-1/+1
2022-09-06Make the plugins a little more resilientGravatar Jarred Sumner 5-53/+81
2022-09-06Add missing `Blob`Gravatar Jarred Sumner 1-2/+2
2022-09-06Make fs extensibleGravatar Jarred Sumner 1-108/+113
2022-09-06Fix crash in Buffer moduleGravatar Jarred Sumner 1-8/+11
2022-09-06Add native ReadableState (#1210)Gravatar Zilin Zhu 12-123/+526
* use functionSpace for JSStringDecoderConstructor and fix console.log on prototype * Add native ReadableState * move kPaused to class property
2022-09-05[Bun.plugin] Clean up exception handlingGravatar Jarred Sumner 3-10/+11
2022-09-05Support async `onLoad` callbacks in `Bun.plugin`Gravatar Jarred Sumner 19-684/+1504
2022-09-05Move `generateObjectModuleSourceCode` to separate file to fix build errorGravatar Jarred Sumner 2-24/+31
2022-09-05`inline`Gravatar Jarred Sumner 1-1/+1
2022-09-05Missing #pragma onceGravatar Jarred Sumner 1-0/+2
2022-09-04Rename `is_macro_mode` -> `use_alternate_source_cache`Gravatar Jarred Sumner 2-4/+4
2022-09-04`[node:module]` Implement `_resolveFileName`, stub `_nodeModulePaths` & `_cache`Gravatar Jarred Sumner 7-86/+150
Closes https://github.com/oven-sh/bun/issues/1111
2022-09-04@globalPrivate -> @linkTimeConstantGravatar Jarred Sumner 6-111/+110
See https://github.com/WebKit/WebKit/pull/2553 I'm not 100% sure @linkTimeConstant is correct. Specifically, I don't know if it's a link time constant or just a global private thing.
2022-09-03[Node API] Fix `napi_module_register`Gravatar Jarred Sumner 6-20/+59
2022-09-03Fix `createRequire()` in `node:module`Gravatar Jarred Sumner 8-156/+263
Fixes https://github.com/oven-sh/bun/issues/831 Fixes https://github.com/oven-sh/bun/issues/453
2022-09-03Fix build errorGravatar Jarred Sumner 1-6/+5
2022-09-03Fixes https://github.com/oven-sh/bun/issues/677Gravatar Jarred Sumner 1-7/+9
2022-09-03chore(install-script): automatically add bun to path - bash shell (#1168)Gravatar Hyro 1-0/+49
* chore(install-script): automatically add bun to path - bash shell * add tildify * chore: make requested changes * fix: add equals true Co-authored-by: Wallunen <44848747+Wallunen@users.noreply.github.com> * fix: $XDG_CONFIG_HOME can be undefined Co-authored-by: Wallunen <44848747+Wallunen@users.noreply.github.com> Co-authored-by: Wallunen <44848747+Wallunen@users.noreply.github.com>
2022-09-03Plugin API (#1199)Gravatar Jarred Sumner 15-28/+1206
* Plugin API * Fix the bugs * Implement `"object"` loader Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-09-03fixed is_export and added test cases (#1203)Gravatar Dylan Conway 1-1/+0
2022-09-01allow set proxy for github (#1198)Gravatar usrtax 1-1/+3
in china , github is blocked, we use https://ghproxy.com/ for proxy for example use `wget https://ghproxy.com/https://github.com/stilleshan/ServerStatus/archive/master.zip` instead of `wget https://github.com/stilleshan/ServerStatus/archive/master.zip`
2022-09-01Fix failing Buffer tests (#1197)Gravatar Zilin Zhu 1-6/+6
2022-09-01Delete some dead codeGravatar Jarred Sumner 6-223/+2
2022-09-01[bun run] Silence `.env` loaded logGravatar Jarred Sumner 1-2/+5
Fixes https://github.com/oven-sh/bun/issues/1192
2022-09-01Add native StringDecoder (#1188)Gravatar Zilin Zhu 12-10/+639
* Add native StringDecoder * fix upon reviews * add Constructor and use LazyClassStructure
2022-09-01Fix crash in napi finalizerGravatar Jarred Sumner 1-1/+1
2022-09-01Fixes https://github.com/oven-sh/bun/issues/1183Gravatar Jarred Sumner 1-1/+2
2022-09-01Fix typo in futex.zig (#1186)Gravatar Ikko Ashimine 1-1/+1
Therefor -> Therefore
2022-08-30Add profiler support (#1110)Gravatar Bram Wasti 2-1/+66
2022-08-29Fixed JSBuffer write issues (#1175)Gravatar Taher 2-16/+13
2022-08-29Improve error when FFI fails to dlopen()Gravatar Jarred Sumner 1-2/+15
2022-08-29chore: Clean buffer C API (#1174)Gravatar Zilin Zhu 4-399/+149
2022-08-29Fixes https://github.com/oven-sh/bun/issues/1127Gravatar Jarred Sumner 1-1/+3
2022-08-28Remove code that doesn't workGravatar Jarred Sumner 10-632/+11
2022-08-28More reliable macOS event loop (#1166)Gravatar Jarred Sumner 7-124/+372
* More reliable macOS event loop * Reduce CPU usage of idling * Add another implementation * Add benchmark Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-08-28feat: hack in support for tsconfig `extends` (#1147)Gravatar yepitschunked 2-14/+47
* hack in support for extends * Update src/resolver/resolver.zig Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> * wip review fixes * fix style Co-authored-by: Victor Lin <victor.lin@airbnb.com> Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Victor Lin <vlin@twitter.com>
2022-08-28support pass null as NULL ptr (#1160)Gravatar Zilin Zhu 2-1/+7
2022-08-28[bun:ffi] Fix crash with uint64_tGravatar Jarred Sumner 3-9/+8
2022-08-28[bun:ffi] Fix int16 / uin16 maxGravatar Jarred Sumner 1-3/+6
2022-08-27Update WebKit (#1165)Gravatar Jarred Sumner 57-986/+1064
* Update WebKit * Fix `DataView` and non-8 bit sized typed arrays with TextDecoder * New WebKit Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-08-27Fix crash in `os` module on macOSGravatar Jarred Sumner 2-74/+108