Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc builder updates and readme update #154

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@ Follow the instructions under the topic - "Run the node"

```

$ yarn demo
$ npx tsx demo/src/func-test.ts

$ yarn demo-vc

$ yarn bench
$ npx tsx demo/src/network-score-test.ts
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failing with error
(Not sure if this change has anything to do with it, just highlighting here)

/Users/niranjanp/DW/source/npci-build/cord.js/packages/chain-space/src/ChainSpace.chain.ts:473
throw new SDKErrors.CordDispatchError(
^

CordDispatchError: Error dispatching delegate authorization: [object Object]
at Object.dispatchDelegateAuthorization (/Users/niranjanp/DW/source/npci-build/cord.js/packages/chain-space/src/ChainSpace.chain.ts:473:11)
at main (/Users/niranjanp/DW/source/npci-build/cord.js/demo/src/network-score-test.ts:107:24)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would like to check this.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the error is happening on 'develop' branch, which will be tested further. But this will get in for release branch now.


```
The output of these runs are self-explanatory. For reference of how this is structured,
Expand Down
4 changes: 0 additions & 4 deletions packages/did/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
/**
* @module @@cord.network/did
*/

export * from './DidDetails/index.js'
export * from './DidDocumentExporter/index.js'
export * from './DidResolver/index.js'
Expand Down
10 changes: 7 additions & 3 deletions tsconfig.docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@
"packages/statement/src/index.ts",
"packages/identifier/src/index.ts",
"packages/chain-space/src/index.ts",
"packages/schema/src/index.ts",
"packages/network-score/src/index.ts",
"packages/sdk/src/index.ts"
],
"out": "docs/api",
"out": "docs",
"theme": "default",
"exclude": [
"**/*spec.ts",
Expand All @@ -37,11 +39,13 @@
"hideGenerator": true,
"excludeInternal": true,
"categorizeByGroup": true,
"name": "CORD.js Documentation",
"excludeNotDocumented": true,
"includeVersion": true,
"name": "SDK Documentation",
"readme": "README.md",
"navigation": {
"includeCategories": true,
"includeGroups": true
"includeGroups": true,
},
}
}