File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ class Generator extends BaseGenerator {
7
7
var prompts = [ {
8
8
name : 'moduleName' ,
9
9
message : 'What module name would you like to use?' ,
10
- default : `${ this . scriptAppName } . ${ this . name } ` ,
10
+ default : `${ this . name } Module ` ,
11
11
when : ( ) => this . config . get ( 'modulePrompt' )
12
12
} , {
13
13
name : 'dir' ,
@@ -33,11 +33,11 @@ class Generator extends BaseGenerator {
33
33
}
34
34
35
35
end ( ) {
36
- this . log ( `
37
- In the parent of this component, you should now import this component and add it as a dependency:
38
- import ${ this . classedName } Component from './${ this . name } /${ this . name } .component';
39
- ...
40
- export angular.module('myParentModule', [${ this . classedName } Component]);` ) ;
36
+ // this.log(`
37
+ // In the parent of this component, you should now import this component and add it as a dependency:
38
+ // import ${this.classedName}Component from './${this.name}/${this.name}.component';
39
+ // ...
40
+ // export angular.module('myParentModule', [${this.classedName}Component]);`);
41
41
}
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments