Run ./gulp in every subproject dir
This is necessary since in our gulp files we reference assets in node_modules using relative paths. This makes the asset building process much slower, and should be addressed in the future.
This commit is contained in:
@@ -104,11 +104,12 @@ if [ ! -e $GULP -o gulpfile.js -nt $GULP ]; then
|
|||||||
npm install
|
npm install
|
||||||
touch $GULP # installer doesn't always touch this after a build, so we do.
|
touch $GULP # installer doesn't always touch this after a build, so we do.
|
||||||
fi
|
fi
|
||||||
$GULP --cwd $DEPLOYDIR/pillar --production
|
|
||||||
$GULP --cwd $DEPLOYDIR/attract --production
|
pushd $DEPLOYDIR/pillar; ./gulp --production; popd;
|
||||||
$GULP --cwd $DEPLOYDIR/flamenco --production
|
pushd $DEPLOYDIR/attract; ./gulp --production; popd;
|
||||||
$GULP --cwd $DEPLOYDIR/pillar-svnman --production
|
pushd $DEPLOYDIR/flamenco; ./gulp --production; popd;
|
||||||
$GULP --cwd $DEPLOYDIR/blender-cloud --production
|
pushd $DEPLOYDIR/pillar-svnman; ./gulp --production; popd;
|
||||||
|
pushd $DEPLOYDIR/blender-cloud; ./gulp --production; popd;
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "==================================================================="
|
echo "==================================================================="
|
||||||
|
Reference in New Issue
Block a user