14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
grunt: [
|
|
'Gruntfile.js',
|
|
'grunt-config/*.js'
|
|
],
|
|
frontend: [
|
|
'<%= accountant.frontend.src %>/index.html',
|
|
'<%= accountant.frontend.src %>/views/*.html',
|
|
'<%= accountant.frontend.src %>/js/*.js'
|
|
]
|
|
};
|