diff options
author | Alan Pearce | 2023-09-15 19:13:16 +0200 |
---|---|---|
committer | Alan Pearce | 2023-09-15 19:13:16 +0200 |
commit | 7fd9609a559997142ecdb19a74546475344cca21 (patch) | |
tree | 2e6b2dfb8044aa7776bf9f8c4e3dce2c204ecfa3 /user/settings | |
parent | 49b47f7785bde886230d610a79e404fcd03a1391 (diff) | |
download | nixfiles-7fd9609a559997142ecdb19a74546475344cca21.tar.lz nixfiles-7fd9609a559997142ecdb19a74546475344cca21.tar.zst nixfiles-7fd9609a559997142ecdb19a74546475344cca21.zip |
javascript: add more bun shell aliases
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/development/javascript.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/user/settings/development/javascript.nix b/user/settings/development/javascript.nix index 0b1b4d8a..8bb0375f 100644 --- a/user/settings/development/javascript.nix +++ b/user/settings/development/javascript.nix @@ -113,6 +113,9 @@ in bnd = "bun dev"; bnp = "bun pm"; bnl = "bun pm ls"; + bnt = "bun test"; + bntw = "bun test --watch"; + bnx = "bunx"; np = "npm"; npi = "npm install"; |