Maël Nison

Results 627 comments of Maël Nison

Subshells are useful when one wish to group a command output: ``` (tput a; printf something; tput b) | cat -e ```

I don't think Plug'n'Play affects that - the static map we generate doesn't have to map to actual file on the filesystem, it also can reference virtual ids. I've actually...

> One interesting example of what import maps enables is filesystem structure independent workspaces (think yarn workspaces but without the requirement of the modules being under the same root directory)....

> I think the fact that they both have low popularity solutions for this is a sign that a common shared core belongs in node. The adoption rate for PnP...

At the moment, from PnP's perspective: - We'd need a hook that takes the bare request + the path of the file that makes the require call, and is expected...

> the first one is already possible with our current design (not including cjs). the second one is interesting and should probably exist, but it is unlikely that a cjs...

It seems related to the following issue: https://stackoverflow.com/questions/41673546/clang-warning-warning-unknown-warning-option-wno-maybe-uninitialized My guess is that you don't have emscripten in your path.

Hm errata. Can you try editing `node_modules/cpp-loader/package.json` to replace the following line: ``` "install": "clang++ $(llvm-config --cxxflags --ldflags) ./traverse/traverse.cc -lclang -o traverse.bin" ``` by: ``` "install": "clang++ $(llvm-config --cxxflags --ldflags)...