@eventcatalog/core 2.0.5 → 2.0.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.0.6
4
+
5
+ ### Patch Changes
6
+
7
+ - c098f12: fix(core): hydrate content before building
8
+
3
9
  ## 2.0.5
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eventcatalog/core",
3
3
  "type": "module",
4
- "version": "2.0.5",
4
+ "version": "2.0.6",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -15,13 +15,13 @@
15
15
  "prepublishOnly": "npm run build:bin",
16
16
  "test": "jest --config=$(pwd)/../../jest.config.js",
17
17
  "start": "astro dev",
18
- "build": "astro check --minimumSeverity error && astro build",
18
+ "build": "npm run scripts:hydrate-content && astro check --minimumSeverity error && astro build",
19
19
  "build:cd": "node scripts/build-ci.js && astro check --minimumSeverity error && astro build",
20
20
  "preview": "astro preview",
21
21
  "astro": "astro",
22
22
  "scripts:hydrate-content": "node scripts/catalog-to-astro-content-directory.js",
23
23
  "start:catalog": "node scripts/start-catalog-locally.js",
24
- "verify-build:catalog": "rimraf packages/eventcatalog/dist && node scripts/verify-build.js",
24
+ "verify-build:catalog": "rimraf packages/eventcatalog/dist && npm run build:cd",
25
25
  "changeset": "changeset",
26
26
  "release": "changeset publish",
27
27
  "format": "prettier --config .prettierrc --write \"**/*.{js,jsx,ts,tsx,json}\"",