@eventcatalog/create-eventcatalog 2.0.0 → 2.0.2
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
|
@@ -22471,14 +22471,14 @@ var installTemplate = async ({
|
|
|
22471
22471
|
version: "0.1.0",
|
|
22472
22472
|
private: true,
|
|
22473
22473
|
scripts: {
|
|
22474
|
-
start: "eventcatalog start",
|
|
22475
22474
|
dev: "eventcatalog dev",
|
|
22476
22475
|
build: "eventcatalog build",
|
|
22477
|
-
|
|
22476
|
+
start: "eventcatalog start",
|
|
22477
|
+
preview: "eventcatalog preview",
|
|
22478
22478
|
test: 'echo "Error: no test specified" && exit 1'
|
|
22479
22479
|
},
|
|
22480
22480
|
dependencies: {
|
|
22481
|
-
"@
|
|
22481
|
+
"@eventcatalog/core": "latest"
|
|
22482
22482
|
}
|
|
22483
22483
|
};
|
|
22484
22484
|
import_fs16.default.writeFileSync(
|
|
@@ -22652,7 +22652,7 @@ function validateNpmName(name) {
|
|
|
22652
22652
|
var package_default = {
|
|
22653
22653
|
name: "@eventcatalog/create-eventcatalog",
|
|
22654
22654
|
description: "Create EventCatalog with one command",
|
|
22655
|
-
version: "2.0.
|
|
22655
|
+
version: "2.0.2",
|
|
22656
22656
|
bin: {
|
|
22657
22657
|
"create-catalog": "./dist/index.js"
|
|
22658
22658
|
},
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/* Custom styling support coming soon */
|
|
1
|
+
/* Custom styling support coming soon. */
|
package/templates/index.ts
CHANGED
|
@@ -41,14 +41,14 @@ export const installTemplate = async ({
|
|
|
41
41
|
version: "0.1.0",
|
|
42
42
|
private: true,
|
|
43
43
|
scripts: {
|
|
44
|
-
start: "eventcatalog start",
|
|
45
44
|
dev: "eventcatalog dev",
|
|
46
45
|
build: "eventcatalog build",
|
|
47
|
-
|
|
46
|
+
start: "eventcatalog start",
|
|
47
|
+
preview: "eventcatalog preview",
|
|
48
48
|
test: 'echo "Error: no test specified" && exit 1',
|
|
49
49
|
},
|
|
50
50
|
dependencies: {
|
|
51
|
-
"@
|
|
51
|
+
"@eventcatalog/core": "latest"
|
|
52
52
|
}
|
|
53
53
|
};
|
|
54
54
|
/**
|