File tree 2 files changed +7
-1
lines changed
generators/generator-widget
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ npm install
44
44
#### Todo
45
45
---
46
46
47
- - completion message (e.g "dont forget to add impac-angular module declaration")
48
47
- define default data values & options for charts so upon generation, charts are displayable!
49
48
- static config & options moved into .json config files to clean-up index.js
50
49
- add more widget-settings
Original file line number Diff line number Diff line change @@ -53,6 +53,13 @@ module.exports = yeoman.generators.Base.extend({
53
53
mod : _ . kebabCase ( this . props . widgetName )
54
54
} ;
55
55
} ;
56
+
57
+ // The generator has finished it's magic, do any final jobs and say goodbye.
58
+ this . on ( 'end' , function ( ) {
59
+ this . log ( yosay (
60
+ chalk . green ( 'All done! ' ) + chalk . yellow ( 'Don\'t forget to add your new component to your App\'s module dependancies!!' )
61
+ ) ) ;
62
+ } ) ;
56
63
} ,
57
64
prompting : function ( ) {
58
65
var done = this . async ( ) ;
You can’t perform that action at this time.
0 commit comments