groovydev / twitter-bootstrap-grails-plugin

Grails plugin for Twitter Bootstrap CSS framework resources
173 stars 92 forks source link

Asset Pipeline Exclude Less Files From Precompiler #87

Closed davydotcom closed 11 years ago

davydotcom commented 11 years ago

We don't want to compile less files individually as they wont compile individually for the bootstrap source. This resolves this issue and allows the precompiler to run without error even with LESS.

Requiring a bootstrap less file works fine still within the scope of a main application css or less file...

Example application.less:

@import 'bootstrap';

h1 {
  color: white;
}

This file will still be able to find bootstrap and compile a final packaged less file.