File: flow.puml

package info (click to toggle)
node-html-webpack-plugin 5.5.3%2Brepack2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,980 kB
  • sloc: javascript: 16,057; makefile: 16; sh: 6
file content (32 lines) | stat: -rw-r--r-- 1,135 bytes parent folder | download
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
26
27
28
29
30
31
32
@startuml
' See docs http://plantuml.com/sequence.html
'
' generate png:
' npm run puml
autonumber

participant Webpack
participant ChildCompiler
participant TagCreator
participant TemplateExecutor
participant TagInjector

Webpack -> ChildCompiler : start child compilation
ChildCompiler -> ChildCompiler : compile html template
ChildCompiler -> TemplateExecutor : handover compiled template
Webpack -> TagCreator : hand over compilation\n assets
note right of TagInjector: beforeAssetTagGeneration
TagCreator -> TagCreator : create script style\n and meta tags
note right of TagInjector: alterAssetTags
TagCreator -> TagCreator : group tags to\n head and body groups
note right of TagInjector: alterAssetTagGroups
TagCreator -> TemplateExecutor : handover tag groups
TemplateExecutor -> TemplateExecutor : execute compiled template
note right of TagInjector: afterTemplateExecution
TemplateExecutor -> TagInjector : handover html
TagInjector -> TagInjector : inject script style\n and meta tags
note right of TagInjector: beforeEmit
TagInjector -> Webpack : add generated file to\n assets
note right of TagInjector: afterEmit

@enduml