You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, condo will execute "gulp" against any path that is discovered to contain a gulpfile.js, gulpfile.ts, or gulpfile.babel.js, which causes gulp to attempt to execute the default task.
Since a default task may or may not exist, we should call gulp --tasks-simple first to verify that the requested task exists and is available, emitting a warning if it is not (for anything other than the default task).
To make this easier, we should introduce a gulp_task argument with a default value of default.
So, if the gulp shade is called without a gulp_task argument:
Only execute if the 'default' task is available.
Do not emit any warning if no 'default' task is specified.
If the gulp shade is called with a gulp_task argument:
Only execute if the task is available.
Emit a warning indicating that the specified task does not exist.
The text was updated successfully, but these errors were encountered:
Currently, condo will execute "gulp" against any path that is discovered to contain a
gulpfile.js
,gulpfile.ts
, orgulpfile.babel.js
, which causes gulp to attempt to execute the default task.Since a default task may or may not exist, we should call
gulp --tasks-simple
first to verify that the requested task exists and is available, emitting a warning if it is not (for anything other than the default task).To make this easier, we should introduce a
gulp_task
argument with a default value ofdefault
.So, if the
gulp
shade is called without agulp_task
argument:If the
gulp
shade is called with agulp_task
argument:The text was updated successfully, but these errors were encountered: