-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from CityOfZion/CU-86a0uwqwy
CU-86a0uwqwy - For neon-dappkit and wcsdk: Folders /dist and /docs sh…
- Loading branch information
Showing
11 changed files
with
176 additions
and
2 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
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ yarn-error.log* | |
# build files | ||
packages/*/dist/ | ||
packages/*/docs/ | ||
/docs/ | ||
|
||
# Runtime data | ||
*.pid | ||
|
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,13 @@ | ||
{ | ||
"name": "rush-docs", | ||
"version": "1.0.0", | ||
"private": true, | ||
"scripts": { | ||
"update-script": "rush update-autoinstaller --name rush-docs" | ||
}, | ||
"dependencies": { | ||
"@types/node": "^20.8.2", | ||
"typescript": "^4.3.2", | ||
"typedoc": "^0.25.1" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
common/changes/@cityofzion/wallet-connect-sdk-core/CU-86a0uwqwy_2023-10-04-18-35.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@cityofzion/wallet-connect-sdk-core", | ||
"comment": "", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@cityofzion/wallet-connect-sdk-core" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@cityofzion/wallet-connect-sdk-react/CU-86a0uwqwy_2023-10-04-18-35.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@cityofzion/wallet-connect-sdk-react", | ||
"comment": "", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@cityofzion/wallet-connect-sdk-react" | ||
} |
10 changes: 10 additions & 0 deletions
10
common/changes/@cityofzion/wallet-connect-sdk-wallet-core/CU-86a0uwqwy_2023-10-04-18-35.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@cityofzion/wallet-connect-sdk-wallet-core", | ||
"comment": "", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@cityofzion/wallet-connect-sdk-wallet-core" | ||
} |
10 changes: 10 additions & 0 deletions
10
...on/changes/@cityofzion/wallet-connect-sdk-wallet-react/CU-86a0uwqwy_2023-10-04-18-35.json
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,10 @@ | ||
{ | ||
"changes": [ | ||
{ | ||
"packageName": "@cityofzion/wallet-connect-sdk-wallet-react", | ||
"comment": "", | ||
"type": "none" | ||
} | ||
], | ||
"packageName": "@cityofzion/wallet-connect-sdk-wallet-react" | ||
} |
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,12 @@ | ||
{ | ||
"commands": [ | ||
{ | ||
"name": "docs", | ||
"commandKind": "global", | ||
"summary": "Used to generate documentation of each package", | ||
"safeForSimultaneousRushProcesses": true, | ||
"autoinstallerName": "rush-docs", | ||
"shellCommand": "for /d %i in (./packages/*) do (npm run docs --prefix packages/%i/) && typedoc --options typedoc.json" | ||
} | ||
] | ||
} |
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
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,17 @@ | ||
{ | ||
"$schema": "https://typedoc.org/schema.json", | ||
"tsconfig": "tsconfig.json", | ||
"entryPoints": [ | ||
"packages/wallet-connect-sdk-core/", | ||
"packages/wallet-connect-sdk-react/", | ||
"packages/wallet-connect-sdk-wallet-core/", | ||
"packages/wallet-connect-sdk-wallet-react/src/index.tsx" | ||
], | ||
"includeVersion": true, | ||
"entryPointStrategy": "packages", | ||
"out": "docs", | ||
"exclude": ["**/dist/**"], | ||
"compilerOptions": { | ||
"jsx": "react" | ||
} | ||
} |