CodeSleeve / asset-pipeline

This Laravel 4 package provides a very simple and easy to use asset pipeline. It was heavily inspired by the Rails asset pipeline. We make use of the wonderful Assetic package to help with pre-compliation!
http://www.codesleeve.com
MIT License
489 stars 53 forks source link

Requiring tree broke the combination #230

Open RomainLanz opened 9 years ago

RomainLanz commented 9 years ago

Hi everyone,

when I put require_tree . on application.css or application.js it's broke the combination and write directly SASS content on the final content.

[....]
.fa-meanpath:before{content:"\f20c"}
@import "pages/login";
body {
  padding-top: 70px; }

/**
 *= require bootstrap
 *= require font-awesome
 *= require main
 *= require_tree .
 */

@import "modules/all";
body {
  padding-top: 70px;
  background-color: red; }