Vlad Sirenko
Vlad Sirenko
### What version of Bun is running? 1.0.9+98f20170a ### What platform is your computer? Linux 6.2.0-36-generic x86_64 x86_64 and Darwin 23.0.0 arm64 arm ### What steps can reproduce the bug?...
### What does this PR do? added support ServerResponse._header full support `light-my-request` fixes: https://github.com/oven-sh/bun/issues/7530 - [ ] Documentation or TypeScript types (it's okay to leave the rest blank in this...
example ```js const { on } = require('events'); const { request } = require('https'); const html = require('htm'); function h(type, props, ...children) { return { type, props, children }; }...
- [ ] - spies - [ ] - getInternalState - [ ] - spy - [ ] - spyOn - [ ] - createInternalSpy - [ ] - internalSpyOn...
## Purpose Upgrade version fetch-blob from 3.1.4 to 4.0.0 add to cicd version of node "18.18.2", "20.11.0", "21.5.0" this update will reduce the size of dependencies from about 9.1MB to...
Example ```yml version: '3' tasks: build: cmds: - sleep 5 && cat 1.txt > 2.txt sources: - 1.txt generates: - 2.txt method: timestamp lint: deps: [build] cmds: - cat 2.txt...
I have more than 700 files in my project and that's a lot of files to recheck for update (timestamp or hash) [fsnotify](https://github.com/fsnotify/fsnotify) should be faster and use less CPU...
> Thanks for your pull request, we really appreciate contributions! > > Please understand that it may take some time to be reviewed. > > Also, make sure to follow...
When I indicated sources and generates I expected will be compare timestamp with sources and generates without `.task/timestamp` as the Makefile does The main reason is that when I delete...
example: ```yml version: '3' tasks: build: cmds: - echo subtask sources: - list.json ``` ```yml version: '3' includes: sub: taskfile: ./sub internal: true tasks: dev: deps: [sub:build] watch: true cmds:...