aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-07-11Run prettierGravatar Jarred Sumner 1-10/+25
2022-07-11Fix broken buildGravatar Jarred Sumner 1-1/+1
2022-07-11[bun wiptest] Fix copyGravatar Jarred Sumner 1-1/+1
2022-07-11add depd browser polyfill (#517)Gravatar evan 2-0/+89
2022-07-11Fix macOS build (#525)Gravatar thislooksfun 1-5/+6
* style: remove some trailing whitespace * docs: make `identifier-cache` _before_ `jsc` Running them the other way around results in a failed build. * docs: `npm i` in both `test/snippets` _and_ `test/scripts` `test/scripts` has node packages as well. If they aren't installed, then some of the tests fail to start. * docs: add `rust` to list of homebrew packages One of the dependencies tries to run `cargo`, and will fail the build if it can't. The `cargo` command is provided by the `rust` brew package. * docs: clean up section on macOS code signing This requirement applies to _all_ macOS builds, not just those on Apple Silicon, and also had some slightly confusing wording. * build: remove leading whitespace from flags This leading whitespace was making my system treat the argument as a file with name ` -L$(LLVM_PREFIX)/lib` (leading whitespace included), instead of as a library path argument. * build: try llvm@13 first, then fall back on bare llvm The macOS instructions say to install `llvm@13`, which has a different path than the bare `llvm` install (`brew --prefix llvm@13` != `brew --prefix llvm`). This patch takes a slightly smarter approach: 1. If the user defined `LLVM_PREFIX` and it points to a valid path on disk, use that. 2. If `LLVM_PREFIX` is NOT a valid path, try setting it to the `llvm@13` path. 3. If it's STILL not a valid path, try the plain `llvm` path 4. If it's STILL not valid, set it to a user-friendly error. There might be a better solution for doing this, I'm not well-versed in Makefile syntax, but it's at least slightly better than it was before. * fix(build): update cast signature `std.math.cast` was changed in 0e6285c8fc31ff866df96847fe34e660da38b4a9. It used to throw if the cast would overflow, but now it returns `null` instead.
2022-07-10Merge pull request #464 from dkarter/mainGravatar Michell Brito 1-1/+1
fix: remove unnecessary quotes in commit message
2022-07-10Update GitHub URL to match new repo URL (#547)Gravatar Aurora Luna Takemi 6-7/+7
* Update repo URLs * GitHub URL update * Revert accidental URL changes
2022-07-10Remove unnecessary `Output.flush`s before `Global.exit` and `Global.crash` ↵Gravatar r00ster91 15-122/+2
(#535) * fix: add missing newline * refactor: std.process.exit -> Global.exit * fix: std.os.abort -> Global.exit I'm not sure about this one. Please verify. * cleanup: remove unnecessary `Output.flush`s
2022-07-09refactor(websockets): Rename `connectedWebSocketContext()`Gravatar Ryan Russell 2-3/+3
Signed-off-by: Ryan Russell <git@ryanrussell.org>
2022-07-09fix: actuality return result instead of ns timeGravatar Laurens Lavaert 1-2/+2
2022-07-09bugfix: performance.now function should return MS instead of nanoGravatar Laurens Lavaert 1-1/+1
2022-07-09update bash references to work in non-fhs compliant distrosGravatar lucasew 1-1/+1
Signed-off-by: lucasew <lucas59356@gmail.com>
2022-07-09fix: update build files to latest Zig versionGravatar sno2 16-49/+54
2022-07-09add partial node:net polyfillGravatar evanwashere 2-0/+75
2022-07-09Merge pull request #483 from pvinis/patch-1Gravatar Michell Brito 1-2/+2
2022-07-09fix: Append n when printing a BigIntGravatar FinnRG 1-1/+1
2022-07-09fix: Remove unnecessary n while formattingGravatar FinnRG 1-2/+2
2022-07-09Migrate to Zig v0.10.0Gravatar Alexander 9-46/+56
2022-07-09typoGravatar Pavlos Vinieratos 1-2/+2
2022-07-09feat: update default favicon to new logoGravatar Snazzah 2-1/+1
2022-07-08fix: remove unnecessary quotes in commit messageGravatar Dorian Karter 1-1/+1
These quotes are not necessary and appear literally in the commit
2022-07-08remove commentsGravatar Hyro 1-97/+0
2022-07-07fix: napi_get_version should return the Node-API version and not the bun versionGravatar K.J. Valencik 1-4/+2
2022-07-07[install] Use an identifier for the accept header valueGravatar Jarred Sumner 1-3/+9
2022-07-07Fixes https://github.com/Jarred-Sumner/bun/issues/341Gravatar Jarred Sumner 1-1/+1
2022-07-07Fix copyGravatar Jarred Sumner 2-2/+2
2022-07-07[strings] Fix typo in string_immutable.zigGravatar Ikko Ashimine 1-1/+1
occurences -> occurrences
2022-07-06[cli] ClarifyGravatar Jarred Sumner 1-1/+1
2022-07-06Improve error message for outdated linux kernelGravatar Jarred Sumner 1-1/+28
2022-07-06[tsconfig] Fix crash affecting preactGravatar Jarred Sumner 1-0/+15
2022-07-06[internal] Fix failing buildGravatar Jarred Sumner 1-4/+5
2022-07-06[bun install] Fix `NotSameFileSystem` errorGravatar Jarred Sumner 1-1/+1
2022-07-06fix: spawn thread on linuxGravatar Egor 1-3/+6
2022-07-06Fix #253 - Explicitly exported `randomUUID` from global `crypto`Gravatar Andrea Giammarchi 1-0/+3
2022-07-05Change fish path addition commandGravatar addy 1-2/+2
2022-07-05delete thisGravatar Jarred Sumner 1-37/+3
2022-07-05[create] Don't print timestamp because it formats weirdGravatar Jarred Sumner 1-3/+0
2022-07-05mitigate HMR bugGravatar Jarred Sumner 1-3/+3
2022-07-05[breaking] `bun` now prints the help menu instead of the dev serverGravatar Jarred Sumner 1-7/+3
2022-07-05[jsc] More careful code in dynamic requireGravatar Jarred Sumner 3-16/+19
2022-07-05Fix crash in dynamic import?Gravatar Jarred Sumner 1-14/+10
2022-07-05Fix bug in ffiGravatar Jarred Sumner 2-4/+4
2022-07-04Handle global require("string")Gravatar Jarred Sumner 4-19/+30
2022-07-04Fix case in dynamic require()Gravatar Jarred Sumner 1-5/+12
2022-07-04[internal] Fix duplicate symbol issueGravatar Jarred Sumner 1-3/+0
2022-07-04[itnernal] Cleanup some of the streams codeGravatar Jarred Sumner 6-749/+803
2022-07-04[internal] Add a note explaining what to do if this failsGravatar Jarred Sumner 1-0/+4
2022-07-04[jsc] Handle promise ownership (might revert this)Gravatar Jarred Sumner 1-3/+8
2022-07-04[jsc] Run JSC's deferredWorkTimer sometimesGravatar Jarred Sumner 1-1/+1
2022-07-04[jsc] Attempt to make detecting ArrayBuffer/Uint8Array fasterGravatar Jarred Sumner 1-13/+128