Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. GULP-BOWER
  2.  
  3. 1- Inicializar node
  4. npm init
  5.  
  6.  
  7. 2- Instalar gulp, gulp-bower, and gulp-sass:
  8. npm install --save-dev gulp gulp-bower gulp-sass
  9.  
  10.  
  11. 3- Inicializar Bower
  12. bower init
  13.  
  14.  
  15. 4- Now let’s install bootstrap-sass with Bower.
  16. bower install --save bootstrap-sass
  17.  
  18.  
  19.  
  20. 5- Now we can make an SCSS file that includes bootstrap into our project. Let’s call our SCSS file src/scss/app.scss:
  21. Crear un archivo src/scss/app.scss con el siguiente contenido:
  22. @import "bootstrap";
  23. @import "bootstrap/theme";
  24.  
  25.  
  26.  
  27. 6- Now let’s use gulp to compile our src/scss/app.scss which includes Bootstrap SASS:
  28. Crear un archivo gulpfile.js con el siguiente contenido:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement