generator-hyper-angular
Version:
Yeoman generator for AngularJS/Express/node.js apps emphasizing modularity, configuration, and testing
21 lines (20 loc) • 391 B
JavaScript
(function () {
'use strict';
module.exports = {
nodeModules: {
files: [
{ expand: true, src: 'node_modules/**/*', dest: 'dist/' }
]
},
appJs: {
files: [
{ expand: true, cwd: 'app/js', src: '**/*', dest: 'dist/app/js/' }
]
},
jadeViews: {
files: [
{ expand: true, cwd: 'express/views', src: '**/*.jade', dest: 'dist/express/views/' }
]
}
};
})();