I've been reading up on Gulp. In the following code you'll notice that in the gulp.src
and the gulp.dest
that the path starts with ./
gulp.src('./scss/*.scss')
.pipe(sass({
includePaths: ['bower_components/foundation/scss']
}))
.pipe(gulp.dest('./css'));
What is the purpose of the ./
? Would the code run any differently without the dot?