-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
24 lines (18 loc) · 864 Bytes
/
Copy pathMakefile
File metadata and controls
24 lines (18 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
docs: examples todomvc
sbt doc
sbt docs/publishMicrosite
docs-dev: examples todomvc
sbt docs/makeMicrosite
examples: docs/src/main/tut/demo/owlet-opt.js
bootstrap: docs/src/main/tut/demo/bootstrap-opt.js
todomvc: docs/src/main/tut/demo/todomvc-opt.js
.PHONY: examples bootstrap todomvc
docs/src/main/tut/demo/owlet-opt.js: example/src/main/scala/* src/main/scala/*
sbt example/fullOptJS
cp example/target/scala-2.12/example-opt.js docs/src/main/tut/demo/owlet-opt.js
docs/src/main/tut/demo/bootstrap-opt.js: bootstrap/src/main/scala/* src/main/scala/*
sbt bootstrap/fullOptJS
cp bootstrap/target/scala-2.12/bootstrap-opt.js docs/src/main/tut/demo/bootstrap-opt.js
docs/src/main/tut/demo/todomvc-opt.js: todomvc/src/main/scala/* src/main/scala/*
sbt todomvc/fullOptJS
cp todomvc/target/scala-2.12/todomvc-opt.js docs/src/main/tut/demo/todomvc-opt.js