A fork of mtelver's day10 project
1.PHONY: example node bundle fmt
2example:
3 dune build --ignore-promoted-rules
4 parcel _build/default/example/src/index.html
5
6node:
7 npm install
8
9# Use that command if you want to re-generate the static bundled in the includes
10# folder, for example if there was an update of code-mirror.
11bundle: node
12 dune build --profile=with-bundle
13
14fmt:
15 dune build @fmt --auto-promote