-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: updtaing event-catalog * feat: making eventVersion a number * feat: creating new test contract * feat: creating new generateContractDocumentation file * feat: setting up correct versioning folders * feat: readability changes * feat: identical version error thrown * feat: contract filename check and improved error messages * feat: vitest setup * feat: adding getContractFileNames test * feat: writing test for writeIndexFile * feat: writing test for isValidDirectoryName * feat: adding tests for generate-docs filepath functions * feat: renaming generateContractDocumentation * feat: creating generatingAllContractInformation file and creating newest version record test * feat: tests for generateAllContractInformation * feat: test for generateDocs * feat: renaming file for consistency * feat: simplifying tests * feat: install mock-fs * feat: reverting eventcatalog config * feat: removing uneeded readme * feat: removing uneeded script * feat: renaming functions * feat: creating basic integration test setup * feat: fixing small typeguard bug * feat: updating isInvalidDirectoryName
- Loading branch information
1 parent
64e9c04
commit aa5fc2b
Showing
29 changed files
with
17,737 additions
and
6,312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Test | ||
version: 1 | ||
summary: | | ||
A summary | ||
producers: | ||
- Producer | ||
consumers: | ||
- Consumer | ||
owners: | ||
- Name | ||
--- | ||
|
||
<Admonition>Some information</Admonition> | ||
|
||
### Details | ||
|
||
Some details... | ||
|
||
<Schema /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"detail-type": { | ||
"type": "string", | ||
"const": "Test" | ||
}, | ||
"detail": { | ||
"type": "object", | ||
"properties": { | ||
"detail-version": { | ||
"type": "number", | ||
"const": 1 | ||
}, | ||
"data": { | ||
"type": "object", | ||
"properties": { | ||
"test": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"test" | ||
], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": [ | ||
"detail-version", | ||
"data" | ||
], | ||
"additionalProperties": false | ||
} | ||
}, | ||
"required": [ | ||
"detail", | ||
"detail-type" | ||
], | ||
"additionalProperties": false, | ||
"definitions": {} | ||
} |
Oops, something went wrong.