chore,docs: add Nix shell, update readme accordingly

This commit is contained in:
2024-04-01 06:47:09 +02:00
parent 345e8d04c8
commit 83aa372345
2 changed files with 19 additions and 4 deletions

9
shell.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
corepack
];
shellHook = ''
yarn set version stable
'';
}