@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.
- package/CHANGELOG.md +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventcatalog/core",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.
|
|
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 &&
|
|
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}\"",
|