Closed artemartemov closed 6 years ago
@artemartemov I found a solution around that problem. Remove postbuild from development
in order to avoid overwriting the default postbuild. Unless you really want to create your own postbuild. Use only prebuild, worked perfectly for me.
Leave it like this..
additionalTasks: {
initialize(gulp, PATH_CONFIG, TASK_CONFIG) {
gulp.task('copyLayouts', function() {
// the stuff task is suppose to do
});
},
development: {
prebuild: ['copyLayouts']
},
production: {
prebuild: ['copyLayouts']
}
}
Hey there
I am currently trying to integrate blendit with a rails app that I am helping out with all of the styling and sass architecture. The rails asset compiler seemed a bit rough to work with, so this seems like the perfect solution!
I seem to keep on getting errors however and not sure why: