-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiles.js
More file actions
27 lines (26 loc) · 809 Bytes
/
files.js
File metadata and controls
27 lines (26 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var routerFiles = {
src: [
'src/angular-feature-manager-module.js',
'src/$feature-provider.js',
'src/toggle-disable-styles-factory.js',
'src/directives/feature-disable-fields-directive.js',
'src/directives/feature-name-directive.js',
'src/directives/read-only-area-directive.js'
]
// testUtils: [
// 'test/testUtils.js'
// ],
// test: [
// 'test/*Spec.js',
// 'test/compat/matchers.js'
// ],
// angular: function(version) {
// return [
// 'lib/angular-' + version + '/angular.js',
// 'lib/angular-' + version + '/angular-mocks.js'
// ].concat(version === '1.2.14' ? ['lib/angular-' + version + '/angular-animate.js'] : []);
// }
};
if (exports) {
exports.files = routerFiles;
}