18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
html: '<%= accountant.frontend.src %>/index.html ',
|
||
|
options: {
|
||
|
dest: '<%= accountant.frontend.dist %>',
|
||
|
flow: {
|
||
|
html: {
|
||
|
steps: {
|
||
|
js: ['concat', 'uglify'],
|
||
|
css: ['cssmin']
|
||
|
},
|
||
|
post: {}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|