@expressots/cli 1.3.0-rc-1 → 1.3.1
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/bin/cli.d.ts +1 -1
- package/bin/cli.js +1 -1
- package/bin/new/form.js +1 -1
- package/package.json +1 -1
package/bin/cli.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
export declare const CLI_VERSION = "1.
|
|
2
|
+
export declare const CLI_VERSION = "1.3.0";
|
package/bin/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ const helpers_1 = require("yargs/helpers");
|
|
|
10
10
|
const generate_1 = require("./generate");
|
|
11
11
|
const info_1 = require("./info");
|
|
12
12
|
const new_1 = require("./new");
|
|
13
|
-
exports.CLI_VERSION = "1.
|
|
13
|
+
exports.CLI_VERSION = "1.3.0";
|
|
14
14
|
console.log(`\n[🐎 Expressots]\n`);
|
|
15
15
|
(0, yargs_1.default)((0, helpers_1.hideBin)(process.argv))
|
|
16
16
|
.scriptName("expressots")
|
package/bin/new/form.js
CHANGED
|
@@ -175,7 +175,7 @@ const projectForm = async (projectName, args) => {
|
|
|
175
175
|
progressBar.update(100);
|
|
176
176
|
progressBar.stop();
|
|
177
177
|
console.log("\n");
|
|
178
|
-
console.log("🐎 Project ", chalk_1.default.green(
|
|
178
|
+
console.log("🐎 Project ", chalk_1.default.green(answer.name), "created successfully!");
|
|
179
179
|
console.log("🤙 Run the following commands to start the project:\n");
|
|
180
180
|
console.log(chalk_1.default.bold.gray(`$ cd ${answer.name}`));
|
|
181
181
|
switch (answer.packageManager) {
|