aboutsummaryrefslogtreecommitdiff
path: root/packages (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-09-14async-ify all node:fs functions (#5360)Gravatar Jarred Sumner 5-58/+5
* async all node:fs functions * draw the rest of the owl * LLVM & Clang 16 --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-09-14fix warnings during bun run publish-layer (#5419)Gravatar Nang Chan 1-0/+1
- add missing package @oclif/plugin-plugins to resolved warning: could not find package.json with { type: 'dev',
2023-09-13fix(doc): Add "compilerOptions" to bun-types README.md (#5325)Gravatar Patrick Klitzke 1-3/+5
Reading the documentation on bun-types it was not clear to me that the tsconfig.ts needs to look like this: ``` { "compilerOptions": { "types": ["bun-types"] } } ``` So i added the "compilerOptions" information.
2023-09-12docs: Made bun-types install as dev dependency in example (#5120)Gravatar Gordon Goldbach 1-1/+1
2023-09-12udate README.md (#5127)Gravatar Toby 1-1/+1
update path
2023-09-12fix(bun-lambda) Fix API Gateway V1 events and expand on Lambda documentation ↵Gravatar Mitchell K 3-50/+69
(#5161) * Fix issues with using V1 API Gateway events with Bun Lambda Layer. * Remove aws-lambda as it is not needed
2023-09-11fix(bun-lambda): Don't drop arguments in console.log(...) (#4992)Gravatar Justin "J.R." Hill 1-3/+3
Closes #4826
2023-09-08Fix bun-typesGravatar Ashcon Partovi 1-2/+2
2023-09-07Progress for Next.js (#4468)Gravatar dave caruso 5-2/+77
* L * ipc * asdfghjkl * dfghjk * it works! * types * patches for next.js * sdfghj * wsdfgn,./ * this * yolo * okay loser * asdfghjk * add some more APIs * MESS * sdfghjkl * remove native events from streams * stuff * remove lazy(primordials) test * debugging * okay * less fake extensions object * fix `Buffer.toString()` args logic * fix deserialize * make tests work * add test for `Buffer.toString` args * Update server.zig * remove test * update test * Update spawn-streaming-stdin.test.ts * fix linux build * Update fs.test.ts * cli message improvements * dfshaj * Fix fs.watch bug maybe? * remove --------- Co-authored-by: Dylan Conway <dylan.conway567@gmail.com>
2023-09-06feat(fetch) rejectUnauthorized and checkServerIdentity (#4514)Gravatar Ciro Spaciari 2-30/+30
* enable root certs on fetch * rebase * fix lookup * some fixes and improvements * fmt * more fixes * more fixes * check detached onHandshake * fix promise case * fix cert non-Native * add fetch tls tests * more one test
2023-09-06Add bun-types to 'bun fmt' scriptGravatar Ashcon Partovi 2-18/+20
2023-09-06Add types for watchFile and unwatchFileGravatar Ashcon Partovi 1-1/+171
2023-09-06Add types for cp and cpSyncGravatar Ashcon Partovi 2-0/+106
2023-09-05update root certs (#4499)Gravatar Ciro Spaciari 2-912/+1993
2023-09-01bun-vscode 0.0.8Gravatar Colin McDonnell 3-41/+39
2023-09-01Update commandsGravatar Colin McDonnell 3-4/+6
2023-09-01Fix debug console from appears on startGravatar Ashcon Partovi 2-2/+5
2023-09-01Add configuration options to extensionGravatar Ashcon Partovi 5-5/+137
2023-09-01Fix run button starting cwd at /Gravatar Ashcon Partovi 1-0/+2
2023-09-01Fix background colorGravatar Ashcon Partovi 1-2/+3
2023-09-01Allow older versions of VSCodeGravatar Ashcon Partovi 2-6/+5
2023-09-01Fix README for extensionGravatar Ashcon Partovi 2-7/+12
2023-09-01Update VSCode extensionGravatar Ashcon Partovi 1-3/+4
2023-09-01Fix breakpoint on entry for extensionGravatar Ashcon Partovi 5-18/+15
2023-08-31JavaScript Debug Terminal == Bun TerminalGravatar Ashcon Partovi 1-0/+32
2023-08-31Make breakpoints faster in VSCode extensionGravatar Ashcon Partovi 1-241/+327
2023-08-31Fix vscode debug terminalGravatar Ashcon Partovi 1-21/+0
2023-08-29More support for DAP (#4380)Gravatar Ashcon Partovi 9-544/+1036
* Fix reconnect with --watch * Support setVariable * Support setExpression * Support watch variables * Conditional and hit breakpoints * Support exceptionInfo * Support goto and gotoTargets * Support completions * Support both a URL and UNIX inspector at the same time * Fix url * WIP, add timeouts to figure out issue * Fix messages being dropped from debugger.ts * Progress * Fix breakpoints and ref-event-loop * More fixes * Fix exit * Make hovers better * Fix --hot
2023-08-29Fix assertion failure in spawn-related tests (#4400)Gravatar Jarred Sumner 1-6/+19
* Clean up some of the event loop code * Support timeouts * Defer freeing FilePoll --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-29[git] Normalize line endingsGravatar Jarred Sumner 11-1523/+1523
2023-08-28Bring uSockets & uWebSockets forks into Bun's repository (#4372)Gravatar Jarred Sumner 29257-0/+221204
* Move uWebSockets and uSockets forks into Bun's repository * Update Makefile * Update settings.json * Update libuwsockets.cpp * Remove backends we won't be using * Update bindings.cpp --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-27@electroid's dap changes (#4367)Gravatar Jarred Sumner 12-967/+931
* Rework terminal, launch is still WIP * Use the proper Terminal profile API * More changes * progress --------- Co-authored-by: Ashcon Partovi <ashcon@partovi.net>
2023-08-26More improvements to debugger support (#4345)Gravatar Ashcon Partovi 54-505/+35897
* More fixes for dap * More changes * More changes 2 * More fixes * Fix debugger.ts * Bun Terminal
2023-08-25Automatically hot reload Bun.serve() (#4344)Gravatar Jarred Sumner 1-0/+24
* Automatically hot reload Bun.serve() * Update doc * Update example --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-25[Inspector] Get firefox to workGravatar Jarred Sumner 1-3/+44
2023-08-24Improved support for `debug-adapter-protocol` (#4186)Gravatar Ashcon Partovi 71-9215/+13540
* Improve support for \`debug-adapter-protocol\` * More improvements, fix formatting in debug console * Fix attaching * Prepare for source maps * Start of source map support, breakpoints work * Source map support * add some package.jsons * wip * Update package.json * More fixes * Make source maps safer if exception occurs * Check bun version if it fails * Fix console.log formatting * Fix source maps partly * More source map fixes * Prepare for extension * watch mode with dap * Improve preview code * Prepare for extension 2 --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-08-24Listen on a unix domain socket with Bun.serve() (#4311)Gravatar Jarred Sumner 2-35/+221
* Update response.zig * Comment this out for now * Support unix domain socket in Bun.serve() * Add test * add types * Update JSFetchHeaders.cpp * comment this test out * tls unix web socket serve options --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
2023-08-24Update toml import type testGravatar Colin McDonnell 1-1/+1
2023-08-24Use noEmitGravatar Colin McDonnell 5-14/+8
2023-08-24Update bun-polyfills & bun-wasm (#4246)Gravatar jhmaster 7-132/+111
* automate Bun.version & revision polyfills * polyfill Bun.gc * bun:jsc module initial polyfills * update peechy schema * bun-polyfills: fix some project configs * bun-wasm: lots of fixes * bun-polyfills: Bun.Transpiler impl. * revision hash update
2023-08-23Add Debugger docs and a couple guides (#4281)Gravatar Colin McDonnell 1-1/+1
* Add debugger docs. Add guides. * Add files
2023-08-23Update globals.d.ts (#4276)Gravatar VietnamecDevelopment 1-1/+1
2023-08-23Fix ffi type (#4265)Gravatar Code Hz 2-49/+272
* add readonly so it works with as const * split ffi type infer to args and returns * add JSCallback to FFITypeToArgsType * add read functions * simplify FFITypeOrString * fix cstring type * fix pointer type test * fix readonly * add unknown handling * trigger action * use Parameters * add read type test * add other read function to tests
2023-08-23Fix more types. (#4273)Gravatar xxxhussein 3-16/+12
2023-08-22Fix Bun.inspect typesGravatar Colin McDonnell 1-1/+1
2023-08-21Docs and types for v0.8.0 (#4199)Gravatar Colin McDonnell 3-11/+251
* Improve test documentation * Update nodejs compat docs with tty * Add debugger guide * Document Bun.inspect.custom, improve bun test nav * Address reviews * Update Bun.file types * Add Nuxt guide * Add tty types
2023-08-21feat: Implement Bun.inspect.custom (#4243)Gravatar dave caruso 1-0/+6
* add Bun.inspect.custom * test * Add Types
2023-08-21Implement FileGravatar Jarred Sumner 1-1/+23
2023-08-18feat: add self-closing & can-have-content (#4206)Gravatar Brúnó Salomon 1-0/+8
2023-08-17Add `util.inspect.custom` support to `util.inspect/Bun.inspect/console.log` ↵Gravatar dave caruso 1-4/+10
(#4194) * start work on util.inspect.custom * asdf * finish util inspect custom inspect * inspect * fix tests * revert * tidy * revert * oops * test * fix issues