@askexenow/exe-os 0.8.63 → 0.8.64
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/dist/bin/cli.js +5 -1
- package/dist/bin/setup.js +5 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -7524,7 +7524,11 @@ async function runSetupWizard(opts = {}) {
|
|
|
7524
7524
|
log("Team: " + createdEmployees.map((e) => `${e.name} (${e.role})`).join(", "));
|
|
7525
7525
|
}
|
|
7526
7526
|
log("");
|
|
7527
|
-
log(
|
|
7527
|
+
log("=== Next Steps ===");
|
|
7528
|
+
log("");
|
|
7529
|
+
log(" 1. Restart your terminal (or run: source ~/.zshrc)");
|
|
7530
|
+
log(` 2. cd into a project folder: cd ~/my-project`);
|
|
7531
|
+
log(` 3. Launch your COO: ${cooName}1`);
|
|
7528
7532
|
log("");
|
|
7529
7533
|
} finally {
|
|
7530
7534
|
rl.close();
|
package/dist/bin/setup.js
CHANGED
|
@@ -4551,7 +4551,11 @@ async function runSetupWizard(opts = {}) {
|
|
|
4551
4551
|
log("Team: " + createdEmployees.map((e) => `${e.name} (${e.role})`).join(", "));
|
|
4552
4552
|
}
|
|
4553
4553
|
log("");
|
|
4554
|
-
log(
|
|
4554
|
+
log("=== Next Steps ===");
|
|
4555
|
+
log("");
|
|
4556
|
+
log(" 1. Restart your terminal (or run: source ~/.zshrc)");
|
|
4557
|
+
log(` 2. cd into a project folder: cd ~/my-project`);
|
|
4558
|
+
log(` 3. Launch your COO: ${cooName}1`);
|
|
4555
4559
|
log("");
|
|
4556
4560
|
} finally {
|
|
4557
4561
|
rl.close();
|
package/package.json
CHANGED