From 8926595f315fe0f6bd76c94337433ed353b09ef8 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Wed, 12 Oct 2016 11:47:42 -0400 Subject: [PATCH] chore(e2e): remove the e2e clean for now until it can be implemented correctly --- scripts/gulp/tasks/e2e.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/gulp/tasks/e2e.ts b/scripts/gulp/tasks/e2e.ts index e160f5d995..cb52140d04 100644 --- a/scripts/gulp/tasks/e2e.ts +++ b/scripts/gulp/tasks/e2e.ts @@ -23,9 +23,10 @@ import { compileSass, copyFonts, createTempTsConfig, createTimestamp, deleteFile task('e2e', e2eBuild); function e2eBuild(done: (err: any) => void) { - runSequence('e2e.clean', 'e2e.polyfill', 'e2e.copySource', 'e2e.compileTests', 'e2e.copyExternalDependencies', 'e2e.sass', 'e2e.fonts', 'e2e.bundle', done); + runSequence('e2e.polyfill', 'e2e.copySource', 'e2e.compileTests', 'e2e.copyExternalDependencies', 'e2e.sass', 'e2e.fonts', 'e2e.bundle', done); } +// TODO this should run when building all of e2e, not when folder passed task('e2e.clean', (done: Function) => { del(['dist/e2e/**']).then(() => { done();