Added custom sass styles for triggers panel.

This commit is contained in:
Alexander Zobnin
2016-03-19 19:17:21 +03:00
parent 404c2afd46
commit c9dfbe646c
5 changed files with 140 additions and 13 deletions

View File

@@ -55,7 +55,24 @@ module.exports = function(grunt) {
},
},
sass: {
options: {
sourceMap: true
},
dist: {
files: {
'dist/panel-triggers/css/panel_triggers.css' : 'src/panel-triggers/sass/panel_triggers.scss',
}
}
}
});
grunt.registerTask('default', ['clean', 'copy:src_to_dist', 'copy:pluginDef', 'babel']);
grunt.registerTask('default', [
'clean',
'copy:src_to_dist',
'copy:pluginDef',
'babel',
'sass'
]);
};