repo: janusweb action: commit revision: path_from: revision_from: 13f15d7080f453fd9899000bad9b0dd3ade2e88c: path_to: revision_to:
commit 13f15d7080f453fd9899000bad9b0dd3ade2e88c Author: epochDate: Mon May 13 05:44:09 2024 +0000 I like makefiles diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..f8f8281b54d2431feaf522cf607a8464abe3f734 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONEY: all clean + +all: elation + npm run build + +elation: + npm install --only=prod + +clean: + rm -rf build + +veryclean: + rm -rf elation + rm -rf node_modules
-----END OF PAGE-----