inhibit parallel elm-package invocations, while allowing other parallel stuff

This commit is contained in:
Brian Hicks 2018-03-27 21:37:47 -05:00
parent 1e95da847b
commit 9298f45c16
No known key found for this signature in database
GPG Key ID: FF1F407C0D3C2430

View File

@ -23,14 +23,17 @@ node_modules: package.json
npm install
touch -m $@
.NOTPARALLEL: elm-stuff
elm-stuff: package.json node_modules
elm-package install --yes
touch -m $@
.NOTPARALLEL: tests/elm-stuff
tests/elm-stuff: tests/elm-package.json node_modules
elm-package install --yes
touch -m $@
.NOTPARALLEL: styleguide-app/elm-stuff
styleguide-app/elm-stuff: styleguide-app/elm-package.json node_modules
cd styleguide-app; elm-package install --yes
touch -m $@