I can't use gulp-vulcanize in my side project. I've followed the example but nothing seems to happen, there are also no errors in the console.
Here is my folder structure:
build/
- html/
- css/
- js/
source/
- html/
- css/
- js/
bower.json
gulpfile.coffee
gulpfile.js
package.json
Here is the gulp task I'm using
gulp.task 'vulcanize',
->
gulp.src 'index.html'
.pipe plumber()
.pipe vulcanize {
abspath: ''
excludes: []
stripExcludes: false
}
.pipe gulp.dest 'vulcanized'
I'm using the following for vulcanizing my html files:
- gulp - 3.9.0
- gulp-vulcanize - 6.1.0
- gul-crisper - 1.0.0