From bcb38594492aec4f1116b3fdf0e9821d4016903a Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Wed, 30 Oct 2024 22:27:17 -0400 Subject: Implement the physics --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b205e04 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.POSIX: + +all: build + +run: build + npx http-server + +build: + mkdir -p dist + cp src/index.html dist/index.html + cp src/index.js dist/index.js + cp node_modules/@dimforge/rapier2d-compat/rapier.es.js dist/rapier.es.js + +format: + npx prettier . --write -- cgit v1.2.3-57-g22cb