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

Commit

Permalink
fix(gulp): no scss here
Browse files Browse the repository at this point in the history
Travis don't like it
  • Loading branch information
douglasduteil committed May 15, 2014
1 parent beb11ef commit 14783c1
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var gulp = require('gulp');

gulp.task('default', ['jshint', 'karma']);
gulp.task('serve', ['dist', 'continuousMode']);
gulp.task('dist', ['clean:dist', 'uglify', 'scss']);
gulp.task('dist', ['clean:dist', 'uglify']);



Expand Down Expand Up @@ -64,7 +64,6 @@ gulp.task('karma', function(cb){
kwjQlite.simpleRun(done);
});

gulp.task('karma:jqlite', kwjQlite.start);
gulp.task('karma:jqlite:unit', kwjQlite.simpleRun);
gulp.task('karma:jqlite:watch', function(){
kwjQlite.inBackground();
Expand All @@ -73,7 +72,6 @@ gulp.task('karma:jqlite:watch', function(){
});
});

gulp.task('karma:jquery', kwjQuery.start);
gulp.task('karma:jquery:unit', kwjQuery.simpleRun);
gulp.task('karma:jquery:watch', function(){
kwjQuery.inBackground();
Expand All @@ -95,22 +93,6 @@ gulp.task('clean:dist', function () {
.pipe($.rimraf());
});

gulp.task('scss', function () {
return gulp.src('./src/*.scss')
.pipe($.plumber({
errorHandler: function(){}
}))
.pipe($.rubySass({
loadPath: './src',
style: 'expanded',
lineNumbers: true,
precision: 10
}))
.pipe($.plumber.stop())
.pipe(gulp.dest('./dist'));
});


gulp.task('ngmin', function () {
return gulp.src('*.js', { cwd: './src' })
.pipe($.ngmin())
Expand Down

0 comments on commit 14783c1

Please sign in to comment.