I'm using gulp with gulp-sass to generate the build of my css files. I would like to do in SCSS build, source files referenced by @ font-face within the style would be automatically copied to assets / fonts , whereas css would be generated in...
After a lot of effort and lots of attempts, I was able to write a gulpfile.js that meets my needs for sass build, js >, img and html , however, I'm still having some problems.
First we go to the final file, in the sequence I will exp...
I was researching how to create a Gulp file that understands how to differentiate when it is for production and when it is for development. I found the plugin below, and would you like to know if this is the ideal way to do this differentiation...
Good morning. I am not able to concatenate the AngularJS files using the gulp concat module. I have already tried to change the directory file and it still does not work. The problem is that no error appears to me, it simply does not concatenate...
I have a problem with the graceful-fs module.
When I run the command in gulp to run the plugins (imagemin, clean) in my project the message:
(node: 4892) fs: re-evaluating native module sources is not
supported.If you are using the gr...
If I use Stylus with Jeet and Rupture, my gulpfile.js would look like this:
.pipe(stylus({
use:[prefixer(), jeet(), rupture()],
compress: true
}))
Now, I modularize my Gulp tasks with gulp-load-plugins. And...
So far everything worked on gulp perfectly, minus the sass.
My Code:
var sass = require('gulp-ruby-sass');
gulp.task('styles', function(){
gulp.src('./src/scss/**/*.scss')
.pipe(sass())
.pipe(gulp.dest('./src/css/'));
})
gulp....
I started my studies with gulp and I loved livereload, but I only managed with static files like this link . My goal is to start the gulp, however on the embedded php server (localhost -s Localhost: 8000) or on the server with Xampp or Lampp, i...