5 lines
97 B
Batchfile
5 lines
97 B
Batchfile
|
@echo off
|
||
|
for %%f in (*Tests.elm) do (
|
||
|
elm-make %%f --yes --output build.js && node build.js
|
||
|
)
|