diff --git a/packages/cli/lib/PromptSession.ts b/packages/cli/lib/PromptSession.ts index 99353b3b9..2ef37e669 100644 --- a/packages/cli/lib/PromptSession.ts +++ b/packages/cli/lib/PromptSession.ts @@ -61,7 +61,7 @@ export class PromptSession extends BasePromptSession { name: "framework", message: "Choose framework:", choices: this.getFrameworkNames(), - default: "jQuery" + default: "React" }); const framework = this.templateManager.getFrameworkByName(frameRes); diff --git a/packages/cli/templates/angular/index.ts b/packages/cli/templates/angular/index.ts index 1dfad0b1b..6962039c4 100644 --- a/packages/cli/templates/angular/index.ts +++ b/packages/cli/templates/angular/index.ts @@ -10,7 +10,7 @@ class AngularFramework implements Framework { this.name = "Angular"; this.projectLibraries = []; this.projectLibraries.push(...require("@igniteui/angular-templates").default as ProjectLibrary[]); - this.projectLibraries.push(require("./ig-ts") as ProjectLibrary); + // this.projectLibraries.push(require("./ig-ts") as ProjectLibrary); } } export = new AngularFramework() as Framework; diff --git a/packages/cli/templates/react/index.ts b/packages/cli/templates/react/index.ts index c33bf0c53..7127377f2 100644 --- a/packages/cli/templates/react/index.ts +++ b/packages/cli/templates/react/index.ts @@ -9,8 +9,8 @@ class ReactFramework implements Framework { this.id = "react"; this.name = "React"; this.projectLibraries = []; - this.projectLibraries.push(require("./es6") as ProjectLibrary); - this.projectLibraries.push(require("./igr-es6") as ProjectLibrary); + // this.projectLibraries.push(require("./es6") as ProjectLibrary); + // this.projectLibraries.push(require("./igr-es6") as ProjectLibrary); this.projectLibraries.push(require("./igr-ts") as ProjectLibrary); } }