@eventcatalog/core 0.0.2 → 0.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,8 +1,13 @@
1
1
  # @eventcatalog/core
2
2
 
3
- ## 0.0.2
3
+ ## 0.0.3
4
+
4
5
  ### Patch Changes
5
6
 
7
+ - [`23a96fc`](https://github.com/boyney123/eventcatalog/commit/23a96fc651907517cee937657be14cbf9fe95fb9) [#42](https://github.com/boyney123/eventcatalog/pull/42) Thanks [@boyney123](https://github.com/boyney123)! - fix: now remove the .next folder before we start the dev server foric…
6
8
 
9
+ ## 0.0.2
10
+
11
+ ### Patch Changes
7
12
 
8
13
  - [`53b27cb`](https://github.com/boyney123/eventcatalog/commit/53b27cb5bb5ab7fa8d526309c6dd50e1f17f3db1) [#39](https://github.com/boyney123/eventcatalog/pull/39) Thanks [@boyney123](https://github.com/boyney123)! - feat: removed ids from services
@@ -69,9 +69,10 @@ cli
69
69
  .command('dev [siteDir]')
70
70
  .description('Start the development server.')
71
71
  .action(() => {
72
- if (!fs.existsSync(eventCatalogLibDir)) {
73
- copyCoreApplicationCodeIntoUsersProjectDir();
74
- }
72
+ // Fix for https://github.com/boyney123/eventcatalog/issues/41, not the best but will do for now
73
+ fs.rmSync(eventCatalogLibDir, { recursive: true, force: true });
74
+
75
+ copyCoreApplicationCodeIntoUsersProjectDir();
75
76
 
76
77
  // copy any public assets over (from users to the lib itself)
77
78
  fs.copySync(path.join(projectDIR, 'public'), path.join(eventCatalogLibDir, 'public'));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },