diff options
| -rw-r--r-- | justfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..54ba3a4 --- /dev/null +++ b/justfile @@ -0,0 +1,12 @@ +bun_run command: + bun run {{command}} + +register: + just bun_run register + +publish: + just bun_run publish + +lint: + just bun_run lint +
\ No newline at end of file |