Guy Bedford

Results 1051 comments of Guy Bedford

Also, the empty `[]` should probably be giving a `ERR_PACKAGE_PATH_NOT_EXPORTED` as well, so perhaps that is something that should be fixed too.

I've created a PR for further discussion in https://github.com/nodejs/node/pull/32838.

Module evaluation in ECMA-262 is synchronous from beginning to end. It is defined strictly as a post-order graph execution in https://tc39.es/ecma262/#sec-innermoduleevaluation. There isn't any room for misinterpretation of this and...

> To clarify: are you saying the Stack Overflow answer is simply incorrect? Yes! The specification linked there is an implementation of the tarjan strongly connected components algorithm, which is...

Also to clarify, the _only_ reason the spec has to use Tarjan is to ensure that the module registry loading states for a cycle transition together and do not leave...

Also it seems that the "close" event of the Parse stream is causing any of the individual entry stream write streams to stop instantaneously. These files are then never written.

A simplified version of the issue is simply that: ``` javascript fs.createReadStream('bootstrap.zip').pipe(unzip.Extract({ path: outDir })); ``` Is missing out an entire folder in the archive. The archive definitely extracts ok...

@idy thanks for following up. Could you perhaps provide a code example of what you did to bypass the issue? It would be very useful to see.

@idy thanks so much for posting - I will try this out soon.

@Munter I've posted a builder bug for this in https://github.com/systemjs/builder/issues/667.