26 lines
565 B
JavaScript
26 lines
565 B
JavaScript
|
module.exports = function(grunt) {
|
||
|
grunt.initConfig({
|
||
|
pkg: grunt.file.readJSON('package.json'),
|
||
|
|
||
|
sass: {
|
||
|
dist: {
|
||
|
options: {
|
||
|
style: 'compressed'
|
||
|
},
|
||
|
files: {
|
||
|
'blender-bfct/application/static/assets/css/main.css': 'blender-bfct/application/static/assets/sass/main.sass'
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
autoprefixer: {
|
||
|
no_dest: { src: 'blender-bfct/application/static/assets/css/main.css' }
|
||
|
}
|
||
|
});
|
||
|
|
||
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
||
|
grunt.loadNpmTasks('grunt-autoprefixer');
|
||
|
|
||
|
grunt.registerTask('default', ['sass', 'autoprefixer']);
|
||
|
};
|