build.sh: add some diagnostic output

As I was testing, I found it useful to see when I was using the ext/
directory or not.
pull/1066/head
Jordi Gutiérrez Hermoso 3 months ago committed by jordigh
parent 187358cfa2
commit 3b3aa8a86e

@ -5,7 +5,11 @@ set -e
PROJECT="" PROJECT=""
if [[ -e ext/app ]]; then if [[ -e ext/app ]]; then
PROJECT="tsconfig-ext.json" PROJECT="tsconfig-ext.json"
echo "Using extra app directory"
else
echo "No extra app directory found"
fi fi
WEBPACK_CONFIG=buildtools/webpack.config.js WEBPACK_CONFIG=buildtools/webpack.config.js
if [[ -e ext/buildtools/webpack.config.js ]]; then if [[ -e ext/buildtools/webpack.config.js ]]; then
# Allow webpack config file to be replaced (useful # Allow webpack config file to be replaced (useful

Loading…
Cancel
Save