mirror of
https://github.com/correl/elm.git
synced 2024-11-15 19:19:31 +00:00
4 lines
97 B
Batchfile
Executable file
4 lines
97 B
Batchfile
Executable file
@echo off
|
|
for %%f in (*Tests.elm) do (
|
|
elm-make %%f --yes --output build.js && node build.js
|
|
)
|