@eventcatalog/create-eventcatalog 3.1.2 → 3.1.3
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/index.js +18 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -22518,7 +22518,7 @@ var import_os2 = __toESM(require("os"));
|
|
|
22518
22518
|
var package_default = {
|
|
22519
22519
|
name: "@eventcatalog/create-eventcatalog",
|
|
22520
22520
|
description: "Create EventCatalog with one command",
|
|
22521
|
-
version: "3.1.
|
|
22521
|
+
version: "3.1.3",
|
|
22522
22522
|
bin: {
|
|
22523
22523
|
"create-catalog": "./dist/index.js"
|
|
22524
22524
|
},
|
|
@@ -22953,6 +22953,23 @@ Run ${import_chalk5.default.cyan(`${program.name()} --help`)} to see all options
|
|
|
22953
22953
|
organizationName = res.organizationName.trim();
|
|
22954
22954
|
}
|
|
22955
22955
|
}
|
|
22956
|
+
const onboardingRes = await (0, import_prompts.default)({
|
|
22957
|
+
type: "confirm",
|
|
22958
|
+
name: "wantsOnboarding",
|
|
22959
|
+
message: "Would you like a free onboarding call to learn how EventCatalog can help your team?",
|
|
22960
|
+
initial: false
|
|
22961
|
+
});
|
|
22962
|
+
if (onboardingRes.wantsOnboarding) {
|
|
22963
|
+
console.log();
|
|
22964
|
+
console.log(import_chalk5.default.cyan("Great! You can schedule your free onboarding call here:"));
|
|
22965
|
+
console.log(import_chalk5.default.bold.underline("https://calendly.com/boyneyy123/eventcatalog-onboard-session"));
|
|
22966
|
+
console.log();
|
|
22967
|
+
await (0, import_prompts.default)({
|
|
22968
|
+
type: "text",
|
|
22969
|
+
name: "continue",
|
|
22970
|
+
message: "Press Enter to continue with the installation..."
|
|
22971
|
+
});
|
|
22972
|
+
}
|
|
22956
22973
|
const template = program.template || "default";
|
|
22957
22974
|
const resolvedProjectPath = import_path11.default.resolve(projectPath);
|
|
22958
22975
|
const projectName = import_path11.default.basename(resolvedProjectPath);
|