We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found a way for pnpm2nix to eat my kittens:
pnx create-react-app app1
nodePackages.pnpm
cd app1
default.nix
with (import <nixpkgs> {}); with (import ./pnpm2nix { inherit pkgs; nodejs = pkgs.nodejs-10_x; nodePackages = pkgs.nodePackages_10_x; }); mkPnpmPackage { src = ./.; packageJSON = ./package.json; shrinkwrapYML = ./pnpm-lock.yaml; }
nix-build
error: stack overflow (possible infinite recursion)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found a way for pnpm2nix to eat my kittens:
Steps to reproduce:
pnx create-react-app app1
(make sure you've gotnodePackages.pnpm
in your env/shell)cd app1
default.nix
nix-build
Expected behaviour
Actual behaviour
diesstutters and all memory gets consumed, swap thrashesEDIT
The text was updated successfully, but these errors were encountered: