create-prod-backend 1.0.1 → 1.0.2
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { execSync } from "child_process";
|
|
|
5
5
|
import fs from "fs";
|
|
6
6
|
import path from "path";
|
|
7
7
|
|
|
8
|
-
console.log("
|
|
8
|
+
console.log("Welcome to the Express Backend Generator !!");
|
|
9
9
|
|
|
10
10
|
// answer object will have projectName, useMongo, ENV, dependencies, npmi
|
|
11
11
|
// to access these values we can use answer.projectName, answer.useMongo, answer.ENV, answer.dependencies, answer.npmi
|
|
@@ -290,6 +290,7 @@ coverage/
|
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
console.log(`\n${answer.projectName} project created successfully!\n`);
|
|
293
|
+
console.log("Happy coding! :)");
|
|
293
294
|
} catch (error) {
|
|
294
295
|
console.error("Error:", error.message);
|
|
295
296
|
process.exit(1);
|
package/package.json
CHANGED