Skip to content

Instantly share code, notes, and snippets.

@kaesetoast
Last active March 10, 2017 20:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaesetoast/b4afdd325554fa38d0d4 to your computer and use it in GitHub Desktop.
Save kaesetoast/b4afdd325554fa38d0d4 to your computer and use it in GitHub Desktop.
write gulp output to dynamic destinations
return gulp.src('app/**/scss/++/*.scss')
.pipe(sass())
.pipe(gulp.dest(function(files) {
return path.join(file.base, '../css');
}));
@jasonleft
Copy link

this work?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment