forked from playframework/playframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Tips
Electron-libre edited this page Feb 19, 2012
·
20 revisions
- Build Play from last sources (near RC3) (Since less version has been updated to 1.2 )
- copy bootstrap's less files into
app/assets/stylesheets/bootstrap - ad
bootstrap/_before eachbootstrap.lessimport declaration and rename each file the same way ( This is the convention to not compile theses files while packaging compiled assets ) - move
bootstrap.lessfile into app/assets/stylesheets
Can be done with a script like this ran into the app/assets/stylesheets/bootstrap
for a in *.less; do mv $a _$a; done
sed -i '|s|@import "|@import "bootstrap/_|' bootstrap.less
mv bootstrap.less ../bootstrap.less`