first commit

This commit is contained in:
2024-04-17 12:11:48 -04:00
commit 5015e79d85
7 changed files with 2781 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
build/MyCard.js: ./node_modules ./build
npx swc ./src/MyCard.ts -o ./build/MyCard.js
./build:
mkdir -p ./build
./node_modules:
npm install
serve: ./build/MyCard.js
npx serve
clean:
rm -rf ./build ./node_modules
.PHONY: clean serve