Geoffrey Booth
Geoffrey Booth
> (As for reverting, I strongly object - I made the original PR for a reason, it shouldn't be reverted) Where's the suggestion for reverting? Even if we eventually revert...
@Akryum This is a real bug, and it’s with `vue-component`. Loading the Bootstrap official JavaScript isn’t a solution, as that JS depends on jQuery and will cause chaos with Vue’s...
> 1. a `package-lock.json` file from the previous version of npm is left untouched after `npm install` Even on the _same_ version of `npm`, successive runs of `npm install` often...
> sometimes, you need to declare and type a var before assigning it inside some callback CoffeeScript doesn't allow variable declarations, only assignments. In your code where you have `var...
As I understand it, you don’t need the `| undefined` part for JSDoc: ```js /** @type {number} */ var x; x = undefined; x = 3; ``` This doesn’t error...
The plan is to land this once it’s ready and after https://github.com/nodejs/node/pull/44710.
@arcanis Can you please rebase this on `main` and take out the merge commit? All Node PRs need to be “clean” like that so that the history can be bisected....
> if not a default User-Agent I think we should set it by default, and users could override it on a per-`fetch` basis: ```js fetch(url, { headers: { 'User-Agent': 'whatever'...
> i think you’re misunderstanding. the purpose of my PR is to implement the User-Agent header **only** when fetching remote modules – URL imports You mean `--experimental-network-imports`? I think it...
> Got it, just making sure we’re on the same page. I’m not exactly sure what to do here – I’ve got conflicting opinions from different members. I’m going to...