@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - dc89208: fix(core): core folder now copied on buld
8
+
3
9
  ## 2.0.2
4
10
 
5
11
  ### Patch Changes
@@ -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"));
@@ -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"));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.0.2",
4
+ "version": "2.0.3",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },