Skip to content

Commit

Permalink
dev: switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
sandydoo committed Jan 3, 2025
1 parent 6212f62 commit 799b344
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 118 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,11 @@ Note that malicious code submitted via forked pull request can, once merged into
Install the dependencies

```bash
$ yarn install
$ pnpm install
```

Build the typescript

```bash
$ yarn build
```

Run the tests :heavy_check_mark:

```bash
$ yarn test
$ pnpm build
```
6 changes: 3 additions & 3 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ in
languages.javascript = {
enable = true;
package = nodejs;
yarn.enable = true;
yarn.install.enable = true;
pnpm.enable = true;
pnpm.install.enable = true;
};

git-hooks.hooks = {
Expand All @@ -32,7 +32,7 @@ in
enable = true;
files = "src/.*$";
pass_filenames = false;
entry = "devenv shell -- yarn build";
entry = "devenv shell -- pnpm build";
};
};
}
164 changes: 164 additions & 0 deletions pnpm-lock.yaml

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

107 changes: 0 additions & 107 deletions yarn.lock

This file was deleted.

0 comments on commit 799b344

Please sign in to comment.