Skip to content

Commit d796770

Browse files
committed
add index.directives and require it #257
1 parent 42d441c commit d796770

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

angular/index.directives.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
angular.module('app.directives');

angular/index.main.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
1-
//Modules
21
import './index.modules';
32

4-
//Run
53
import './index.run';
64

7-
//Config
85
import './index.config';
96

10-
//Filters
117
import './index.filters';
128

13-
//Components
149
import './index.components';
1510

16-
//Services
11+
import './index.directives';
12+
1713
import './index.services';

angular/index.modules.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ angular.module('app', [
33
'app.filters',
44
'app.services',
55
'app.components',
6+
'app.directives',
67
'app.routes',
78
'app.config',
89
'app.partials'
@@ -13,6 +14,7 @@ angular.module('app.routes', []);
1314
angular.module('app.filters', []);
1415
angular.module('app.services', []);
1516
angular.module('app.config', []);
17+
angular.module('app.directives', []);
1618
angular.module('app.components', [
1719
'ui.router', 'ngMaterial', 'angular-loading-bar',
1820
'restangular', 'ngStorage', 'satellizer'

0 commit comments

Comments
 (0)