Posts by Ednilson Amaral • 31 points
2 posts
-
1
votes2
answers129
viewsA: Gulp + Bower - How to import Bower installed components for my final project
You can create a task to copy a particular file to the desired destination. In the case of JS, you can also use Gulp-Concat to concatenate all JS files and in the final project have only one.js file…
-
1
votes0
answers151
viewsQ: How can I use Gulp-Stylus, Jeet and rupture with Gulp-load-plugins
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 modularized my Gulp tasks with…