generator-angular-eggs
Version:
Angular 1.5, Angular Component Router, Bootstrap v4(alpha) and TingoDB(like MongoDB) with an Express server
30 lines (28 loc) • 615 B
JavaScript
(function() {
'use strict';
module.exports = {
dist: {
files: [{
expand: true,
dot: true,
cwd: '<%%= paths.app %>',
dest: '<%%= paths.dist %>',
src: [
'*.{ico,png,txt}',
'images/{,*/}*.webp',
'components/{,*/}*.html',
'directives/{,*/}*.html',
'{,*/}*.html',
'styles/fonts/{,*/}*.*'
]
}]
}<% if (!includeSass) { %>,
styles: {
expand: true,
dot: true,
cwd: '<%%= paths.app %>/styles',
dest: '.tmp/styles/',
src: '{,*/}*.css'
}<% } %>
};
})();