diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..731d6ff --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/main.js +/main.css diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cc377ac --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +all: main.js main.css + +main.js: ka.js app.js + cat $? | esbuild --minify --loader=js > $@ + +main.css: style.css + cat $? | esbuild --minify --loader=css > $@ + |
