Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit bb2ea80

Browse files
committed
fix: remove all create-midnight-app references, use create-mn-app v0.2.3
- Update CLI name from create-midnight-app to create-mn-app - Update CLI header display to show create-mn-app - Update git commit message - Update test output message - Update template descriptions - Update README repository link - Consistent branding across all files
1 parent 2a7c127 commit bb2ea80

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash
378378
- 📖 [Midnight Documentation](https://docs.midnight.network)
379379
- 🚀 [Getting Started Guide](https://docs.midnight.network/getting-started)
380380
- 💬 [Midnight Discord Community](https://discord.gg/midnight)
381-
- 🐙 [GitHub Repository](https://github.com/Olanetsoft/create-midnight-app)
381+
- 🐙 [GitHub Repository](https://github.com/Olanetsoft/create-mn-app)
382382
383383
## Contributing
384384

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-mn-app",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Create Midnight Network applications with zero configuration",
55
"main": "dist/index.js",
66
"bin": {
@@ -16,7 +16,7 @@
1616
"dev": "tsc --watch",
1717
"prepublishOnly": "npm run build",
1818
"test": "npm run build && node dist/test.js",
19-
"test-local": "npm run build && npm link && npx create-midnight-app test-app",
19+
"test-local": "npm run build && npm link && npx create-mn-app test-app",
2020
"clean": "rm -rf dist test-app"
2121
},
2222
"keywords": [

src/cli.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ const program = new Command();
99
ErrorHandler.checkNodeVersion(22);
1010

1111
program
12-
.name("create-midnight-app")
12+
.name("create-mn-app")
1313
.description("Create a new Midnight Network application")
14-
.version("0.2.2")
14+
.version("0.2.3")
1515
.argument("[project-directory]", "Directory name for your project")
1616
.option(
1717
"-t, --template <name>",
@@ -25,9 +25,7 @@ program
2525
.option("--skip-git", "Skip git repository initialization")
2626
.option("--verbose", "Show detailed output")
2727
.action(async (projectDirectory, options) => {
28-
console.log(
29-
chalk.bold.cyan("\ncreate-midnight-app") + chalk.gray(" v0.2.1\n")
30-
);
28+
console.log(chalk.bold.cyan("\ncreate-mn-app") + chalk.gray(" v0.2.3\n"));
3129

3230
try {
3331
await createApp(projectDirectory, options);

src/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import path from "path";
33
import { createApp } from "./create-app";
44

55
async function testCreateApp() {
6-
console.log("🧪 Testing create-midnight-app...\n");
6+
console.log("🧪 Testing create-mn-app...\n");
77

88
const testDir = path.join(process.cwd(), "test-app");
99

src/utils/git-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class GitUtils {
2020
await this.runGitCommand(projectPath, [
2121
"commit",
2222
"-m",
23-
"Initial commit from create-midnight-app",
23+
"Initial commit from create-mn-app",
2424
]);
2525
}
2626

templates/hello-world/README.md.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# {{projectName}}
22

3-
A Midnight Network application created with `create-midnight-app`.
3+
A Midnight Network application created with `create-mn-app`.
44

55
## Getting Started
66

templates/hello-world/package.json.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "{{projectName}}",
33
"version": "1.0.0",
44
"type": "module",
5-
"description": "A Midnight Network application created with create-midnight-app",
5+
"description": "A Midnight Network application created with create-mn-app",
66
"author": "{{author}}",
77
"license": "MIT",
88
"scripts": {

0 commit comments

Comments
 (0)