@eventcatalog/create-eventcatalog 2.0.4 → 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/dist/index.js
CHANGED
|
@@ -22475,6 +22475,7 @@ var installTemplate = async ({
|
|
|
22475
22475
|
build: "eventcatalog build",
|
|
22476
22476
|
start: "eventcatalog start",
|
|
22477
22477
|
preview: "eventcatalog preview",
|
|
22478
|
+
generate: "eventcatalog generate",
|
|
22478
22479
|
test: 'echo "Error: no test specified" && exit 1'
|
|
22479
22480
|
},
|
|
22480
22481
|
dependencies: {
|
|
@@ -22489,7 +22490,8 @@ var installTemplate = async ({
|
|
|
22489
22490
|
const dependencies = [];
|
|
22490
22491
|
const devDependencies = [
|
|
22491
22492
|
"@parcel/watcher",
|
|
22492
|
-
"concurrently"
|
|
22493
|
+
"concurrently",
|
|
22494
|
+
"cross-env"
|
|
22493
22495
|
];
|
|
22494
22496
|
if (dependencies.length) {
|
|
22495
22497
|
console.log();
|
|
@@ -22652,7 +22654,7 @@ function validateNpmName(name) {
|
|
|
22652
22654
|
var package_default = {
|
|
22653
22655
|
name: "@eventcatalog/create-eventcatalog",
|
|
22654
22656
|
description: "Create EventCatalog with one command",
|
|
22655
|
-
version: "2.0.
|
|
22657
|
+
version: "2.0.6",
|
|
22656
22658
|
bin: {
|
|
22657
22659
|
"create-catalog": "./dist/index.js"
|
|
22658
22660
|
},
|
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: index
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# **EventCatalog**
|
|
6
|
+
|
|
7
|
+
Welcome to [EventCatalog](https://www.eventcatalog.dev/).
|
|
8
|
+
|
|
9
|
+
This open-source project is designed to help you and your teams bring discoverability and clarity to your event-driven architectures (EDA).
|
|
10
|
+
|
|
11
|
+
To get started you can read the following guides:
|
|
12
|
+
|
|
13
|
+
* [Getting started with EventCatalog](https://eventcatalog.dev/docs/development/getting-started/introduction)
|
|
14
|
+
* [Creating domains](https://eventcatalog.dev/docs/development/guides/domains/adding-domains)
|
|
15
|
+
* [Creating services](https://eventcatalog.dev/docs/development/guides/services/adding-services)
|
|
16
|
+
* [Creating commands](https://eventcatalog.dev/docs/development/guides/messages/commands/introduction)
|
|
17
|
+
* [Creating events](https://eventcatalog.dev/docs/development/guides/messages/events/introduction)
|
|
18
|
+
* [Assigning owners to resources](https://eventcatalog.dev/docs/owners)
|
|
19
|
+
* [Using components in your pages (Schemas, OpenAPI, etc)](https://eventcatalog.dev/docs/development/components/using-components)
|
|
20
|
+
* [Deploying and hosting your EventCatalog](https://eventcatalog.dev/docs/development/deployment)
|
|
21
|
+
|
|
22
|
+
### **Join the community**
|
|
23
|
+
|
|
24
|
+
Got questions about EventCatalog? Feature requests or need support? [Join our community on Discord.](https://discord.gg/3rjaZMmrAm)
|
|
25
|
+
|
|
26
|
+
### **Enterprise support**
|
|
27
|
+
|
|
28
|
+
Using EventCatalog and needs enterprise support? Work with us, find out what we offer on our [enterprise page](https://eventcatalog.dev/enterprise).
|
package/templates/index.ts
CHANGED
|
@@ -45,6 +45,7 @@ export const installTemplate = async ({
|
|
|
45
45
|
build: "eventcatalog build",
|
|
46
46
|
start: "eventcatalog start",
|
|
47
47
|
preview: "eventcatalog preview",
|
|
48
|
+
generate: "eventcatalog generate",
|
|
48
49
|
test: 'echo "Error: no test specified" && exit 1',
|
|
49
50
|
},
|
|
50
51
|
dependencies: {
|
|
@@ -73,6 +74,7 @@ export const installTemplate = async ({
|
|
|
73
74
|
const devDependencies = [
|
|
74
75
|
"@parcel/watcher",
|
|
75
76
|
"concurrently",
|
|
77
|
+
"cross-env",
|
|
76
78
|
] as any;
|
|
77
79
|
|
|
78
80
|
/**
|