com.wallstop-studios.dxmessaging 2.1.5 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.artifacts/SourceGenerators.Tests/obj/Debug/net9.0/WallstopStudios.DxMessaging.SourceGenerators.Tests.AssemblyInfo.cs +1 -1
- package/.cspell.json +4 -1
- package/.github/workflows/actionlint.yml +11 -1
- package/.github/workflows/csharpier-autofix.yml +34 -3
- package/.github/workflows/dotnet-tests.yml +13 -0
- package/.github/workflows/format-on-demand.yml +38 -44
- package/.github/workflows/json-format-check.yml +24 -0
- package/.github/workflows/lint-doc-links.yml +13 -0
- package/.github/workflows/markdown-json.yml +21 -4
- package/.github/workflows/markdown-link-text-check.yml +10 -0
- package/.github/workflows/markdown-link-validity.yml +10 -0
- package/.github/workflows/markdownlint.yml +7 -5
- package/.github/workflows/prettier-autofix.yml +67 -11
- package/.github/workflows/release-drafter.yml +2 -2
- package/.github/workflows/sync-wiki.yml +3 -3
- package/.github/workflows/yaml-format-lint.yml +26 -0
- package/.llm/context.md +113 -3
- package/.llm/skills/documentation/changelog-management.md +38 -0
- package/.llm/skills/documentation/documentation-style-guide.md +18 -0
- package/.llm/skills/documentation/documentation-update-workflow.md +2 -0
- package/.llm/skills/documentation/documentation-updates.md +2 -0
- package/.llm/skills/documentation/markdown-compatibility.md +476 -0
- package/.llm/skills/documentation/mermaid-theming.md +326 -0
- package/.llm/skills/documentation/mkdocs-navigation.md +290 -0
- package/.llm/skills/github-actions/git-renormalize-patterns.md +231 -0
- package/.llm/skills/github-actions/workflow-consistency.md +346 -0
- package/.llm/skills/index.md +53 -27
- package/.llm/skills/scripting/javascript-code-quality.md +417 -0
- package/.llm/skills/scripting/regex-documentation.md +461 -0
- package/.llm/skills/scripting/shell-best-practices.md +55 -4
- package/.llm/skills/scripting/validation-patterns.md +418 -0
- package/.llm/skills/specification.md +4 -1
- package/.llm/skills/testing/test-code-quality.md +243 -0
- package/.llm/skills/testing/test-production-code.md +348 -0
- package/CHANGELOG.md +11 -0
- package/README.md +0 -11
- package/Tests/Runtime/Benchmarks/WallstopStudios.DxMessaging.Tests.Runtime.Benchmarks.asmdef +1 -6
- package/Tests/Runtime/Integrations/Reflex/WallstopStudios.DxMessaging.Tests.Runtime.Reflex.asmdef +1 -1
- package/Tests/Runtime/Integrations/VContainer/WallstopStudios.DxMessaging.Tests.Runtime.VContainer.asmdef +1 -1
- package/Tests/Runtime/Integrations/Zenject/WallstopStudios.DxMessaging.Tests.Runtime.Zenject.asmdef +1 -1
- package/coverage/clover.xml +216 -3
- package/coverage/clover.xml.meta +7 -7
- package/coverage/coverage-final.json +2 -1
- package/coverage/coverage-final.json.meta +7 -7
- package/coverage/lcov-report/base.css.meta +1 -1
- package/coverage/lcov-report/block-navigation.js.meta +1 -1
- package/coverage/lcov-report/favicon.png.meta +1 -1
- package/coverage/lcov-report/index.html +25 -10
- package/coverage/lcov-report/index.html.meta +7 -7
- package/coverage/lcov-report/prettify.css.meta +1 -1
- package/coverage/lcov-report/prettify.js.meta +1 -1
- package/coverage/lcov-report/sort-arrow-sprite.png.meta +1 -1
- package/coverage/lcov-report/sorter.js.meta +1 -1
- package/coverage/lcov-report/transform-docs-to-wiki.js.html +1 -1
- package/coverage/lcov-report/transform-docs-to-wiki.js.html.meta +7 -7
- package/coverage/lcov-report/vendor.meta +1 -1
- package/coverage/lcov-report.meta +8 -8
- package/coverage/lcov.info +365 -0
- package/coverage/lcov.info.meta +7 -7
- package/docs/architecture/design-and-architecture.md +0 -1
- package/docs/concepts/index.md +37 -0
- package/docs/concepts/index.md.meta +7 -0
- package/docs/concepts/interceptors-and-ordering.md +0 -2
- package/docs/concepts/mental-model.md +390 -0
- package/docs/concepts/mental-model.md.meta +7 -0
- package/docs/concepts/message-types.md +0 -1
- package/docs/getting-started/getting-started.md +1 -0
- package/docs/getting-started/index.md +6 -5
- package/docs/getting-started/overview.md +1 -0
- package/docs/getting-started/quick-start.md +2 -1
- package/docs/getting-started/visual-guide.md +4 -10
- package/docs/hooks.py +10 -1
- package/docs/images/DxMessaging-banner.svg +1 -1
- package/docs/index.md +7 -7
- package/docs/javascripts/mermaid-config.js +44 -4
- package/docs/reference/helpers.md +130 -154
- package/docs/reference/quick-reference.md +5 -1
- package/docs/reference/reference.md +124 -130
- package/mkdocs.yml +2 -0
- package/package.json +1 -1
- package/scripts/__tests__/generate-skills-index.test.js +397 -0
- package/scripts/__tests__/generate-skills-index.test.js.meta +7 -0
- package/scripts/__tests__/mermaid-config.test.js +467 -0
- package/scripts/__tests__/mermaid-config.test.js.meta +7 -0
- package/scripts/__tests__/validate-skills-optional-fields.test.js +1474 -0
- package/scripts/__tests__/validate-skills-optional-fields.test.js.meta +7 -0
- package/scripts/__tests__/validate-skills-required-fields.test.js +188 -0
- package/scripts/__tests__/validate-skills-required-fields.test.js.meta +7 -0
- package/scripts/__tests__/validate-skills-tags.test.js +353 -0
- package/scripts/__tests__/validate-skills-tags.test.js.meta +7 -0
- package/scripts/__tests__/validate-workflows.test.js +188 -0
- package/scripts/__tests__/validate-workflows.test.js.meta +7 -0
- package/scripts/generate-skills-index.js +88 -3
- package/scripts/validate-skills.js +230 -30
- package/scripts/validate-workflows.js +272 -0
- package/scripts/validate-workflows.js.meta +7 -0
- package/site/404.html +1 -1
- package/site/advanced/emit-shorthands/index.html +2 -2
- package/site/advanced/message-bus-providers/index.html +2 -2
- package/site/advanced/registration-builders/index.html +2 -2
- package/site/advanced/runtime-configuration/index.html +2 -2
- package/site/advanced/string-messages/index.html +2 -2
- package/site/advanced.meta +1 -1
- package/site/architecture/comparisons/index.html +2 -2
- package/site/architecture/design-and-architecture/index.html +2 -2
- package/site/architecture/performance/index.html +1 -1
- package/site/architecture.meta +1 -1
- package/site/concepts/index.html +1 -0
- package/site/concepts/index.html.meta +7 -0
- package/site/concepts/interceptors-and-ordering/index.html +4 -4
- package/site/concepts/listening-patterns/index.html +2 -2
- package/site/concepts/mental-model/index.html +146 -0
- package/site/concepts/mental-model/index.html.meta +7 -0
- package/site/concepts/mental-model.meta +8 -0
- package/site/concepts/message-types/index.html +2 -2
- package/site/concepts/targeting-and-context/index.html +2 -2
- package/site/concepts.meta +1 -1
- package/site/examples/end-to-end/index.html +2 -2
- package/site/examples/end-to-end-scene-transitions/index.html +2 -2
- package/site/examples.meta +1 -1
- package/site/getting-started/getting-started/index.html +3 -3
- package/site/getting-started/index.html +4 -4
- package/site/getting-started/install/index.html +3 -3
- package/site/getting-started/overview/index.html +2 -2
- package/site/getting-started/quick-start/index.html +2 -2
- package/site/getting-started/visual-guide/index.html +11 -11
- package/site/getting-started.meta +1 -1
- package/site/guides/advanced/index.html +2 -2
- package/site/guides/diagnostics/index.html +2 -2
- package/site/guides/migration-guide/index.html +2 -2
- package/site/guides/patterns/index.html +2 -2
- package/site/guides/testing/index.html +2 -2
- package/site/guides/unity-integration/index.html +2 -2
- package/site/guides.meta +1 -1
- package/site/hooks.py.meta +1 -1
- package/site/images/DxMessaging-banner.svg +119 -0
- package/site/images/DxMessaging-banner.svg.meta +7 -0
- package/site/images.meta +8 -0
- package/site/index.html +2 -2
- package/site/integrations/index.html +2 -2
- package/site/integrations/reflex/index.html +2 -2
- package/site/integrations/vcontainer/index.html +2 -2
- package/site/integrations/zenject/index.html +2 -2
- package/site/integrations.meta +1 -1
- package/site/javascripts/csharp-highlight.js.meta +7 -7
- package/site/javascripts/mermaid-config.js +4 -1
- package/site/javascripts/mermaid-config.js.meta +1 -1
- package/site/javascripts.meta +1 -1
- package/site/reference/compatibility/index.html +1 -1
- package/site/reference/faq/index.html +1 -1
- package/site/reference/glossary/index.html +2 -2
- package/site/reference/helpers/index.html +15 -15
- package/site/reference/quick-reference/index.html +3 -3
- package/site/reference/reference/index.html +37 -37
- package/site/reference/troubleshooting/index.html +1 -1
- package/site/reference.meta +1 -1
- package/site/search/search_index.json +1 -1
- package/site/sitemap.xml +46 -38
- package/site/sitemap.xml.gz +0 -0
- package/site/stylesheets/extra.css.meta +1 -1
- package/site/stylesheets.meta +1 -1
package/site/sitemap.xml
CHANGED
|
@@ -2,154 +2,162 @@
|
|
|
2
2
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
3
3
|
<url>
|
|
4
4
|
<loc>https://wallstop.github.io/DxMessaging/</loc>
|
|
5
|
-
<lastmod>2026-01-
|
|
5
|
+
<lastmod>2026-01-29</lastmod>
|
|
6
6
|
</url>
|
|
7
7
|
<url>
|
|
8
8
|
<loc>https://wallstop.github.io/DxMessaging/advanced/emit-shorthands/</loc>
|
|
9
|
-
<lastmod>2026-01-
|
|
9
|
+
<lastmod>2026-01-29</lastmod>
|
|
10
10
|
</url>
|
|
11
11
|
<url>
|
|
12
12
|
<loc>https://wallstop.github.io/DxMessaging/advanced/message-bus-providers/</loc>
|
|
13
|
-
<lastmod>2026-01-
|
|
13
|
+
<lastmod>2026-01-29</lastmod>
|
|
14
14
|
</url>
|
|
15
15
|
<url>
|
|
16
16
|
<loc>https://wallstop.github.io/DxMessaging/advanced/registration-builders/</loc>
|
|
17
|
-
<lastmod>2026-01-
|
|
17
|
+
<lastmod>2026-01-29</lastmod>
|
|
18
18
|
</url>
|
|
19
19
|
<url>
|
|
20
20
|
<loc>https://wallstop.github.io/DxMessaging/advanced/runtime-configuration/</loc>
|
|
21
|
-
<lastmod>2026-01-
|
|
21
|
+
<lastmod>2026-01-29</lastmod>
|
|
22
22
|
</url>
|
|
23
23
|
<url>
|
|
24
24
|
<loc>https://wallstop.github.io/DxMessaging/advanced/string-messages/</loc>
|
|
25
|
-
<lastmod>2026-01-
|
|
25
|
+
<lastmod>2026-01-29</lastmod>
|
|
26
26
|
</url>
|
|
27
27
|
<url>
|
|
28
28
|
<loc>https://wallstop.github.io/DxMessaging/architecture/comparisons/</loc>
|
|
29
|
-
<lastmod>2026-01-
|
|
29
|
+
<lastmod>2026-01-29</lastmod>
|
|
30
30
|
</url>
|
|
31
31
|
<url>
|
|
32
32
|
<loc>https://wallstop.github.io/DxMessaging/architecture/design-and-architecture/</loc>
|
|
33
|
-
<lastmod>2026-01-
|
|
33
|
+
<lastmod>2026-01-29</lastmod>
|
|
34
34
|
</url>
|
|
35
35
|
<url>
|
|
36
36
|
<loc>https://wallstop.github.io/DxMessaging/architecture/performance/</loc>
|
|
37
|
-
<lastmod>2026-01-
|
|
37
|
+
<lastmod>2026-01-29</lastmod>
|
|
38
|
+
</url>
|
|
39
|
+
<url>
|
|
40
|
+
<loc>https://wallstop.github.io/DxMessaging/concepts/</loc>
|
|
41
|
+
<lastmod>2026-01-29</lastmod>
|
|
38
42
|
</url>
|
|
39
43
|
<url>
|
|
40
44
|
<loc>https://wallstop.github.io/DxMessaging/concepts/interceptors-and-ordering/</loc>
|
|
41
|
-
<lastmod>2026-01-
|
|
45
|
+
<lastmod>2026-01-29</lastmod>
|
|
42
46
|
</url>
|
|
43
47
|
<url>
|
|
44
48
|
<loc>https://wallstop.github.io/DxMessaging/concepts/listening-patterns/</loc>
|
|
45
|
-
<lastmod>2026-01-
|
|
49
|
+
<lastmod>2026-01-29</lastmod>
|
|
50
|
+
</url>
|
|
51
|
+
<url>
|
|
52
|
+
<loc>https://wallstop.github.io/DxMessaging/concepts/mental-model/</loc>
|
|
53
|
+
<lastmod>2026-01-29</lastmod>
|
|
46
54
|
</url>
|
|
47
55
|
<url>
|
|
48
56
|
<loc>https://wallstop.github.io/DxMessaging/concepts/message-types/</loc>
|
|
49
|
-
<lastmod>2026-01-
|
|
57
|
+
<lastmod>2026-01-29</lastmod>
|
|
50
58
|
</url>
|
|
51
59
|
<url>
|
|
52
60
|
<loc>https://wallstop.github.io/DxMessaging/concepts/targeting-and-context/</loc>
|
|
53
|
-
<lastmod>2026-01-
|
|
61
|
+
<lastmod>2026-01-29</lastmod>
|
|
54
62
|
</url>
|
|
55
63
|
<url>
|
|
56
64
|
<loc>https://wallstop.github.io/DxMessaging/examples/end-to-end-scene-transitions/</loc>
|
|
57
|
-
<lastmod>2026-01-
|
|
65
|
+
<lastmod>2026-01-29</lastmod>
|
|
58
66
|
</url>
|
|
59
67
|
<url>
|
|
60
68
|
<loc>https://wallstop.github.io/DxMessaging/examples/end-to-end/</loc>
|
|
61
|
-
<lastmod>2026-01-
|
|
69
|
+
<lastmod>2026-01-29</lastmod>
|
|
62
70
|
</url>
|
|
63
71
|
<url>
|
|
64
72
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/</loc>
|
|
65
|
-
<lastmod>2026-01-
|
|
73
|
+
<lastmod>2026-01-29</lastmod>
|
|
66
74
|
</url>
|
|
67
75
|
<url>
|
|
68
76
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/getting-started/</loc>
|
|
69
|
-
<lastmod>2026-01-
|
|
77
|
+
<lastmod>2026-01-29</lastmod>
|
|
70
78
|
</url>
|
|
71
79
|
<url>
|
|
72
80
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/install/</loc>
|
|
73
|
-
<lastmod>2026-01-
|
|
81
|
+
<lastmod>2026-01-29</lastmod>
|
|
74
82
|
</url>
|
|
75
83
|
<url>
|
|
76
84
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/overview/</loc>
|
|
77
|
-
<lastmod>2026-01-
|
|
85
|
+
<lastmod>2026-01-29</lastmod>
|
|
78
86
|
</url>
|
|
79
87
|
<url>
|
|
80
88
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/quick-start/</loc>
|
|
81
|
-
<lastmod>2026-01-
|
|
89
|
+
<lastmod>2026-01-29</lastmod>
|
|
82
90
|
</url>
|
|
83
91
|
<url>
|
|
84
92
|
<loc>https://wallstop.github.io/DxMessaging/getting-started/visual-guide/</loc>
|
|
85
|
-
<lastmod>2026-01-
|
|
93
|
+
<lastmod>2026-01-29</lastmod>
|
|
86
94
|
</url>
|
|
87
95
|
<url>
|
|
88
96
|
<loc>https://wallstop.github.io/DxMessaging/guides/advanced/</loc>
|
|
89
|
-
<lastmod>2026-01-
|
|
97
|
+
<lastmod>2026-01-29</lastmod>
|
|
90
98
|
</url>
|
|
91
99
|
<url>
|
|
92
100
|
<loc>https://wallstop.github.io/DxMessaging/guides/diagnostics/</loc>
|
|
93
|
-
<lastmod>2026-01-
|
|
101
|
+
<lastmod>2026-01-29</lastmod>
|
|
94
102
|
</url>
|
|
95
103
|
<url>
|
|
96
104
|
<loc>https://wallstop.github.io/DxMessaging/guides/migration-guide/</loc>
|
|
97
|
-
<lastmod>2026-01-
|
|
105
|
+
<lastmod>2026-01-29</lastmod>
|
|
98
106
|
</url>
|
|
99
107
|
<url>
|
|
100
108
|
<loc>https://wallstop.github.io/DxMessaging/guides/patterns/</loc>
|
|
101
|
-
<lastmod>2026-01-
|
|
109
|
+
<lastmod>2026-01-29</lastmod>
|
|
102
110
|
</url>
|
|
103
111
|
<url>
|
|
104
112
|
<loc>https://wallstop.github.io/DxMessaging/guides/testing/</loc>
|
|
105
|
-
<lastmod>2026-01-
|
|
113
|
+
<lastmod>2026-01-29</lastmod>
|
|
106
114
|
</url>
|
|
107
115
|
<url>
|
|
108
116
|
<loc>https://wallstop.github.io/DxMessaging/guides/unity-integration/</loc>
|
|
109
|
-
<lastmod>2026-01-
|
|
117
|
+
<lastmod>2026-01-29</lastmod>
|
|
110
118
|
</url>
|
|
111
119
|
<url>
|
|
112
120
|
<loc>https://wallstop.github.io/DxMessaging/integrations/</loc>
|
|
113
|
-
<lastmod>2026-01-
|
|
121
|
+
<lastmod>2026-01-29</lastmod>
|
|
114
122
|
</url>
|
|
115
123
|
<url>
|
|
116
124
|
<loc>https://wallstop.github.io/DxMessaging/integrations/reflex/</loc>
|
|
117
|
-
<lastmod>2026-01-
|
|
125
|
+
<lastmod>2026-01-29</lastmod>
|
|
118
126
|
</url>
|
|
119
127
|
<url>
|
|
120
128
|
<loc>https://wallstop.github.io/DxMessaging/integrations/vcontainer/</loc>
|
|
121
|
-
<lastmod>2026-01-
|
|
129
|
+
<lastmod>2026-01-29</lastmod>
|
|
122
130
|
</url>
|
|
123
131
|
<url>
|
|
124
132
|
<loc>https://wallstop.github.io/DxMessaging/integrations/zenject/</loc>
|
|
125
|
-
<lastmod>2026-01-
|
|
133
|
+
<lastmod>2026-01-29</lastmod>
|
|
126
134
|
</url>
|
|
127
135
|
<url>
|
|
128
136
|
<loc>https://wallstop.github.io/DxMessaging/reference/compatibility/</loc>
|
|
129
|
-
<lastmod>2026-01-
|
|
137
|
+
<lastmod>2026-01-29</lastmod>
|
|
130
138
|
</url>
|
|
131
139
|
<url>
|
|
132
140
|
<loc>https://wallstop.github.io/DxMessaging/reference/faq/</loc>
|
|
133
|
-
<lastmod>2026-01-
|
|
141
|
+
<lastmod>2026-01-29</lastmod>
|
|
134
142
|
</url>
|
|
135
143
|
<url>
|
|
136
144
|
<loc>https://wallstop.github.io/DxMessaging/reference/glossary/</loc>
|
|
137
|
-
<lastmod>2026-01-
|
|
145
|
+
<lastmod>2026-01-29</lastmod>
|
|
138
146
|
</url>
|
|
139
147
|
<url>
|
|
140
148
|
<loc>https://wallstop.github.io/DxMessaging/reference/helpers/</loc>
|
|
141
|
-
<lastmod>2026-01-
|
|
149
|
+
<lastmod>2026-01-29</lastmod>
|
|
142
150
|
</url>
|
|
143
151
|
<url>
|
|
144
152
|
<loc>https://wallstop.github.io/DxMessaging/reference/quick-reference/</loc>
|
|
145
|
-
<lastmod>2026-01-
|
|
153
|
+
<lastmod>2026-01-29</lastmod>
|
|
146
154
|
</url>
|
|
147
155
|
<url>
|
|
148
156
|
<loc>https://wallstop.github.io/DxMessaging/reference/reference/</loc>
|
|
149
|
-
<lastmod>2026-01-
|
|
157
|
+
<lastmod>2026-01-29</lastmod>
|
|
150
158
|
</url>
|
|
151
159
|
<url>
|
|
152
160
|
<loc>https://wallstop.github.io/DxMessaging/reference/troubleshooting/</loc>
|
|
153
|
-
<lastmod>2026-01-
|
|
161
|
+
<lastmod>2026-01-29</lastmod>
|
|
154
162
|
</url>
|
|
155
163
|
</urlset>
|
package/site/sitemap.xml.gz
CHANGED
|
Binary file
|
package/site/stylesheets.meta
CHANGED