This repository was archived by the owner on Nov 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +10
-12
lines changed
Expand file tree Collapse file tree 7 files changed +10
-12
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" : {
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" : [
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ const program = new Command();
99ErrorHandler . checkNodeVersion ( 22 ) ;
1010
1111program
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 ) ;
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import path from "path";
33import { createApp } from "./create-app" ;
44
55async 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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": {
You can’t perform that action at this time.
0 commit comments