mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
Remove the modernizr task from the gulp default task and add it into init.sh following gulp --production so it always runs after assets are generated
This commit is contained in:
parent
2cab3c0ac0
commit
d60f40fa82
2 changed files with 3 additions and 1 deletions
|
@ -160,6 +160,5 @@ gulp.task("default", [
|
||||||
"js-public-libs",
|
"js-public-libs",
|
||||||
"js-dashboard",
|
"js-dashboard",
|
||||||
"js-dashboard-libs",
|
"js-dashboard-libs",
|
||||||
"modernizr",
|
|
||||||
"fonts"
|
"fonts"
|
||||||
]);
|
]);
|
||||||
|
|
3
init.sh
3
init.sh
|
@ -71,6 +71,9 @@ bower install || error "${c_m}bower install$c_w exited with an error status"
|
||||||
msg "Running: ${c_m}gulp --production"
|
msg "Running: ${c_m}gulp --production"
|
||||||
gulp --production || error "${c_m}gulp --production$c_w exited with an error status"
|
gulp --production || error "${c_m}gulp --production$c_w exited with an error status"
|
||||||
|
|
||||||
|
msg "Running: ${c_m}gulp modernizr --production"
|
||||||
|
gulp modernizr --production || error "${c_m}gulp modernizr --production$c_w exited with an error status"
|
||||||
|
|
||||||
(( artisan_down )) && {
|
(( artisan_down )) && {
|
||||||
msg "Running: ${c_m}php artisan up"
|
msg "Running: ${c_m}php artisan up"
|
||||||
php artisan up
|
php artisan up
|
||||||
|
|
Loading…
Reference in a new issue