@@ -18,7 +18,6 @@ const InitCommand: any = Command.extend({
1818 availableOptions : [
1919 { name : 'dry-run' , type : Boolean , default : false , aliases : [ 'd' ] } ,
2020 { name : 'verbose' , type : Boolean , default : false , aliases : [ 'v' ] } ,
21- { name : 'blueprint' , type : String , aliases : [ 'b' ] } ,
2221 { name : 'link-cli' , type : Boolean , default : false , aliases : [ 'lc' ] } ,
2322 { name : 'skip-npm' , type : Boolean , default : false , aliases : [ 'sn' ] } ,
2423 { name : 'skip-bower' , type : Boolean , default : true , aliases : [ 'sb' ] } ,
@@ -32,10 +31,6 @@ const InitCommand: any = Command.extend({
3231
3332 anonymousOptions : [ '<glob-pattern>' ] ,
3433
35- _defaultBlueprint : function ( ) {
36- return 'ng2' ;
37- } ,
38-
3934 run : function ( commandOptions : any , rawArgs : string [ ] ) {
4035 if ( commandOptions . dryRun ) {
4136 commandOptions . skipNpm = true ;
@@ -98,7 +93,7 @@ const InitCommand: any = Command.extend({
9893
9994 const blueprintOpts = {
10095 dryRun : commandOptions . dryRun ,
101- blueprint : commandOptions . blueprint || this . _defaultBlueprint ( ) ,
96+ blueprint : 'ng2' ,
10297 rawName : packageName ,
10398 targetFiles : rawArgs || '' ,
10499 rawArgs : rawArgs . toString ( ) ,
0 commit comments