Skip to content

Commit

Permalink
[Minor] Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dmhendricks committed Jun 19, 2018
1 parent 18e2da4 commit b9f3cd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var pkg = require('./package.json');
*/
var project = pkg.name; // Project slug
var cssOutputStyle = 'expanded'; // Values: compact, compressed, nested, expanded
var cssOutputCoumments = false; // Output SASS source/line numbers in compiled CSS files
var cssOutputComments = false; // Output SASS source/line numbers in compiled CSS files

var styleSourcePath = './src/scss/'; // Path to source SASS files
var jsSourcePath = './src/js/'; // Path to source JavaScript files
Expand Down Expand Up @@ -139,7 +139,7 @@ styleTasks.forEach( function( task ) {
gulp.src( styleSourcePath + task.source )
.pipe( sourcemaps.init() )
.pipe( sass( {
sourceComments: cssOutputCoumments ? 'map' : null,
sourceComments: cssOutputComments ? 'map' : null,
errLogToConsole: true,
outputStyle: cssOutputStyle,
precision: 10
Expand Down

0 comments on commit b9f3cd5

Please sign in to comment.