Skip to content

Commit

Permalink
Merge pull request #326 from UpendoVentures/tasks/release-prep-1.13.0
Browse files Browse the repository at this point in the history
Tasks/release prep 1.13.0
  • Loading branch information
WillStrohl authored Nov 14, 2024
2 parents 2d5596d + c43dc89 commit 0bfaa84
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion generators/auth-provider/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating Authentication Provider.'));
this.log(chalk.white('Creating your new Authentication Provider project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("Modules/");
Expand Down
2 changes: 1 addition & 1 deletion generators/hcc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ module.exports = class extends DnnGeneratorBase {

writing() {
this.log(
chalk.white("Creating Hotcakes Commerce extension point.")
chalk.white("Creating your new Hotcakes Commerce extension point project.")
);

let namespaceRoot = this.props.namespaceRoot;
Expand Down
2 changes: 1 addition & 1 deletion generators/library-scheduledjob/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating Class Library.'));
this.log(chalk.white('Creating your new DNN Scheduler project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("Libraries/");
Expand Down
2 changes: 1 addition & 1 deletion generators/library/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating Class Library.'));
this.log(chalk.white('Creating your new DLL/Library project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("Libraries/");
Expand Down
2 changes: 1 addition & 1 deletion generators/mvc-core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating MVC (.NET Core) Module.'));
this.log(chalk.white('Creating your new MVC (.NET Core) module project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("Modules/");
Expand Down
2 changes: 1 addition & 1 deletion generators/mvc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating MVC Module.'));
this.log(chalk.white('Creating your new MVC module project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("Modules/");
Expand Down
2 changes: 1 addition & 1 deletion generators/personabar/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white(`Creating ${this.props.pbType} Persona Bar Module.`));
this.log(chalk.white(`Creating your new ${this.props.pbType} Persona Bar extension project.`));

this.destinationRoot("Modules/");

Expand Down
2 changes: 1 addition & 1 deletion generators/skinobject/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ module.exports = class extends DnnGeneratorBase {
}

writing() {
this.log(chalk.white('Creating MVC Module.'));
this.log(chalk.white('Creating your new MVC module project.'));

// mod: this follows the Upendo development/solution pattern
this.destinationRoot("SkinObjects/");
Expand Down
2 changes: 1 addition & 1 deletion generators/solution/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = class extends Generator {
}

writing() {
this.log(chalk.white('Creating solution structure.'));
this.log(chalk.white('Creating your new solution structure.'));

this.fs.copyTpl(this.templatePath('Build/**'), this.destinationPath('Build/'),
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-upendodnn",
"version": "1.12.5",
"version": "1.13.0",
"description": "Scaffolds DNN extensions, including Modules (Webforms, SPA, and MVC), Persona Bar, Skin Object, Library, Scheduler, and Hotcakes Commerce projects (based on the generator built by Matt Rutledge).",
"homepage": "https://github.com/UpendoVentures/generator-upendodnn#readme",
"author": {
Expand Down

0 comments on commit 0bfaa84

Please sign in to comment.