@eventcatalog/core 2.0.2 → 2.0.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/CHANGELOG.md +6 -0
- package/bin/dist/eventcatalog.cjs +2 -0
- package/bin/dist/eventcatalog.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3127,6 +3127,8 @@ program2.command("dev").description("Run development server of EventCatalog").op
|
|
|
3127
3127
|
console.log("EventCatalog has started on port 3000: http://localhost:3000/docs");
|
|
3128
3128
|
});
|
|
3129
3129
|
program2.command("build").description("Run build of EventCatalog").action((options) => {
|
|
3130
|
+
console.log("Building EventCatalog...");
|
|
3131
|
+
copyCore();
|
|
3130
3132
|
copyFolder((0, import_node_path.join)(dir, "public"), (0, import_node_path.join)(core, "public"));
|
|
3131
3133
|
copyFile((0, import_node_path.join)(dir, "eventcatalog.config.js"), (0, import_node_path.join)(core, "eventcatalog.config.js"));
|
|
3132
3134
|
copyFile((0, import_node_path.join)(dir, "eventcatalog.styles.css"), (0, import_node_path.join)(core, "eventcatalog.styles.css"));
|
package/bin/dist/eventcatalog.js
CHANGED
|
@@ -3129,6 +3129,8 @@ program2.command("dev").description("Run development server of EventCatalog").op
|
|
|
3129
3129
|
console.log("EventCatalog has started on port 3000: http://localhost:3000/docs");
|
|
3130
3130
|
});
|
|
3131
3131
|
program2.command("build").description("Run build of EventCatalog").action((options) => {
|
|
3132
|
+
console.log("Building EventCatalog...");
|
|
3133
|
+
copyCore();
|
|
3132
3134
|
copyFolder(join(dir, "public"), join(core, "public"));
|
|
3133
3135
|
copyFile(join(dir, "eventcatalog.config.js"), join(core, "eventcatalog.config.js"));
|
|
3134
3136
|
copyFile(join(dir, "eventcatalog.styles.css"), join(core, "eventcatalog.styles.css"));
|