Skip to content

Commit

Permalink
Merge pull request #744 from SC5/revert-743-fix/missing-dist
Browse files Browse the repository at this point in the history
Revert "Missing files in dist. Fix #734" (mistaken merge into master)
  • Loading branch information
varya committed Aug 11, 2015
2 parents 2289873 + 019ac3d commit c2c5802
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@ var gulp = require('gulp'),
plumber = require('gulp-plumber'),
bower = require('gulp-bower'),
mainBowerFiles = require('main-bower-files'),
neat = require('node-neat'),
ngAnnotate = require('gulp-ng-annotate'),
replace = require('gulp-replace'),
runSequence = require('run-sequence'),
sass = require('gulp-sass'),
toc = require('gulp-doctoc'),
styleguide = require('./lib/styleguide'),
distPath = 'lib/dist',
Expand Down Expand Up @@ -41,16 +39,7 @@ gulp.task('bower', function() {
return bower();
});

gulp.task('sass', ['copy-sass'], function() {
return gulp.src('lib/app/sass/**/*')
.pipe(sass({
includePaths: neat.includePaths
}))
.pipe(gulp.dest(distPath + '/css'));
});

gulp.task('copy-sass', function() {
// This task in needed for tests passing
gulp.task('sass', function() {
return gulp.src('lib/app/sass/**/*')
.pipe(gulp.dest(distPath + '/sass'));
});
Expand Down

0 comments on commit c2c5802

Please sign in to comment.