File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 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 {
9696 } ,
9797 info : function ( ) {
9898 this . log ( this . yoWelcome ) ;
99+ this . log ( 'Angular Fullstack v' + this . rootGeneratorVersion ( ) + '\n' ) ;
99100 this . log ( 'Out of the box I create an AngularJS app with an Express server.\n' ) ;
100101 } ,
101102 checkForConfig : function ( ) {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import angular from 'angular';
44import ngCookies from 'angular-cookies' ;
55import ngResource from 'angular-resource' ;
66import ngSanitize from 'angular-sanitize' ;
7+ import ngValidationMatch from 'angular-validation-match' ;
78< % _ if ( filters . socketio ) { _ % >
89import 'angular-socket-io' ; < % } % >
910< % _ if ( filters . ngroute ) { _ % >
@@ -14,7 +15,7 @@ import uiRouter from 'angular-ui-router';<% } %>
1415import uiBootstrap from 'angular-ui-bootstrap' ; < % } % >
1516// import ngMessages from 'angular-messages';
1617< % _ if ( filters . auth ) { _ % >
17- // import ngValidationMatch from 'angular-validation-match'; <% } %>
18+ < % } % >
1819
1920
2021import { routeConfig } from './app.config';
@@ -38,6 +39,7 @@ angular.module('<%= scriptAppName %>', [
3839 ngCookies,
3940 ngResource,
4041 ngSanitize,
42+ 'validation.match',
4143 < % _ if ( filters . socketio ) { % >
4244 'btford.socket-io',< % } % >
4345 < % _ if ( filters . ngroute ) { % >
You can’t perform that action at this time.
0 commit comments