Results 665 comments of milahu

> Hmm, are you sure that's a good solution? no ... the problem started with `tailwindcss` which is declared as ```json "tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.9", ``` ```json "tailwindcss": { "version": "npm:@tailwindcss/[email protected]", "resolved":...

please try 47e300362becca195b45247ce470d7f8cb42dc48 with "patching dependencies" i mean the function `patchDependency` in `npmlock2nix/internal.nix`

probably another bug in npmlock2nix > a different version of babel-loader was detected higher up in the tree -> why is version 8.1.0 not installed deep in `/build/node_modules/react-scripts/node_modules/` possible reason:...

could be a bug in npm 6 patched lockfile, as produced by npmlock2nix ```json { "dependencies": { "react-scripts": { "version": "4.0.3", "resolved": "file:///nix/store/jfkjd4w2nfzwa93q97h4db6r47m06b3a-react-scripts-4.0.3.tgz", "dependencies": { "babel-loader": { "version": "8.1.0", "resolved":...

weird, with nix-npm-buildpackage i also get the warning from react-scripts this warning "should" be fixed by `npm install --legacy-bundling` which disables all deduplication and creates a "deep" node_modules i say...

pname and version should be inherited from build ```nix npmlock2nix.build rec { src = "..."; pname = "some-package"; version = "1.2.3"; node_modules_attrs = { inherit pname version; # avoid this...

> Perhaps this could be a starting point? thanks. i just started `test.sh` and it takes foreeeeeeeeever seems to download a million packages ... edit: just 742 paths > these...

> Having that link 404 makes it seem like this project isn't maintained well ... it is unmaintained, apparently

[lezer-parser-html](https://github.com/lezer-parser/html) does this already ``` a&b ``` ``` node 15 = Document: 'a&b\n' node 20 = Element: 'a&b' node 36 = OpenTag: '' node 6 = StartTag: '' node 16...

quickfix: use wasm from https://tree-sitter.github.io/tree-sitter/playground https://tree-sitter.github.io/tree-sitter-html.wasm https://tree-sitter.github.io/tree-sitter-c.wasm https://tree-sitter.github.io/tree-sitter-c_sharp.wasm ...