Skip to content

Commit

Permalink
feat: move to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie committed Mar 12, 2024
1 parent 41749e6 commit d427660
Show file tree
Hide file tree
Showing 5 changed files with 10,987 additions and 28,327 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.18.1
20.11
27 changes: 27 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
description = "Flake to develop the CDapp using nix(OS)";

inputs = {
# node 20.11.0
nixpkgs_node.url = "github:NixOS/nixpkgs/97b17f32362e475016f942bbdfda4a4a72a8a652";
};

outputs = {
self,
nixpkgs_node
}: {
devShell.x86_64-linux = with nixpkgs_node.legacyPackages.x86_64-linux;
mkShell {
buildInputs = [nodejs_20 nodePackages.pnpm zsh];
shellHook = ''
if [ -n "$SHELL" ]; then
exec $SHELL
fi
'';
};
};
}
Loading

0 comments on commit d427660

Please sign in to comment.