Skip to content

bpcreech/typescript-asteroids

Repository files navigation

TypeScript Asteroids

TypeScript Asteroids, based Doug McInnes's original JavaScript-based HTML5 Asteroids (original source).

To build

$ npm install
$ npx vite dev
# ... then browse to the printed localhost url

To release

$ git pull
$ git tag -l  # observe the next available tag
$ tag=next_tag_here
$ git tag ${tag}
$ git push origin ${tag}