Skip to content

Commit 7433ed5

Browse files
author
Kalle Fagerberg
committed
Update mise.toml
1 parent ada05b4 commit 7433ed5

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

mise.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ description = "Build with tinygo"
2626
run = """
2727
tinygo build -target target.json -buildmode c-shared -o dist/ewfg.wasm .
2828
"""
29-
sources = ['**/*.go', 'go.mod', 'go.sum', 'assets/**']
29+
sources = ['**/*.go', 'go.mod', 'go.sum', 'assets/**', 'target.json']
3030
outputs = ['dist/ewfg.wasm']
3131

3232
[tasks."debug:build:opt"]
@@ -67,20 +67,20 @@ depends = ['debug:build:tinygo', 'debug:build:opt']
6767

6868
[tasks."debug:wasm2wat"]
6969
description = "Build the game and output the WAT"
70-
run = """
71-
wasm2wat dist/ewfg.wasm --output=dist/ewfg.wat
72-
wasm2wat dist/ewfg-opt.wasm --output=dist/ewfg-opt.wat
73-
"""
70+
run = [
71+
"wasm2wat dist/ewfg.wasm --output=dist/ewfg.wat",
72+
"wasm2wat dist/ewfg-opt.wasm --output=dist/ewfg-opt.wat",
73+
]
7474
depends = ['debug:build']
7575
sources = ['dist/ewfg.wasm', 'dist/ewfg-opt.wasm']
7676
outputs = ['dist/ewfg.wat', 'dist/ewfg-opt.wat']
7777

7878
[tasks."debug:wasm-decompile"]
7979
description = "Build the game and decompile into the .dcmp pseudo-language"
80-
run = """
81-
wasm-decompile dist/ewfg.wasm --output=dist/ewfg.dcmp
82-
wasm-decompile dist/ewfg-opt.wasm --output=dist/ewfg-opt.dcmp
83-
"""
80+
run = [
81+
"wasm-decompile dist/ewfg.wasm --output=dist/ewfg.dcmp --enable-all",
82+
"wasm-decompile dist/ewfg-opt.wasm --output=dist/ewfg-opt.dcmp --enable-all",
83+
]
8484
depends = ['debug:build']
8585
sources = ['dist/ewfg.wasm', 'dist/ewfg-opt.wasm']
8686
outputs = ['dist/ewfg.dcmp', 'dist/ewfg-opt.dcmp']

0 commit comments

Comments
 (0)