File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ export class Generator extends Base {
96
96
} ,
97
97
info : function ( ) {
98
98
this . log ( this . yoWelcome ) ;
99
+ this . log ( 'Angular Fullstack v' + this . rootGeneratorVersion ( ) + '\n' ) ;
99
100
this . log ( 'Out of the box I create an AngularJS app with an Express server.\n' ) ;
100
101
} ,
101
102
checkForConfig : function ( ) {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import angular from 'angular';
4
4
import ngCookies from 'angular-cookies' ;
5
5
import ngResource from 'angular-resource' ;
6
6
import ngSanitize from 'angular-sanitize' ;
7
+ import ngValidationMatch from 'angular-validation-match' ;
7
8
< % _ if ( filters . socketio ) { _ % >
8
9
import 'angular-socket-io' ; < % } % >
9
10
< % _ if ( filters . ngroute ) { _ % >
@@ -14,7 +15,7 @@ import uiRouter from 'angular-ui-router';<% } %>
14
15
import uiBootstrap from 'angular-ui-bootstrap' ; < % } % >
15
16
// import ngMessages from 'angular-messages';
16
17
< % _ if ( filters . auth ) { _ % >
17
- // import ngValidationMatch from 'angular-validation-match'; <% } %>
18
+ < % } % >
18
19
19
20
20
21
import { routeConfig } from './app.config';
@@ -38,6 +39,7 @@ angular.module('<%= scriptAppName %>', [
38
39
ngCookies,
39
40
ngResource,
40
41
ngSanitize,
42
+ 'validation.match',
41
43
< % _ if ( filters . socketio ) { % >
42
44
'btford.socket-io',< % } % >
43
45
< % _ if ( filters . ngroute ) { % >
You can’t perform that action at this time.
0 commit comments