Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-09-07 | Fast path for `Bun.write` with short-ish strings & typed arrays | 1 | -11/+225 | ||
Helps with https://github.com/oven-sh/bun/issues/646 but does not fully fix | |||||
2022-09-07 | Mild perf improvement for bindings | 1 | -0/+1 | ||
2022-09-07 | Fix issue with loading bundled entry pointsbun-v0.1.11 | 1 | -3/+5 | ||
2022-09-06 | Fix missing file in SQL-raw test | 2 | -8/+9 | ||
2022-09-06 | workaround test failure | 9 | -103/+136 | ||
2022-09-06 | Move some things to the stack | 1 | -9/+10 | ||
2022-09-06 | Add a helper for static strings | 3 | -85/+94 | ||
2022-09-06 | [Bun.plugin] Fix validating `loader` | 1 | -3/+4 | ||
2022-09-06 | [Bun.plugin] Throw an error when the loader is invalid | 1 | -0/+2 | ||
2022-09-06 | Fix potential crash when resolving package.json "exports" | 1 | -1/+1 | ||
Have not seen a crash happen here yet | |||||
2022-09-06 | Fix bug with macros | 1 | -10/+8 | ||
2022-09-06 | [Bun.plugin] Allow slashes in namespaces | 1 | -1/+1 | ||
2022-09-06 | Update README.md | 1 | -151/+168 | ||
2022-09-06 | Rename LinkerMap to Aliases to be less confusing | 1 | -1/+1 | ||
2022-09-06 | Return a `Buffer` object for fs.readFile | 4 | -3/+56 | ||
2022-09-06 | Fix issue with `process` esm node export | 1 | -31/+68 | ||
2022-09-06 | Set a default Loader based on filename | 1 | -5/+7 | ||
2022-09-06 | Add `node:assert` to list of hardcoded modules to fix ESM compat issue | 2 | -13/+3241 | ||
2022-09-06 | Update README.md | 1 | -4/+27 | ||
2022-09-06 | Start to document loader api | 1 | -2/+130 | ||
2022-09-06 | preserve statements when generating a separate module for bun plugin | 1 | -2/+29 | ||
2022-09-06 | Loosen-up the streams polyfill | 1 | -21/+10 | ||
2022-09-06 | Add `@` to acceptable namespace characters | 1 | -1/+1 | ||
2022-09-06 | Make the plugins a little more resilient | 5 | -53/+81 | ||
2022-09-06 | Add missing `Blob` | 1 | -2/+2 | ||
2022-09-06 | Make fs extensible | 1 | -108/+113 | ||
2022-09-06 | Fix crash in Buffer module | 1 | -8/+11 | ||
2022-09-06 | Add native ReadableState (#1210) | 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 handling | 3 | -10/+11 | ||
2022-09-05 | Support async `onLoad` callbacks in `Bun.plugin` | 22 | -717/+1678 | ||
2022-09-05 | Move `generateObjectModuleSourceCode` to separate file to fix build error | 2 | -24/+31 | ||
2022-09-05 | `inline` | 1 | -1/+1 | ||
2022-09-05 | Missing #pragma once | 1 | -0/+2 | ||
2022-09-04 | Rename `is_macro_mode` -> `use_alternate_source_cache` | 2 | -4/+4 | ||
2022-09-04 | Some tests | 1 | -0/+19 | ||
2022-09-04 | `[node:module]` Implement `_resolveFileName`, stub `_nodeModulePaths` & `_cache` | 7 | -86/+150 | ||
Closes https://github.com/oven-sh/bun/issues/1111 | |||||
2022-09-04 | @globalPrivate -> @linkTimeConstant | 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` | 6 | -20/+59 | ||
2022-09-03 | Fix `createRequire()` in `node:module` | 10 | -161/+302 | ||
Fixes https://github.com/oven-sh/bun/issues/831 Fixes https://github.com/oven-sh/bun/issues/453 | |||||
2022-09-03 | Fix C++ intellisense | 1 | -14/+23 | ||
2022-09-03 | Fix build error | 1 | -6/+5 | ||
2022-09-03 | Add a code of conduct | 1 | -0/+12 | ||
Copied from Rust | |||||
2022-09-03 | update example react-is to v18(#1155) (#1172) | 1 | -2/+2 | ||
2022-09-03 | Fixes https://github.com/oven-sh/bun/issues/677 | 1 | -7/+9 | ||
2022-09-03 | chore(install-script): automatically add bun to path - bash shell (#1168) | 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-03 | Fix GitHub CLI installation (#1204) | 1 | -7/+29 | ||
A workaround for <https://github.com/cli/cli/issues/6175>. This commit references <https://github.com/devcontainers/features/pull/133>. | |||||
2022-09-03 | Plugin API (#1199) | 20 | -28/+1429 | ||
* Plugin API * Fix the bugs * Implement `"object"` loader Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> | |||||
2022-09-03 | fixed is_export and added test cases (#1203) | 2 | -1/+62 | ||
2022-09-02 | Update devcontainer scripts | 3 | -51/+60 | ||
Won't work until https://github.com/cli/cli/issues/6175 is fixed | |||||
2022-09-01 | allow set proxy for github (#1198) | 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` |