Skip to content

Commit 1ef6e6e

Browse files
committed
chore: update package graph to include vapor packages [ci skip]
1 parent 122f758 commit 1ef6e6e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/contributing.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,27 +290,39 @@ This is made possible via several configurations:
290290

291291
```mermaid
292292
flowchart LR
293+
vue["vue"]
293294
compiler-sfc["@vue/compiler-sfc"]
294295
compiler-dom["@vue/compiler-dom"]
296+
compiler-vapor["@vue/compiler-vapor"]
295297
compiler-core["@vue/compiler-core"]
296-
vue["vue"]
297298
runtime-dom["@vue/runtime-dom"]
299+
runtime-vapor["@vue/runtime-vapor"]
298300
runtime-core["@vue/runtime-core"]
299301
reactivity["@vue/reactivity"]
300302
301303
subgraph "Runtime Packages"
302304
runtime-dom --> runtime-core
305+
runtime-vapor --> runtime-core
303306
runtime-core --> reactivity
304307
end
305308
306309
subgraph "Compiler Packages"
307310
compiler-sfc --> compiler-core
308311
compiler-sfc --> compiler-dom
312+
compiler-sfc --> compiler-vapor
309313
compiler-dom --> compiler-core
314+
compiler-vapor --> compiler-core
310315
end
311316
317+
vue --> compiler-sfc
312318
vue ---> compiler-dom
313319
vue --> runtime-dom
320+
vue --> compiler-vapor
321+
vue --> runtime-vapor
322+
323+
%% Highlight class
324+
classDef highlight stroke:#35eb9a,stroke-width:3px;
325+
class compiler-vapor,runtime-vapor highlight;
314326
```
315327

316328
There are some rules to follow when importing across package boundaries:

0 commit comments

Comments
 (0)