mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-09 00:41:22 +00:00
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
module.exports = function(grunt) {
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
|
|
sass: {
|
|
options: {
|
|
includePaths: ['bower_components/foundation/scss']
|
|
},
|
|
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'
|
|
}
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
grunt: { files: ['Gruntfile.js'] },
|
|
|
|
sass: {
|
|
files: 'scss/**/*.scss',
|
|
tasks: ['sass']
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-sass');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
|
|
grunt.registerTask('build', ['sass']);
|
|
grunt.registerTask('default', ['build','watch']);
|
|
}
|