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

Commit

Permalink
removed css sourcemap generation
Browse files Browse the repository at this point in the history
  • Loading branch information
seanaery committed Dec 22, 2016
1 parent 28c2571 commit 0862a27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 0 additions & 2 deletions assets/css/dulcet.style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9742,5 +9742,3 @@ a.callbox {
text-decoration: none !important;
color: #fff;
background: #a1b70d; }

/*# sourceMappingURL=dulcet.style.css.map */
1 change: 0 additions & 1 deletion assets/css/dulcet.style.css.map

This file was deleted.

6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var glob = require('gulp-sass-glob');
var uglify = require('gulp-uglify');
var concat = require('gulp-concat');
var rename = require('gulp-rename');
var sourcemaps = require('gulp-sourcemaps');
//var sourcemaps = require('gulp-sourcemaps');
var scssLint = require('gulp-scss-lint');
var jshint = require('gulp-jshint');

Expand All @@ -35,14 +35,14 @@ gulp.task('css', function() {
}) (error);
this.emit('end');
}}))
.pipe(sourcemaps.init())
//.pipe(sourcemaps.init())
.pipe(sass({
style: 'compressed',
errLogToConsole: true,
includePaths: config.css.includePaths
}))
.pipe(autoprefix('last 2 versions', '> 1%', 'ie 9', 'ie 10'))
.pipe(sourcemaps.write('./'))
//.pipe(sourcemaps.write('./'))
.pipe(gulp.dest(config.css.dest))
.pipe(browserSync.reload({ stream: true, match: '**/*.css' }));
});
Expand Down

0 comments on commit 0862a27

Please sign in to comment.