Ashcon Partovi
Ashcon Partovi
Before ```json { "dependencies": {}, } ``` After ```json { "dependencies": { "@actions/core": "^1.10.0" }, } ``` It should look like this instead: ```json { "dependencies": { "@actions/core": "^1.10.0" },...
There are npm packages, like `esbuild`, that need `postinstall` support to install binaries or run other scripts. While we could allow any package to run scripts, that wouldn't be the...
This [test](https://github.com/expressjs/express/blob/442fd467992992558806da8da07e945838712587/test/Route.js#L16) from `express` can't run because it need to define a custom timeout. ```ts 16 | it('should not stack overflow with a large sync stack', function (done) { 17...
here's a minimal reproduction: ```console $ cat package.json {"dependencies": {"chokidar": "*"}} $ bun install --yarn bun install v0.1.13 + [email protected] 14 packages installed [693.00ms] ``` this creates a yarn lockfile...
```js test("can pass null as option to stdio", () => { const result = spawnSync(bunExe(), { stdio: [null, null, null] }); console.log(result); expect(result).toMatchObject({ status: 0, signal: null, output: [null, expect.any(Buffer),...
### What does this PR do? This is still a work-in-progress to clean up and organize our TypeScript files.
### What does this PR do? `ngrok` is changing the `statusCode` and `statusMessage` on incoming requests, which fixes the following issue: ```js 1212 | this[kStopReading] = true; 1213 | if...
### What version of Bun is running? 0.2.2 ### What platform is your computer? Darwin 21.5.0 Darwin Kernel Version 21.5.0: Tue Apr 26 20:57:23 PDT 2022; root:xnu-8020.121.3~2/RELEASE_ARM64_T8110 arm64 arm ###...