4

在 javascriptnodemon中是一个静态文件服务器,它在代码更改时重新加载。我正在使用wasm-packminiserve执行两个命令:

build

wasm-pack build --target web --out-name wasm --out-dir ./static/build

serve

miniserve ./static --index index.html

我希望这两个能够像在 javascript 中一样自动化nodemon

4

1 回答 1

3

使用cargo-watch并通过 shell 命令执行 using -sor --shell flags:

cargo watch -s 'wasm-pack build --target web --out-name wasm --out-dir ./static/build && miniserve ./static --index index.html'

感谢Luxkmdreko的帮助

于 2021-05-14T15:36:14.150 回答