34 lines
713 B
JavaScript
34 lines
713 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
bower: {
|
|
files: 'bower.json',
|
|
tasks: ['wiredep']
|
|
},
|
|
js: {
|
|
files: [
|
|
'<%= accountant.frontend.src %>/js/*.js %>',
|
|
'grunt-config/*.js'
|
|
],
|
|
tasks: ['jsdev']
|
|
},
|
|
py: {
|
|
files: 'accountant/**/*.py',
|
|
tasks: ['pydev']
|
|
},
|
|
html: {
|
|
files: [
|
|
'<%= accountant.frontend.src %>/*.html',
|
|
'<%= accountant.frontend.src %>/views/*.html'
|
|
],
|
|
tasks: ['htmldev']
|
|
},
|
|
gruntfile: {
|
|
files: ['Gruntfile.js', 'grunt-config/*.js']
|
|
},
|
|
requirements: {
|
|
files: ['requirements.txt'],
|
|
tasks: ['shell:pip_install']
|
|
}
|
|
};
|