Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-11 | `require.resolve` in the runtime should use CommonJS export conditions | 1 | -2/+2 | ||
2023-01-10 | attempt (unsuccessfully) to improve c++ build time | 1 | -2/+2 | ||
2022-11-03 | Introduce `import.meta.primordials` for builtin JS | 1 | -0/+3 | ||
the `import.meta` object in Bun now has a `primordials` object which makes a handful of globals safe for access. Inside of bun: or node: modules, it is a special object (ownKeys is not implemented, so Object.keys() wont work on it) - Array - String - `isPromise` - `isCallable` - `isConstructable` - `tryGetById(foo, "bar')` which is like foo?.bar - `arrayPush` which is like `Array.prototype.push` - `Bun` - `isAbortSignal` cc @ThatOneBro @lawrencecchen | |||||
2022-09-04 | `[node:module]` Implement `_resolveFileName`, stub `_nodeModulePaths` & `_cache` | 1 | -0/+4 | ||
Closes https://github.com/oven-sh/bun/issues/1111 | |||||
2022-09-03 | Fix `createRequire()` in `node:module` | 1 | -0/+47 | ||
Fixes https://github.com/oven-sh/bun/issues/831 Fixes https://github.com/oven-sh/bun/issues/453 | |||||
2022-08-09 | [node compat] Implement `require.resolve` | 1 | -0/+2 | ||
2022-07-01 | Zig::ImportMeta | 1 | -0/+53 | ||