mirror of https://github.com/vuejs/core.git
chore: update package graph to include vapor packages [ci skip]
This commit is contained in:
parent
122f75824d
commit
1ef6e6edb7
|
@ -290,27 +290,39 @@ This is made possible via several configurations:
|
||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart LR
|
flowchart LR
|
||||||
|
vue["vue"]
|
||||||
compiler-sfc["@vue/compiler-sfc"]
|
compiler-sfc["@vue/compiler-sfc"]
|
||||||
compiler-dom["@vue/compiler-dom"]
|
compiler-dom["@vue/compiler-dom"]
|
||||||
|
compiler-vapor["@vue/compiler-vapor"]
|
||||||
compiler-core["@vue/compiler-core"]
|
compiler-core["@vue/compiler-core"]
|
||||||
vue["vue"]
|
|
||||||
runtime-dom["@vue/runtime-dom"]
|
runtime-dom["@vue/runtime-dom"]
|
||||||
|
runtime-vapor["@vue/runtime-vapor"]
|
||||||
runtime-core["@vue/runtime-core"]
|
runtime-core["@vue/runtime-core"]
|
||||||
reactivity["@vue/reactivity"]
|
reactivity["@vue/reactivity"]
|
||||||
|
|
||||||
subgraph "Runtime Packages"
|
subgraph "Runtime Packages"
|
||||||
runtime-dom --> runtime-core
|
runtime-dom --> runtime-core
|
||||||
|
runtime-vapor --> runtime-core
|
||||||
runtime-core --> reactivity
|
runtime-core --> reactivity
|
||||||
end
|
end
|
||||||
|
|
||||||
subgraph "Compiler Packages"
|
subgraph "Compiler Packages"
|
||||||
compiler-sfc --> compiler-core
|
compiler-sfc --> compiler-core
|
||||||
compiler-sfc --> compiler-dom
|
compiler-sfc --> compiler-dom
|
||||||
|
compiler-sfc --> compiler-vapor
|
||||||
compiler-dom --> compiler-core
|
compiler-dom --> compiler-core
|
||||||
|
compiler-vapor --> compiler-core
|
||||||
end
|
end
|
||||||
|
|
||||||
|
vue --> compiler-sfc
|
||||||
vue ---> compiler-dom
|
vue ---> compiler-dom
|
||||||
vue --> runtime-dom
|
vue --> runtime-dom
|
||||||
|
vue --> compiler-vapor
|
||||||
|
vue --> runtime-vapor
|
||||||
|
|
||||||
|
%% Highlight class
|
||||||
|
classDef highlight stroke:#35eb9a,stroke-width:3px;
|
||||||
|
class compiler-vapor,runtime-vapor highlight;
|
||||||
```
|
```
|
||||||
|
|
||||||
There are some rules to follow when importing across package boundaries:
|
There are some rules to follow when importing across package boundaries:
|
||||||
|
|
Loading…
Reference in New Issue