create-revo 2.0.3 → 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cli.js CHANGED
@@ -72,7 +72,7 @@ function copyTemplateFiles(templateType, projectName, targetDir) {
72
72
  process.exit(1);
73
73
  }
74
74
 
75
- console.log("\nSetting up project...");
75
+ console.log("\nSetting up project...\n");
76
76
 
77
77
  fs.mkdirSync(targetDir, { recursive: true });
78
78
 
@@ -84,7 +84,6 @@ function copyTemplateFiles(templateType, projectName, targetDir) {
84
84
 
85
85
  createGitignoreFile(targetDir);
86
86
 
87
- console.log(`Project setup complete.`);
88
87
  }
89
88
 
90
89
  function createGitignoreFile(projectDir) {
@@ -261,12 +260,12 @@ async function main() {
261
260
  const copyDurationMs = Date.now() - copyStartMs;
262
261
 
263
262
  console.log(`Time Taken - ${copyDurationMs}ms.`);
264
- console.log(`Project created successfully at ${finalTargetDir}`);
263
+ console.log(`\nProject created at ${finalTargetDir}`);
265
264
  process.chdir(finalTargetDir);
266
265
 
267
266
  console.log("\nNext steps:");
268
- console.log("1. Run: npm install");
269
- console.log("2. Run: npm run dev");
267
+ console.log("1. npm install");
268
+ console.log("2. npm run dev");
270
269
  } catch (error) {
271
270
  console.error("Error creating project:", error.message);
272
271
  process.exit(1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-revo",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "Project setup tool for ReactJS and NextJS",
5
5
  "main": "cli.js",
6
6
  "bin": {
@@ -20,7 +20,7 @@ export default function Home() {
20
20
  your project is ready to go
21
21
  </p>
22
22
  <p className="text-black/80 text-xs tracking-wide">
23
- setup in under 500ms
23
+ setup in under 50ms
24
24
  </p>
25
25
  </div>
26
26
  </div>
@@ -20,7 +20,7 @@ function App() {
20
20
  your project is ready to go
21
21
  </p>
22
22
  <p className="text-black/80 text-xs tracking-wide">
23
- setup in under 500ms
23
+ setup in under 50ms
24
24
  </p>
25
25
  </div>
26
26
  </div>