Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output file is .scss, not .css #3

Closed
markgoodyear opened this issue Dec 9, 2013 · 2 comments
Closed

Output file is .scss, not .css #3

markgoodyear opened this issue Dec 9, 2013 · 2 comments

Comments

@markgoodyear
Copy link

When running the task, it compiles the Sass, but doesn't change the extension to .css. Gulp v3.0.0. To remedy, using the rename plugin works, but not the ideal solution:

gulp.task('sass', function () {
    gulp.src('./sass/test.scss')
        .pipe(rename({ext: '.css'}))
        .pipe(sass())
        .pipe(gulp.dest('./css/test'));
});

Cheers
Mark

@dlmanning
Copy link
Owner

So package requirement for gulp-sass is 0.2. Obviously gulp has come a long way in a few months. I'll look into this.

@dlmanning
Copy link
Owner

Fixed by a4a4348

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants