Skip to content
This repository has been archived by the owner on Mar 5, 2020. It is now read-only.

Commit

Permalink
remove event-resources code from gulpfile. fixes #935.
Browse files Browse the repository at this point in the history
  • Loading branch information
toolness committed May 21, 2015
1 parent 750e35b commit b8b3f1d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions gulpfile.js
Expand Up @@ -28,7 +28,6 @@ var indexStaticWatcher = require('./lib/index-static-watcher').create();
var BUILD_TASKS = [
'copy-test-dirs',
'copy-images',
'copy-event-resources',
'copy-bootstrap',
'copy-webmaker-app-icons',
'less',
Expand Down Expand Up @@ -112,12 +111,6 @@ gulp.task('copy-images', function () {
}).pipe(gulp.dest('./dist'));
});

gulp.task('copy-event-resources', function () {
return gulp.src('event-resources/**', {
base: '.'
}).pipe(gulp.dest('./dist'));
});

gulp.task('copy-webmaker-app-icons', function () {
return gulp.src(['node_modules/webmaker-app-icons/css/**', 'node_modules/webmaker-app-icons/fonts/**'], {
base: 'node_modules/webmaker-app-icons'
Expand Down Expand Up @@ -227,7 +220,6 @@ gulp.task('watch', _.without(BUILD_TASKS, 'webpack'), function() {
});

gulp.watch('img/**', ['copy-images']);
gulp.watch('event-resources/**', ['copy-event-resources']);
gulp.watch(LESS_FILES, ['less']);
gulp.watch('test/browser/static/**', ['copy-test-dirs']);
gulp.watch([
Expand Down

0 comments on commit b8b3f1d

Please sign in to comment.