From 395902c40a51fd5ca515b46f46f20de02f00fc36 Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Tue, 12 May 2015 21:52:30 -0500 Subject: [PATCH] Add src --- gulpfile.js | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 3ee46ee81b..6d3a54c419 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -168,11 +168,6 @@ gulp.task('karma-watch', function() { return karma.start({ configFile: __dirname + '/scripts/test/karma-watch.conf.js' }) }); - - - - - gulp.task('e2e', ['sass'], function() { var indexContents = _.template( fs.readFileSync('scripts/e2e/index.template.html') )({ buildConfig: buildConfig @@ -185,6 +180,9 @@ gulp.task('e2e', ['sass'], function() { 'ios', ]; + gulp.src(['ionic/**/*.js']) + .pipe(gulp.dest('dist/src')); + // Get each test folder with gulp.src return gulp.src(buildConfig.src.e2e) .pipe(cached('e2e'))