mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 06:51:27 +00:00
14 lines
323 B
Makefile
14 lines
323 B
Makefile
test: elm.json package.json elm-test
|
|
elm-test --watch
|
|
|
|
elm-test:
|
|
which elm-test || npm install elm-test --save-dev
|
|
grep elm-explorations/test elm.json || elm-test init
|
|
|
|
package.json:
|
|
echo '{}' > package.json
|
|
|
|
elm.json:
|
|
which elm || (echo "First, install elm https://guide.elm-lang.org/install.html"; exit 1)
|
|
elm init
|