generator-hyper-angular
Version:
Yeoman generator for AngularJS/Express/node.js apps emphasizing modularity, configuration, and testing
29 lines (28 loc) • 431 B
JavaScript
(function () {
'use strict';
module.exports = {
development: {
tasks: [
'compile:development',
'express:development',
'watch:expressDevelopment'
]
},
test: {
tasks: [
'test:all',
'compile:test',
'express:test',
'watch:expressTest'
]
},
production: {
tasks: [
'test:all',
'compile:production',
'express:production',
'watch:expressProduction'
]
}
};
})();