feat: initial commit

This commit is contained in:
2023-02-09 12:16:36 +01:00
commit 26d6ac24a2
125 changed files with 11291 additions and 0 deletions

View File

@ -0,0 +1,15 @@
dist: node_modules
mkdir -p dist
cp -rf src/* dist/
mkdir -p dist/public/vendor
cp -f node_modules/mocha/mocha.js dist/public/vendor/mocha.js
cp -f node_modules/mocha/mocha.css dist/public/vendor/mocha.css
cp -f node_modules/chai/chai.js dist/public/vendor/chai.js
node_modules:
npm ci
clean:
rm -rf dist node_modules
.PHONY: dist