# HG changeset patch # User Ludovic Chabant # Date 1389329998 28800 # Node ID ffb505cac9c885e686ded6eee8873acb80ee1c1b # Parent e53a3b64dfd8be060402eee94cf6e01c761a6833 Truly concatenate all CSS files. diff -r e53a3b64dfd8 -r ffb505cac9c8 Gruntfile.js --- a/Gruntfile.js Thu Jan 09 20:59:41 2014 -0800 +++ b/Gruntfile.js Thu Jan 09 20:59:58 2014 -0800 @@ -71,7 +71,6 @@ production: { files: [ {expand: true, cwd: 'static/', dest: 'build/', src: ['js/require.js']}, - {expand: true, cwd: 'static/', dest: 'build/', src: ['css/*.css']}, {expand: true, cwd: 'static/', dest: 'build/', src: ['font-awesome/font/**']} ] } diff -r e53a3b64dfd8 -r ffb505cac9c8 static/css/wikked.less --- a/static/css/wikked.less Thu Jan 09 20:59:41 2014 -0800 +++ b/static/css/wikked.less Thu Jan 09 20:59:58 2014 -0800 @@ -8,5 +8,5 @@ @import "wikked/alerts.less"; // End with other miscellaneous stuff. -@import "syntax.css"; -@import "wmd.css"; +@import (less) "syntax.css"; +@import (less) "wmd.css";