Joyee Cheung
Joyee Cheung
I am pretty sure it's not distributed in the tarball simply because no-one remembered to add them to the list in https://github.com/nodejs/node/blob/dab85bdc066f4fb8cbf1ca5db5d0254898edb7d7/tools/install.py#L199 ? But @targos may know more.
Although speaking of stability it seems the V8 team is planning to do some changes to it again (there are 3 design docs in flight right now) although I am...
I don’t think there is need to explain the performance need here since that’s already used in Node.js. I would say it’s less up to Node.js but more up to...
Thanks for reporting it, fix in https://github.com/nodejs/node/pull/52868
The warning is defending against the case where there is a package.json, but it doesn’t contain “type”: “module” even though the .js modules inside are using ESM syntax. To hit...
> Do you mean I should also remove it from all my dependencies to create a fair test? I would say yes because removing the warning effectively encourages packages to...
If we are confident that the ecosystem will add the type field, then those who do won’t be hitting the warning anyway. Either enough people will rely on it so...
> Well, my main concern is developers who do npm init for a new app, and I would prefer they not see a warning for a few millis of delay....
You can hard-code to exclude it from the JS2C like this: ```diff diff --git a/tools/js2c.cc b/tools/js2c.cc index e0f3d88447..a536b5dcd8 100644 --- a/tools/js2c.cc +++ b/tools/js2c.cc @@ -928,6 +928,13 @@ int Main(int argc,...
If you want to ignore all files beginning with a dot, probably just do this (not sure if we have any files starting with a dot that we actually want...