Comparing version 1.0.34 to 1.0.35
@@ -48,4 +48,7 @@ #! /usr/bin/env node | ||
console.log('\nFinished npm install in client directory.'); | ||
// Here's the new part for deleting the bin folder | ||
const binPath = path.join(clientPath, 'bin'); | ||
console.log('\nProject setup completed successfully!'); | ||
// Move back to project root directory | ||
process.chdir(projectPath); | ||
// Here's the new part for deleting the bin folder in the project root | ||
const binPath = path.join(projectPath, 'bin'); | ||
fs.rm(binPath, { recursive: true, force: true }, (err) => { | ||
@@ -58,3 +61,2 @@ if (err) { | ||
}); | ||
console.log('\nProject setup completed successfully!'); | ||
} else { | ||
@@ -72,2 +74,1 @@ console.error('\nAn error occurred during npm install in client directory.'); | ||
}); | ||
{ | ||
"name": "mern-x", | ||
"version": "1.0.34", | ||
"version": "1.0.35", | ||
"description": "MERN-X is a comprehensive full-stack project structure designed to streamline the development of web applications using the popular MERN stack: MongoDB, Express.js, React, and Node.js. Built with simplicity and scalability in mind, MERN.js empowers developers to create robust and efficient applications from end to end.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
164091
4386