Last active
March 10, 2017 20:58
-
-
Save kaesetoast/b4afdd325554fa38d0d4 to your computer and use it in GitHub Desktop.
write gulp output to dynamic destinations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return gulp.src('app/**/scss/++/*.scss') | |
.pipe(sass()) | |
.pipe(gulp.dest(function(files) { | |
return path.join(file.base, '../css'); | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this work?