mqtt-control-map/travis.sh
2018-06-19 12:35:10 +02:00

11 lines
190 B
Bash
Executable file

#!/bin/sh -e
yarn lint
mkdir artifacts
for conf in $(ls config/); do
if [ "$conf" = "utils.js" ]; then
continue
fi
yarn dev $conf
yarn build $conf
mv dist artifacts/$conf
done