Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. @import "bootstrap"
  2.  
  3. applications/_shared_assets/features/bootstrap-sass/assets/stylesheets/_bootstrap.scss
  4. applications/_shared_assets/features/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss
  5. ...
  6.  
  7. applications/
  8. dist/
  9. gulpfile.js
  10. config.js
  11. ...
  12.  
  13. gulp.task('build-sass', function() {
  14. return gulp.src(settings.sass_files)
  15. // gulp.src(settings.sass_files, { base: "./" })
  16. .pipe(sass({
  17. outputStyle: 'compressed',
  18. onError: browserSync.notify,
  19. loadPaths: [
  20. "applications/_shared_assets/features/bootstrap-sass/assets/stylesheets/"
  21. ]
  22. }))
  23. .pipe(prefix(['last 15 versions', '> 1%', 'ie 8', 'ie 7'], { cascade: true }))
  24. .pipe(gulp.dest(public_dir))
  25. // .pipe(gulp.dest("."))
  26. .pipe(browserSync.reload({ stream: true }));
  27. });
  28.  
  29. File to import not found or not readable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement