BuildTaskBuilder exposes the following tasks when using the default config:
- gulp: First clears your destination directory, then calls- dev, then- watchand then starts up a browserSync webserver
- gulp prod: Clears destination, then creates production files
- gulp serve: Just boots up and runs the server; changes won't be watched (as no watch tasks are started)
- gulp clean: Removes the destination folder
- jsDev: Clears JS folder in destination, converts JS files, then halts
- jsWatch: Only watches JS files (triggers on change)
- js:- jsDevthen- jsWatch
- jsProd: Clears JS folder in destination, converts and minifies files for production
- cssDev: Clears CSS folder in destination, converts css files, then halts
- cssWatch: Only watches CSS files (triggers on change)
- css:- cssDevthen- cssWatch
- cssProd: Clears CSS folder in destination, converts and minifies files for production
- htmlDev: Clears HTML folder in destination, copies all HTML files
- htmlWatch: Only watches HTML files (triggers on change)
- html:- htmlDevthen- htmlWatch
- htmlProd: Clears HTML folder in destination, converts and minifies files for production