X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=gruntfile.js;h=febd7a3aa4e3f37645343916c7a896354c39215f;hp=fdcdcf74f18ad735c3f7a6758c49e29e01c2588c;hb=refs%2Fheads%2Ft2;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/gruntfile.js b/gruntfile.js index fdcdcf74f..febd7a3aa 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -16,11 +16,26 @@ module.exports = function (grunt) { compass: { dev: { options: { - sassDir: 'custom-sass', - cssDir: 'css', - imagesPath: 'assets/img', + environment: 'development', + sassDir: 'web/themes/custom/yaffs/scss', + cssDir: 'web/themes/custom/yaffs/css', + imagesPath: 'images', + fontsPath: 'fonts/font-awesome', noLineComments: false, - outputStyle: 'compressed' + outputStyle: 'compact', + debugInfo: true + } + }, + prod: { + options: { + environment: 'production', + sassDir: 'web/themes/custom/yaffs/scss', + cssDir: 'web/themes/custom/yaffs/css', + imagesPath: 'images', + noLineComments: false, + outputStyle: 'compressed', + debugInfo: false, + } } }