File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class PromptSession extends BasePromptSession {
6161 name : "framework" ,
6262 message : "Choose framework:" ,
6363 choices : this . getFrameworkNames ( ) ,
64- default : "jQuery "
64+ default : "React "
6565 } ) ;
6666
6767 const framework = this . templateManager . getFrameworkByName ( frameRes ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class AngularFramework implements Framework {
1010 this . name = "Angular" ;
1111 this . projectLibraries = [ ] ;
1212 this . projectLibraries . push ( ...require ( "@igniteui/angular-templates" ) . default as ProjectLibrary [ ] ) ;
13- this . projectLibraries . push ( require ( "./ig-ts" ) as ProjectLibrary ) ;
13+ // this.projectLibraries.push(require("./ig-ts") as ProjectLibrary);
1414 }
1515}
1616export = new AngularFramework ( ) as Framework ;
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ class ReactFramework implements Framework {
99 this . id = "react" ;
1010 this . name = "React" ;
1111 this . projectLibraries = [ ] ;
12- this . projectLibraries . push ( require ( "./es6" ) as ProjectLibrary ) ;
13- this . projectLibraries . push ( require ( "./igr-es6" ) as ProjectLibrary ) ;
12+ // this.projectLibraries.push(require("./es6") as ProjectLibrary);
13+ // this.projectLibraries.push(require("./igr-es6") as ProjectLibrary);
1414 this . projectLibraries . push ( require ( "./igr-ts" ) as ProjectLibrary ) ;
1515 }
1616}
You can’t perform that action at this time.
0 commit comments