- removed semantic release - switched to a NixOS flake-based setup - using mfgames-project-setup-flake - updated various underlying dependencies - updated Node version - removed lerna - switched to npm workspaces - updated the TypeScript version - basic logic for fixing various warnings and errors - added the start of documentation chore: bringing various dependences and build systems up to date
15 lines
245 B
Makefile
15 lines
245 B
Makefile
_default:
|
|
just --list
|
|
|
|
build: reset-build
|
|
npm run build --workspaces
|
|
|
|
install:
|
|
npm install --ci
|
|
|
|
format:
|
|
sort-package-json package.json packages/*/package.json
|
|
treefmt
|
|
|
|
reset-build:
|
|
find -name *.tsbuildinfo | xargs rm -f
|