-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackages.html
More file actions
25 lines (25 loc) · 886 Bytes
/
packages.html
File metadata and controls
25 lines (25 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<html>
<body>
<pre class="mermaid" align="center">
architecture-beta
group foundation(vscode-icons:file-type-swift)[Foundation]
junction _foundation in foundation
group framework(vscode-icons:file-type-swift)[Framework]
junction _framework in framework
%% Foundation
service testtarget(vscode-icons:file-type-package)[TestTarget] in foundation
_framework:B -- T:_foundation
</pre>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
mermaid.registerIconPacks([
{
name: 'vscode-icons',
loader: () =>
fetch('https://unpkg.com/@iconify-json/vscode-icons@1.2.20/icons.json').then((res) => res.json()),
},
]);
</script>
</body>
</html>