chore(gulp): remove worker tasks

This commit is contained in:
Adam Bradley
2016-12-12 09:43:39 -06:00
parent 534e47be7c
commit 7c70bdff15
5 changed files with 0 additions and 206 deletions

View File

@ -31,7 +31,6 @@ function e2eBuild(done: (err: any) => void) {
runSequence(
'e2e.clean',
'e2e.build',
'e2e.workers',
'e2e.polyfill',
'e2e.copyExternalDependencies',
'e2e.sass',
@ -204,10 +203,6 @@ task('e2e.watch', ['e2e'], function () {
watch('src/components/*/test/**/*', function (file) {
start('e2e.build');
});
watch('scripts/workers/**/*', function (file) {
start('e2e.workers');
});
});
function watchTask(task) {