2015-06-13 17:37:35 +02:00
|
|
|
module.exports = {
|
2016-01-29 13:42:25 +01:00
|
|
|
bower: {
|
|
|
|
files: 'bower.json',
|
|
|
|
tasks: ['wiredep']
|
|
|
|
},
|
2015-06-13 17:37:35 +02:00
|
|
|
js: {
|
|
|
|
files: '<%= paths.frontend_js %>',
|
2016-02-01 21:56:49 +01:00
|
|
|
tasks: ['jsdev']
|
|
|
|
},
|
|
|
|
py: {
|
|
|
|
files: 'accountant/**/*.py',
|
|
|
|
tasks: ['pydev']
|
|
|
|
},
|
|
|
|
html: {
|
|
|
|
files: [
|
|
|
|
'accountant/frontend/templates/**/*.html',
|
|
|
|
'accountant/frontend/static/templates/**/*.html'
|
|
|
|
],
|
|
|
|
tasks: ['htmldev']
|
2016-01-29 13:42:25 +01:00
|
|
|
},
|
|
|
|
gruntfile: {
|
|
|
|
files: ['Gruntfile.js']
|
2016-01-29 14:02:55 +01:00
|
|
|
},
|
|
|
|
requirements: {
|
|
|
|
files: ['requirements.txt'],
|
|
|
|
tasks: ['shell:pip_install']
|
2015-06-13 17:37:35 +02:00
|
|
|
}
|
|
|
|
};
|