diff --git a/.ci/develop.sh b/.ci/develop.sh new file mode 100644 index 0000000000000000000000000000000000000000..84cbd1e1d557114b4c2bd80cc94de92f2aab6bd0 --- /dev/null +++ b/.ci/develop.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +if [[ $1 = "-i" ]]; then + echo "Install from scratch" + + npm install -g npm@latest grunt-cli generator-reveal + npm install + + git submodule update --init +else + echo "Install already performed. Only watching." +fi + +grunt server +