grunt-compass-multiple
Grunt plugin for compiling compass files at multi threads.
Getting Started
This plugin requires Grunt ~0.4.0
Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-compass-multiple
Then add this line to your project's grunt.js
gruntfile:
grunt.loadNpmTasks('grunt-compass-multiple');
Documentation
This plugin slove the problem of compass slow compile.
This provides you to compass multi threads compiling, so you can develop faster.
the statement below is how to use this plugin.
Example1
grunt.initConfig({
compassMultiple: {
options : {
environment: 'production',
outputStyle: 'compressed',
javascriptsDir: './js',
imagesDir: './image',
fontsDir: './font',
importPath: './css/framework',
relativeAssets: true,
time: true
},
common : {
options: {
sassDir: 'page/css/cmn/',
cssDir: '../static/page/css/cmn/'
}
}
}
});
Example2(use multiple options)
you can set multiple sassDir and cssDir for compiling.
grunt.initConfig({
compassMultiple: {
options : {
environment: 'production',
outputStyle: 'compressed',
javascriptsDir: './js',
imagesDir: './image',
fontsDir: './font',
importPath: './css/framework',
relativeAssets: true,
time: true
},
all: {
options: {
multiple: [
{
sassDir: 'page/css/cmn/',
cssDir: '../static/page/css/cmn/'
},{
sassDir: 'page/css/orgn/scss',
cssDir: '../static/page/css/orgn/'
}
]
}
}
}
});
Example3(use config.rb)
You can use config.rb for build setting. Sample is below.
grunt.initConfig({
compassMultiple: {
options : {
config: 'config.rb',
sassDir: 'page/css/orgn/scss'
},
common : {},
}
});
Example4(use sassFiles options)
You can identify compile targets files, if you use sassFiles option.
grunt.initConfig({
compassMultiple: {
options : {
javascriptsDir: 'js',
imagesDir: 'img',
},
sassFilesTest: {
options: {
sassDir: 'css3/scss',
sassFiles: ['css3/scss/sample*.scss', 'css3/scss/hoge.scss'],
cssDir: ['css3/css'],
}
}
},
});
License
Copyright (c) 2013 Yohei Munesada
Licensed under the MIT license.