14 lines
194 B
Bash
14 lines
194 B
Bash
#! /usr/bin/env nix
|
|
#! nix shell nixpkgs#nodejs --command bash
|
|
|
|
bun run typecheck
|
|
bun run clean
|
|
bun run build
|
|
|
|
npm version "$1"
|
|
|
|
git push origin main
|
|
git push origin "v$1"
|
|
|
|
# vim: set ft=bash :
|