Makefile
code:Makefile
# Scrapboxからコードを取得
# wgetは-r オプションで上書き
#
all:
make get
get:
push:
git commit -a -m '...' ; git push
run:
open index.html
# MacでApacheうごかしてテスト
# $ cd /Library/WebServer/Documents/; ln -s ~/Suijaku
# $ sudo apachectl start
local:
# Cypressを使ったテスト (まだ無い)
test:
npx cypress run -s cypress/integration/suijaku_test.js
test-gui:
npx cypress open
lint:
eslint hikizan.js
eslint cypress/integration/hikizan_test.js
htmlcheck: