-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.toml
41 lines (35 loc) · 1.06 KB
/
Makefile.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[env]
CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true"
[tasks.copy-assets]
workspace = false
env = { "CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS" = ["logic"] }
script = '''
cp -R crates/logic/assets crates/web/public
'''
[tasks.build-webd]
workspace = false
env = { "CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS" = ["logic"] }
dependencies = ["copy-assets"]
script = '''
cd crates/logic && wasm-pack build --target web -d ../web/public/pkg
'''
[tasks.build-webr]
workspace = false
env = { "CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS" = ["logic"] }
dependencies = ["copy-assets"]
script = '''
cd crates/logic && wasm-pack build --release --target web -d ../web/public/pkg
'''
[tasks.run-web]
workspace = false
script = '''
cd crates/web && cargo run
'''
[tasks.webd]
workspace = false
env = { "CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS" = ["web"], CARGO_MAKE_SCRIPT_FORCE_PIPE_STDIN = true }
dependencies = ["build-webd", "run-web"]
[tasks.webr]
workspace = false
env = { "CARGO_MAKE_WORKSPACE_INCLUDE_MEMBERS" = ["web"], CARGO_MAKE_SCRIPT_FORCE_PIPE_STDIN = true }
dependencies = ["build-webr", "run-web"]