Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var connect = require('gulp-connect');

gulp.task('default', ['build']);

gulp.task('build', ['bower','images', 'scripts', 'html', 'styles', 'htaccess']);
gulp.task('build', ['bower','images', 'scripts', 'html', 'styles']);

gulp.task('bower', function() {
return bower('./bower_components');
Expand Down Expand Up @@ -95,11 +95,6 @@ gulp.task('html', function () {
.pipe(gulp.dest('dist'));
});

gulp.task('htaccess', function() {
return gulp.src('web/.htaccess')
.pipe(gulp.dest('dist'));
});

gulp.task('serve', ['watch'], function() {
connect.server({
root: 'dist',
Expand All @@ -109,7 +104,6 @@ gulp.task('serve', ['watch'], function() {
});

gulp.task('watch', ['build'], function() {
gulp.watch('web/.htaccess', ['htaccess']);
gulp.watch('web/**/*.html', ['html']);
gulp.watch('web/styles/*.scss', ['styles']);
gulp.watch(['web/js/*.js', 'web/js/controllers/*.js'], ['scripts']);
Expand Down
19 changes: 0 additions & 19 deletions web/.htaccess

This file was deleted.