Skip to content

Commit 546d3e7

Browse files
committed
chore: wizard updates on react and ng
1 parent bcd62be commit 546d3e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/cli/lib/PromptSession.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

packages/cli/templates/angular/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}
1616
export = new AngularFramework() as Framework;

packages/cli/templates/react/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)