bnbservice-checkout-embed
Version:
Embeddable app to facilitate the request of a service instance
27 lines (23 loc) • 585 B
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
sass: {
dist:{
options: {
style: 'expanded'
},
files: {
'css/main.css' : 'scss/main.scss',
}
}
},
watch: {
css: {
files: ['scss/*.scss'],
tasks: ['sass']
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ['watch']);
};