Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
eddien24 committed Jan 31, 2025
1 parent 0b0d973 commit a289e16
Show file tree
Hide file tree
Showing 3 changed files with 4,044 additions and 3,264 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
id: pnpm
uses: pnpm/action-setup@v4
with:
version: 8.6.0
version: 10.1.0

- name: Setup Node
uses: actions/setup-node@v3
Expand Down
24 changes: 24 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
description = "Flake for the Brown Band website";
inputs.utils.url = "github:numtide/flake-utils";

outputs = {
self,
nixpkgs,
utils,
}:
utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {inherit system;};
in {
devShells.default = pkgs.mkShell rec {
buildInputs = with pkgs; [
nodejs_19
pnpm_10
];

LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath buildInputs;
};
}
);
}
Loading

0 comments on commit a289e16

Please sign in to comment.