mqtt-control-map/travis.sh
2018-02-02 09:27:23 +01:00

9 lines
160 B
Bash
Executable file

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