Skip to content

Commit 7aa964e

Browse files
committed
fix: see also
1 parent 7ad7f4e commit 7aa964e

File tree

8 files changed

+178
-160
lines changed

8 files changed

+178
-160
lines changed

.baserc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "@dword-design/component",
3+
"testInContainer": true,
4+
"cdnExtraScripts": [
5+
"<script src=\"https://unpkg.com/mermaid/dist/mermaid.min.js\"></script>"
6+
],
7+
"seeAlso": [
8+
{ "repository": "nuxt-mermaid-string", "description": "Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string." }
9+
]
10+
}

.husky/post-checkout

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; }
3+
git lfs post-checkout "$@"

.husky/post-commit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.\n"; exit 2; }
3+
git lfs post-commit "$@"

.husky/post-merge

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
3+
git lfs post-merge "$@"

.husky/pre-push

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
3+
git lfs pre-push "$@"

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ Vue.use(VueMermaidString)
9999

100100
```html
101101
<script src="https://unpkg.com/vue"></script>
102-
<script src="https://unpkg.com/mermaid/dist/mermaid.min.js"></script>
103102
<script src="https://unpkg.com/vue-mermaid-string"></script>
104103
```
105104
<!-- /INSTALL -->
@@ -206,6 +205,10 @@ Hey, I am Sebastian Landwehr, a freelance web developer, and I love developing w
206205

207206
Thanks a lot for your support! ❤️
208207

208+
## See Also
209+
210+
* [nuxt-mermaid-string](https://github.com/dword-design/nuxt-mermaid-string): Embed a Mermaid diagram in a Nuxt.js app by providing its diagram string.
211+
209212
## License
210213

211214
[MIT License](https://opensource.org/licenses/MIT) © [Sebastian Landwehr](https://sebastianlandwehr.com)

package.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,5 @@
3939
},
4040
"publishConfig": {
4141
"access": "public"
42-
},
43-
"baseConfig": {
44-
"name": "@dword-design/component",
45-
"testInContainer": true,
46-
"cdnExtraScripts": [
47-
"<script src=\"https://unpkg.com/mermaid/dist/mermaid.min.js\"></script>"
48-
]
4942
}
5043
}

yarn.lock

Lines changed: 152 additions & 152 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)