generator-hyper-angular
Version:
Yeoman generator for AngularJS/Express/node.js apps emphasizing modularity, configuration, and testing
22 lines (20 loc) • 592 B
JavaScript
(function () {
'use strict';
var config = require('../../express/config/config'),
path = require('path');
module.exports = {
app: {
options: {
jshintrc: path.join(config.root, '/.jshintrc')
},
files: [
{ expand: true, cwd: 'app/js', src: '*.js' },
{ expand: true, cwd: 'app/js', src: '{controllers,directives,filters,services}/**/*.js' },
{ expand: true, cwd: 'app/express', src: '**/*.js' },
{ expand: true, cwd: 'grunt', src: '**/*.js' },
{ expand: true, cwd: 'test', src: '**/*.js' },
{ expand: true, cwd: '.', src: '*.js' }
]
}
};
})();