Fix processing of SCSS with Grunt

We now use the Ruby implementation of SASS (grunt-contrib-sass) since
libsass is not compatible with Compass.
pull/91/head
Francis Lachapelle 2015-01-30 14:48:45 -05:00
parent df6d957721
commit c664648eb6
2 changed files with 7 additions and 17 deletions

View File

@ -4,21 +4,13 @@ module.exports = function(grunt) {
sass: {
options: {
includePaths: ['bower_components/foundation/scss',
'bower_components/ionic/scss']
loadPath: ['scss'],
style: 'expanded'
},
dist: {
options: {
// outputStyle: 'compressed'
outputStyle: 'expanded'
},
files: {
'css/app.css': 'scss/app.scss',
'css/SOGoRootPage.css': 'scss/SOGoRootPage.scss',
'css/ContactsUI.css': 'scss/ContactsUI.scss',
'css/MailerUI.css': 'scss/MailerUI.scss',
'css/mobile.css': 'scss/mobile.scss'
}
'css/styles.css': 'scss/styles.scss'
}
}
},
@ -32,7 +24,7 @@ module.exports = function(grunt) {
}
});
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.task.registerTask('static', function() {
@ -84,8 +76,7 @@ module.exports = function(grunt) {
}
grunt.log.subhead('Copying CSS files');
var css = [
'<%= src %>/ng-tags-input/ng-tags-input*.css',
'<%= src %>/angular-material/angular-material*.css'
'<%= src %>/ng-tags-input/ng-tags-input*.css'
];
for (var j = 0; j < css.length; j++) {
var files = grunt.file.expand(grunt.template.process(css[j], {data: options}))

View File

@ -3,10 +3,9 @@
"version": "0.0.1",
"devDependencies": {
"bower": ">=1.3.8",
"node-sass": ">=0.7.0",
"grunt": ">=0.4.1",
"grunt-cli": ">=0.1.11",
"grunt-contrib-watch": ">=0.5.3",
"grunt-sass": ">=0.8.0"
"grunt-contrib-sass": ">=0.8.0"
}
}