Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Dennis Eitner
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dennis Eitner
Full Stack JavaScript Techdegree Graduate 25,644 Points

Sass Gulp Source Maps causing error

Please help. I am getting this error over and over again. So far I have not figured out why this happens. When I compile my sass files with gulp and try to generate sourcemaps, i get the following error:

  throw er; // Unhandled 'error' event
  ^

Error: src/scss/dist/assets/css/main.scss.map Error: Invalid CSS after "{": expected 1 selector or at-rule, was '{"version":3,"names' on line 1 of src/scss/dist/assets/css/main.scss.map

{"version":3,"names":[],"mappings":"","sources":["main.scss"],"sourcesContent" ^

This is my sass task in gulp:

// compile scss gulp.task('sass', ['fonts'], function () { return gulp.src(scss.in) .pipe(autoprefixer()) .pipe(sourcemaps.init()) .pipe(sourcemaps.write()) .pipe(sass(scss.sassOpts)) .pipe(gulp.dest(scss.out)) .pipe(gulp.dest('src/assets/css')) });

And this is my main css files.