Vaughan Rouesnel

Results 215 comments of Vaughan Rouesnel
trafficstars

Thanks tons! A `-w` option for activemd could be another option. On Fri, Oct 25, 2013 at 7:05 AM, Alec Perkins [email protected]: > I’m not very familiar with nodemon, but...

Awesome plugin! But very slow in `8.0.209`. Looking forward to it being fixed.

I had the exact same thought. In fact, I asked this question on Quora yesterday: [Is there a website showing a comparison between imperative and functional approaches to solving common...

Or rather, allow an override of `config.merge('entry.main', ['./foo.js'])`. If first arg is string, generate an object of the string path, then merge. Set would be useful separately to override things.

@maxtaco Would it be possible to allow access to the `arguments` object from the original scope of the `await` call. The idea is to allow a default error callback being...

See here: https://github.com/oven-sh/bun/discussions/3132 ~It's related to commonjs module resolution.~ ~I think there is a bug in this algorithm specified here: https://bun.sh/docs/runtime/modules#importing-commonjs-from-commonjs~ EDIT: See next comment. ## Workaround This line: ```...

`supports-color` is included as a "node fallback" that breaks things because its a later version where the api changed. It probably shouldn't be a fallback. https://github.com/search?q=repo%3Aoven-sh%2Fbun+supports-color&type=code https://discord.com/channels/876711213126520882/888839314056839309/1113478448288120892

Has anymore work been done on this? Is #1538 the latest branch?

TypeScript path mappings are a good workaround for now. https://bun.sh/docs/runtime/typescript#path-mapping ```json { "compilerOptions": { "paths": { "#src/*": ["./src/*"] }, } } ```