1
0

Added Yiistrap

This commit is contained in:
2014-05-13 14:06:18 +02:00
parent 5e21ecb401
commit 826c4bdfb3
118 changed files with 31164 additions and 54 deletions

View File

@@ -0,0 +1,31 @@
// The wrapper function
module.exports = function(grunt) {
// Project and task configuration
grunt.initConfig({
less: {
development: {
files: {
"assets/css/yiistrap.css": "assets/less/yiistrap.less"
}
},
production: {
options: {
compress: true,
yuicompress: true,
optimization: 2
},
files: {
"assets/css/yiistrap.min.css": "assets/less/yiistrap.less"
}
}
}
});
// Load plugins
grunt.loadNpmTasks('grunt-contrib-less');
// Define tasks
grunt.registerTask('default', ['less']);
};