aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-12-17Delete Oniguruma (#1625)Gravatar Jarred Sumner 63-2616/+4
* Update .gitmodules * Delete oniguruma * Delete Oniguruma * Make this test less flaky * :scissors: Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-12-17Missing from commitGravatar Jarred Sumner 1-23/+22
2022-12-17Fixes https://github.com/oven-sh/bun/issues/1624Gravatar Jarred Sumner 1-41/+1
This was disabled anyway
2022-12-17Regenerate builtinsGravatar Jarred Sumner 1-7/+2
2022-12-17Update WebKitGravatar Jarred Sumner 1-0/+0
2022-12-17Use Bun.deepEqual in `assert` moduleGravatar Jarred Sumner 1-1504/+41
2022-12-17Use `Buffer.isBuffer` and node:util/types in `util` moduleGravatar Jarred Sumner 2-1/+651
2022-12-17Implement `node:util/types`Gravatar Jarred Sumner 6-0/+378
Fixes #1617
2022-12-17Add `strict` option to Bun.deepEqualsGravatar Jarred Sumner 1-5/+12
2022-12-17[napi] Fix assertion failure when argv is nullGravatar Jarred Sumner 1-3/+20
2022-12-16add tests for `process.stdin` (#1621)Gravatar Alex Lam S.L 1-1/+1
2022-12-16[napi] Implement `napi_create_bigint_words`Gravatar Jarred Sumner 4-9/+42
warning: not tested
2022-12-15[js parser] Workaround symbol collision bugGravatar Jarred Sumner 1-1/+1
See https://github.com/oven-sh/bun/issues/1616 Fixes https://github.com/oven-sh/bun/issues/1594
2022-12-15[js parser] Skip appending empty statementsGravatar Jarred Sumner 1-1/+5
2022-12-15[js parser] Make `fnBodyContainsUseStrict` fasterGravatar Jarred Sumner 1-1/+4
2022-12-15[js parser] Ignore calls to import.meta.require that will never happenGravatar Jarred Sumner 1-0/+7
2022-12-15[js parser] Fix bug where `const {resolve} = require` throws "require is not ↵Gravatar Jarred Sumner 2-7/+20
defined"
2022-12-15[js printer] Fix missing space when printing import aliases with whitespace ↵Gravatar Jarred Sumner 1-4/+2
minification enabled
2022-12-15[node:process] Implement `process.argv0`, `process.execPath`Gravatar Jarred Sumner 5-5/+61
Fixes https://github.com/oven-sh/bun/issues/1599
2022-12-15Fix missing error when command not foundGravatar Jarred Sumner 2-3/+7
2022-12-15[node:process] Implement `process.abort()`Gravatar Jarred Sumner 1-0/+9
2022-12-15[bun run] Include signal code on errorGravatar Jarred Sumner 3-123/+107
2022-12-15[bun run] Introduce `--bun` flag to run in bun instead of nodeGravatar Jarred Sumner 4-78/+222
2022-12-15[process.stdin] Support reading from process.stdin in the same tickGravatar Jarred Sumner 2-5/+35
2022-12-15[bun run] Use `execve` instead of `posix_spawn` when bun no longer needs to ↵Gravatar Jarred Sumner 1-20/+78
run script/bin When we launch a script & there's nothing left to do, we should replace the process image with the new process instead of keeping the bun process alive while the other script is running.
2022-12-15fix(stream): make Readable.read work w/o _construct implemented (#1613)Gravatar Derrick Farris 3-19/+12
* fix(stream): put Readable._readableState.constructed default in spec (true, not false) * cleanup(readable): remove unnecessary _construct methods * test(stream): add test for Readable w/o _construct method
2022-12-14undo bad freeGravatar Dylan Conway 1-4/+0
2022-12-14remove incorrect connector characterGravatar Dylan Conway 1-3/+5
2022-12-13add `bun pm ls` for printing lockfiles (#1612)Gravatar Dylan Conway 2-1/+183
* list directory structure from lockfile * dim connectors and versions
2022-12-13[bun:jsc] Introduce `profile` functionGravatar Jarred Sumner 2-0/+54
2022-12-13Fix crash in `startSamplingProfiler`Gravatar Jarred Sumner 1-5/+3
2022-12-13Avoid creating closureGravatar Jarred Sumner 2-55/+53
2022-12-13make `process.stdin` work under TTY (#1611)Gravatar Alex Lam S.L 1-49/+35
- workarounds for #1607 & #1608 fixes #1604
2022-12-13Don't call debug streams getter when not in debugGravatar Jarred Sumner 1-93/+115
2022-12-13Fix bug where importing a binary file throws a SyntaxError. Instead, return ↵Gravatar Jarred Sumner 1-1/+19
the public path for that file
2022-12-13Add missing ifGravatar Jarred Sumner 1-1/+2
2022-12-13missing id when over 8 packagesGravatar Dylan Conway 1-3/+7
2022-12-13fix UBGravatar Jarred Sumner 1-1/+1
2022-12-13[crypto] Implement `scryptSync`Gravatar Jarred Sumner 4-10/+303
Fixes https://github.com/oven-sh/bun/issues/1228
2022-12-12some bugs make you feel like a 🤡Gravatar Jarred Sumner 1-1/+1
2022-12-12Add missing spaceGravatar Jarred Sumner 1-0/+1
2022-12-12[crypto] Implement crypto.timingSafeEqualGravatar Jarred Sumner 7-4/+134
This uses BoringSSL's memcmp function Fixes https://github.com/oven-sh/bun/issues/1308
2022-12-12fix(stream): Fix Readable.pipe() (#1606)Gravatar Derrick Farris 1-10/+14
* fix(stream): fix some debug logs that were breaking .pipe * fix(stream): another debug fix * test(stream): add test for .pipe
2022-12-12markbinding for utf8 length from utf16leGravatar Dylan Conway 2-226/+3
2022-12-12fix fallback install methodGravatar Dylan Conway 1-1/+4
2022-12-12[internal] Add helper to make it easier to print whitespaceGravatar Jarred Sumner 1-71/+74
2022-12-11[Transpiler] Implement `minifyWhitespace` optionGravatar Jarred Sumner 4-96/+254
2022-12-11[internal] further cleanup for `hoistSymbols`Gravatar Jarred Sumner 2-72/+88
2022-12-11fixupGravatar Jarred Sumner 1-26/+34
2022-12-11[internal] Change HashMap implementation for storing symbolsGravatar Jarred Sumner 12-1413/+94