@eventcatalog/core 2.39.2 → 2.40.0
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/dist/analytics/analytics.cjs +1 -1
- package/dist/analytics/analytics.js +2 -2
- package/dist/analytics/log-build.cjs +1 -1
- package/dist/analytics/log-build.js +3 -3
- package/dist/{chunk-UMDTA3ST.js → chunk-4HQYTFYJ.js} +1 -1
- package/dist/{chunk-MYIRODAL.js → chunk-VFV2YSLH.js} +1 -1
- package/dist/{chunk-ZCL3ECGU.js → chunk-WJK67MSP.js} +1 -1
- package/dist/constants.cjs +1 -1
- package/dist/constants.js +1 -1
- package/dist/eventcatalog.cjs +1 -1
- package/dist/eventcatalog.js +3 -3
- package/eventcatalog/src/content.config.ts +10 -0
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
log_build_default
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-WJK67MSP.js";
|
|
4
|
+
import "../chunk-4HQYTFYJ.js";
|
|
5
|
+
import "../chunk-VFV2YSLH.js";
|
|
6
6
|
import "../chunk-E7TXTI7G.js";
|
|
7
7
|
export {
|
|
8
8
|
log_build_default as default
|
package/dist/constants.cjs
CHANGED
package/dist/constants.js
CHANGED
package/dist/eventcatalog.cjs
CHANGED
package/dist/eventcatalog.js
CHANGED
|
@@ -6,15 +6,15 @@ import {
|
|
|
6
6
|
} from "./chunk-DCLTVJDP.js";
|
|
7
7
|
import {
|
|
8
8
|
log_build_default
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-WJK67MSP.js";
|
|
10
|
+
import "./chunk-4HQYTFYJ.js";
|
|
11
11
|
import {
|
|
12
12
|
catalogToAstro,
|
|
13
13
|
checkAndConvertMdToMdx
|
|
14
14
|
} from "./chunk-SLEMYHTU.js";
|
|
15
15
|
import {
|
|
16
16
|
VERSION
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-VFV2YSLH.js";
|
|
18
18
|
import {
|
|
19
19
|
isBackstagePluginEnabled,
|
|
20
20
|
isEventCatalogScaleEnabled,
|
|
@@ -293,6 +293,12 @@ const services = defineCollection({
|
|
|
293
293
|
pattern: [
|
|
294
294
|
'domains/*/services/*/index.(md|mdx)',
|
|
295
295
|
'domains/*/services/*/versioned/*/index.(md|mdx)',
|
|
296
|
+
|
|
297
|
+
// Capture subdomain folders
|
|
298
|
+
'domains/*/subdomains/*/services/*/index.(md|mdx)',
|
|
299
|
+
'domains/*/subdomains/*/services/*/versioned/*/index.(md|mdx)',
|
|
300
|
+
|
|
301
|
+
// Capture services in the root
|
|
296
302
|
'services/*/index.(md|mdx)', // ✅ Capture only services markdown files
|
|
297
303
|
'services/*/versioned/*/index.(md|mdx)', // ✅ Capture versioned files inside services
|
|
298
304
|
],
|
|
@@ -333,6 +339,10 @@ const domains = defineCollection({
|
|
|
333
339
|
// ✅ Strictly include only index.md at the expected levels
|
|
334
340
|
'domains/*/index.(md|mdx)',
|
|
335
341
|
'domains/*/versioned/*/index.(md|mdx)',
|
|
342
|
+
|
|
343
|
+
// Capture subdomain folders
|
|
344
|
+
'domains/*/subdomains/*/index.(md|mdx)',
|
|
345
|
+
'domains/*/subdomains/*/versioned/*/index.(md|mdx)',
|
|
336
346
|
],
|
|
337
347
|
base: projectDirBase,
|
|
338
348
|
generateId: ({ data, ...rest }) => {
|