Created by: matthieuprat
First example of options.base
usage is wrong:
// without the 'base' set gulp.src('app/**/*.scss') // file: 'app/css/somefile.scss' .pipe(gulp.dest('build')); //-> file base: 'app/css' // relative path: 'somefile.scss' // write path: 'build/somefile.scss'
base
would resolve to app
instead of app/css
.
This PR fixes that glitch and attempts to clarify and make the options.base
section more concise.