Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-12-23 | Prevent running compinit twice | 1 | -1/+4 | ||
2022-12-23 | Disable optimization | 1 | -61/+62 | ||
2022-12-23 | add node_modules to bin path | 1 | -2/+2 | ||
2022-12-22 | Make `bun pm ls` only show top-level by default | 2 | -2/+38 | ||
2022-12-22 | `npx` -> `bunx` | 1 | -0/+14 | ||
2022-12-22 | add rome | 1 | -0/+1 | ||
2022-12-22 | [install] fix remaining corner cases with dependency resolution (#1649) | 1 | -45/+20 | ||
2022-12-22 | Update bench (#1648) | 2 | -8/+8 | ||
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu> | |||||
2022-12-22 | fix finding package bin after install | 1 | -1/+1 | ||
2022-12-22 | pass callback to super _construct if possible | 1 | -1/+5 | ||
2022-12-22 | fix createReadStream hang | 1 | -1/+1 | ||
highWaterMark test not working correctly but this prevents createReadStream from hanging | |||||
2022-12-22 | [install] avoid dependency conflicts between siblings (#1647) | 1 | -26/+27 | ||
- consider `peerDependencies` when hoisting packages | |||||
2022-12-22 | fix `bun install` dependency resolution (#1643) | 1 | -10/+28 | ||
- avoid conflicts due to hoisted placement when parent and child depends on different versions of the same package | |||||
2022-12-22 | don't log for ctrl + c | 1 | -4/+8 | ||
2022-12-21 | woops | 1 | -2/+2 | ||
2022-12-21 | Update launch.json | 1 | -0/+12 | ||
2022-12-21 | Add test for stat() | 1 | -0/+9 | ||
2022-12-21 | Fix throw | 1 | -1/+1 | ||
2022-12-21 | Add section about `--bun` | 1 | -0/+14 | ||
2022-12-21 | Bun v0.4.0 | 5 | -7/+7 | ||
2022-12-21 | fix jest hooks in bun-test (#1639) | 2 | -2/+79 | ||
* fix(jest) fix broken jest hooks * add tests | |||||
2022-12-21 | [bunx] Install symlink with completions | 1 | -10/+65 | ||
@colinhacks lmk if you have ideas where else it should attempt to isntall: 1) same dir as `bun` 2) $BUN_INSTALL/bin/bunx 3) $HOME/.bun/bin/bunx 4) $HOME/.local/bin/bunx | |||||
2022-12-21 | [bunx] Make help a little prettier | 2 | -18/+46 | ||
2022-12-20 | Refactor some of `bun pm` | 1 | -73/+58 | ||
2022-12-20 | Update ZigGlobalObject.cpp | 1 | -3/+3 | ||
2022-12-20 | typo | 1 | -3/+3 | ||
2022-12-20 | [web] Support multiple arguments in `setTimeout`, `setInterval`, and ↵ | 5 | -10/+139 | ||
`setImmediate` | |||||
2022-12-20 | add tests for #1633 (#1635) | 3 | -11/+69 | ||
- `setImmediate(fn, ...args)` - `setInterval(fn, delay, ...args)` - `setTimeout(fn, delay, ...args)` | |||||
2022-12-20 | [bunx] Improve reliability by checking the `"bin"` from package.json if ↵ | 2 | -10/+233 | ||
necessary | |||||
2022-12-20 | Fixes https://github.com/oven-sh/bun/issues/1636 | 1 | -0/+2 | ||
2022-12-19 | Use endsWith | 1 | -1/+2 | ||
2022-12-19 | New subcommand: `bunx` (#1634) | 6 | -142/+370 | ||
* Implement `bunx` * copy cleanup Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-12-19 | [Bun.write] Slightly better handling for older linux kernels that lack ↵ | 2 | -2/+22 | ||
io_uring support If io_uring is unsupported, we do the writes synchronously even if they're huge | |||||
2022-12-18 | Regenerate builtins | 1 | -4/+27 | ||
2022-12-17 | bug compatible with `stdin.on("readable")` (#1626) | 3 | -49/+95 | ||
2022-12-17 | Upgrade WebKit | 6 | -28/+28 | ||
2022-12-17 | Update globals.d.ts | 1 | -2/+5 | ||
2022-12-17 | Add warning in import.meta.require | 1 | -0/+5 | ||
2022-12-17 | Delete Oniguruma (#1625) | 69 | -3531/+19 | ||
* 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-17 | Missing from commit | 1 | -23/+22 | ||
2022-12-17 | Fixes https://github.com/oven-sh/bun/issues/1624 | 1 | -41/+1 | ||
This was disabled anyway | |||||
2022-12-17 | Regenerate builtins | 1 | -7/+2 | ||
2022-12-17 | Update transpiler.test.js | 1 | -17/+24 | ||
2022-12-17 | Update WebKit | 6 | -28/+28 | ||
2022-12-17 | Add node:assert bench | 1 | -0/+15 | ||
2022-12-17 | Update Makefile | 1 | -0/+5 | ||
2022-12-17 | [bun-types] Add optional param to Bun.deepEquals | 1 | -1/+7 | ||
2022-12-17 | Use Bun.deepEqual in `assert` module | 1 | -1504/+41 | ||
2022-12-17 | Use `Buffer.isBuffer` and node:util/types in `util` module | 2 | -1/+651 | ||
2022-12-17 | Implement `node:util/types` | 7 | -0/+659 | ||
Fixes #1617 |