-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/release/10.3.1'
* origin/release/10.3.1: (85 commits) Version update and adjusted error diagram Fix for broker error diagram related #4178 Adding new flowchart tests related to issue #2139 Fix for interim issue with classes in state diagrams use default export in `error` diagram create `ParserDefinition` type standardized `error` diagram' #2139 Applying user defined classes properly when calculating shape width style: format packages/mermaid/src/config.type.ts build(types): use prettier conf on config.types.ts Syntax Update CONTRIBUTING.md docs: Correct detectType filename chore: Minor cleanups chore: remove comment chore: Remove comments, cleanup fix!(deps): fix zenuml style leakage. update @zenuml/core to ^3.0.6 to fix the style leakage. Update selectSvgElement.ts create `Group` type Add specialChars in textNoTagsToken, alphaNumToken Return Unicode Text to idStringToken definition ...
- Loading branch information
Showing
66 changed files
with
1,199 additions
and
1,108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
############################# Display ############################# | ||
|
||
# Verbose program output | ||
# Accepts log level: "error", "warn", "info", "debug", "trace" | ||
verbose = "debug" | ||
|
||
# Don't show interactive progress bar while checking links. | ||
no_progress = true | ||
|
||
############################# Cache ############################### | ||
|
||
# Enable link caching. This can be helpful to avoid checking the same links on | ||
# multiple runs. | ||
cache = true | ||
|
||
# Discard all cached requests older than this duration. | ||
max_cache_age = "1d" | ||
|
||
############################# Requests ############################ | ||
|
||
# Comma-separated list of accepted status codes for valid links. | ||
accept = [200, 429] | ||
|
||
############################# Exclusions ########################## | ||
|
||
# Exclude URLs and mail addresses from checking (supports regex). | ||
exclude = [ | ||
# Network error: Forbidden | ||
"https://codepen.io", | ||
|
||
# Timeout error, maybe Twitter has anti-bot defenses against GitHub's CI servers? | ||
"https://twitter.com/mermaidjs_", | ||
|
||
# Don't check files that are generated during the build via `pnpm docs:code` | ||
'packages/mermaid/src/docs/config/setup/*', | ||
|
||
# Ignore slack invite | ||
"https://join.slack.com/" | ||
] | ||
|
||
# Exclude all private IPs from checking. | ||
# Equivalent to setting `exclude_private`, `exclude_link_local`, and | ||
# `exclude_loopback` to true. | ||
exclude_all_private = true |
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 |
---|---|---|
|
@@ -20,7 +20,7 @@ on: | |
- cron: '30 8 * * *' | ||
|
||
jobs: | ||
linkChecker: | ||
link-checker: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
# lychee only uses the GITHUB_TOKEN to avoid rate-limiting | ||
|
@@ -39,10 +39,7 @@ jobs: | |
uses: lycheeverse/[email protected] | ||
with: | ||
args: >- | ||
--verbose | ||
--no-progress | ||
--cache | ||
--max-cache-age 1d | ||
--config .github/lychee.toml | ||
packages/mermaid/src/docs/**/*.md | ||
README.md | ||
README.zh-CN.md | ||
|
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
"version": "10.2.4", | ||
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.", | ||
"type": "module", | ||
"packageManager": "[email protected].10", | ||
"packageManager": "[email protected].11", | ||
"keywords": [ | ||
"diagram", | ||
"markdown", | ||
|
@@ -109,7 +109,7 @@ | |
"lint-staged": "^13.2.1", | ||
"nyc": "^15.1.0", | ||
"path-browserify": "^1.0.1", | ||
"pnpm": "^8.3.1", | ||
"pnpm": "^8.6.8", | ||
"prettier": "^2.8.8", | ||
"prettier-plugin-jsdoc": "^0.4.2", | ||
"rimraf": "^5.0.0", | ||
|
Oops, something went wrong.