@contractspec/bundle.marketing 1.12.0 → 1.14.0
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/.turbo/turbo-build.log +146 -175
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +57 -0
- package/dist/browser/components/marketing/ChangelogPage.js +92 -0
- package/dist/browser/components/marketing/CofounderPage.js +581 -0
- package/dist/browser/components/marketing/ContactClient.js +1379 -0
- package/dist/browser/components/marketing/ContributePage.js +487 -0
- package/dist/browser/components/marketing/DesignPartnerPage.js +272 -0
- package/dist/browser/components/marketing/LandingPage.js +629 -0
- package/dist/browser/components/marketing/PricingClient.js +1972 -0
- package/dist/browser/components/marketing/ProductClientPage.js +563 -0
- package/dist/browser/components/marketing/index.js +4818 -0
- package/dist/browser/components/marketing/pricing-thinking-modal.js +258 -0
- package/dist/browser/components/marketing/sections/AudienceSection.js +90 -0
- package/dist/browser/components/marketing/sections/CorePositioningSection.js +72 -0
- package/dist/browser/components/marketing/sections/CtaSection.js +67 -0
- package/dist/browser/components/marketing/sections/DevelopersSection.js +50 -0
- package/dist/browser/components/marketing/sections/FearsSection.js +105 -0
- package/dist/browser/components/marketing/sections/HeroMarketingSection.js +93 -0
- package/dist/browser/components/marketing/sections/IconGridSection.js +63 -0
- package/dist/browser/components/marketing/sections/OutputsSection.js +116 -0
- package/dist/browser/components/marketing/sections/ProblemSection.js +103 -0
- package/dist/browser/components/marketing/sections/SolutionSection.js +103 -0
- package/dist/browser/components/marketing/sections/StepsSection.js +109 -0
- package/dist/browser/components/marketing/waitlist-section.js +1104 -0
- package/dist/browser/components/templates/TemplatesClientPage.js +5662 -0
- package/dist/browser/components/templates/TemplatesPage.js +177 -0
- package/dist/browser/components/templates/TemplatesPreviewModal.js +124 -0
- package/dist/browser/components/templates/index.js +5831 -0
- package/dist/browser/index.js +6485 -0
- package/dist/browser/libs/email/client.js +122 -0
- package/dist/browser/libs/email/contact.js +190 -0
- package/dist/browser/libs/email/newsletter.js +215 -0
- package/dist/browser/libs/email/types.js +2 -0
- package/dist/browser/libs/email/utils.js +16 -0
- package/dist/browser/libs/email/waitlist-application.js +295 -0
- package/dist/browser/libs/email/waitlist.js +225 -0
- package/dist/browser/libs/pricing-examples.js +26 -0
- package/dist/browser/registry/engine.js +5293 -0
- package/dist/browser/registry/factory.js +52 -0
- package/dist/browser/registry/index.js +5358 -0
- package/dist/browser/registry/registry-docs.js +343 -0
- package/dist/browser/registry/registry-landing.js +4937 -0
- package/dist/browser/registry/registry.js +5279 -0
- package/dist/browser/registry/types.js +0 -0
- package/dist/browser/registry/utils.js +5340 -0
- package/dist/components/marketing/ChangelogPage.d.ts +11 -17
- package/dist/components/marketing/ChangelogPage.d.ts.map +1 -1
- package/dist/components/marketing/ChangelogPage.js +84 -62
- package/dist/components/marketing/CofounderPage.d.ts +1 -6
- package/dist/components/marketing/CofounderPage.d.ts.map +1 -1
- package/dist/components/marketing/CofounderPage.js +544 -436
- package/dist/components/marketing/ContactClient.d.ts +1 -6
- package/dist/components/marketing/ContactClient.d.ts.map +1 -1
- package/dist/components/marketing/ContactClient.js +1371 -155
- package/dist/components/marketing/ContributePage.d.ts +3 -8
- package/dist/components/marketing/ContributePage.d.ts.map +1 -1
- package/dist/components/marketing/ContributePage.js +478 -358
- package/dist/components/marketing/DesignPartnerPage.d.ts +3 -8
- package/dist/components/marketing/DesignPartnerPage.d.ts.map +1 -1
- package/dist/components/marketing/DesignPartnerPage.js +263 -211
- package/dist/components/marketing/LandingPage.d.ts +1 -6
- package/dist/components/marketing/LandingPage.d.ts.map +1 -1
- package/dist/components/marketing/LandingPage.js +623 -37
- package/dist/components/marketing/PricingClient.d.ts +1 -6
- package/dist/components/marketing/PricingClient.d.ts.map +1 -1
- package/dist/components/marketing/PricingClient.js +1962 -516
- package/dist/components/marketing/ProductClientPage.d.ts +1 -6
- package/dist/components/marketing/ProductClientPage.d.ts.map +1 -1
- package/dist/components/marketing/ProductClientPage.js +556 -458
- package/dist/components/marketing/index.d.ts +11 -11
- package/dist/components/marketing/index.d.ts.map +1 -0
- package/dist/components/marketing/index.js +4813 -12
- package/dist/components/marketing/pricing-thinking-modal.d.ts +5 -13
- package/dist/components/marketing/pricing-thinking-modal.d.ts.map +1 -1
- package/dist/components/marketing/pricing-thinking-modal.js +248 -197
- package/dist/components/marketing/sections/AudienceSection.d.ts +1 -6
- package/dist/components/marketing/sections/AudienceSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/AudienceSection.js +80 -63
- package/dist/components/marketing/sections/CorePositioningSection.d.ts +1 -6
- package/dist/components/marketing/sections/CorePositioningSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CorePositioningSection.js +62 -54
- package/dist/components/marketing/sections/CtaSection.d.ts +1 -6
- package/dist/components/marketing/sections/CtaSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CtaSection.js +58 -50
- package/dist/components/marketing/sections/DevelopersSection.d.ts +1 -6
- package/dist/components/marketing/sections/DevelopersSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/DevelopersSection.js +40 -40
- package/dist/components/marketing/sections/FearsSection.d.ts +1 -6
- package/dist/components/marketing/sections/FearsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/FearsSection.js +96 -44
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts +1 -6
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js +82 -71
- package/dist/components/marketing/sections/IconGridSection.d.ts +25 -39
- package/dist/components/marketing/sections/IconGridSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/IconGridSection.js +55 -41
- package/dist/components/marketing/sections/OutputsSection.d.ts +1 -6
- package/dist/components/marketing/sections/OutputsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/OutputsSection.js +107 -55
- package/dist/components/marketing/sections/ProblemSection.d.ts +1 -6
- package/dist/components/marketing/sections/ProblemSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/ProblemSection.js +94 -42
- package/dist/components/marketing/sections/SolutionSection.d.ts +1 -6
- package/dist/components/marketing/sections/SolutionSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/SolutionSection.js +94 -42
- package/dist/components/marketing/sections/StepsSection.d.ts +1 -6
- package/dist/components/marketing/sections/StepsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/StepsSection.js +100 -48
- package/dist/components/marketing/waitlist-section.d.ts +5 -12
- package/dist/components/marketing/waitlist-section.d.ts.map +1 -1
- package/dist/components/marketing/waitlist-section.js +1089 -568
- package/dist/components/templates/TemplatesClientPage.d.ts +1 -6
- package/dist/components/templates/TemplatesClientPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesClientPage.js +5649 -617
- package/dist/components/templates/TemplatesPage.d.ts +1 -6
- package/dist/components/templates/TemplatesPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPage.js +163 -116
- package/dist/components/templates/TemplatesPreviewModal.d.ts +5 -12
- package/dist/components/templates/TemplatesPreviewModal.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPreviewModal.js +113 -131
- package/dist/components/templates/index.d.ts +4 -4
- package/dist/components/templates/index.d.ts.map +1 -0
- package/dist/components/templates/index.js +5825 -4
- package/dist/index.d.ts +9 -29
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6480 -28
- package/dist/libs/email/client.d.ts +9 -12
- package/dist/libs/email/client.d.ts.map +1 -1
- package/dist/libs/email/client.js +109 -105
- package/dist/libs/email/client.test.d.ts +2 -0
- package/dist/libs/email/client.test.d.ts.map +1 -0
- package/dist/libs/email/contact.d.ts +2 -6
- package/dist/libs/email/contact.d.ts.map +1 -1
- package/dist/libs/email/contact.js +155 -41
- package/dist/libs/email/newsletter.d.ts +2 -6
- package/dist/libs/email/newsletter.d.ts.map +1 -1
- package/dist/libs/email/newsletter.js +169 -54
- package/dist/libs/email/types.d.ts +48 -52
- package/dist/libs/email/types.d.ts.map +1 -1
- package/dist/libs/email/types.js +3 -1
- package/dist/libs/email/utils.d.ts +2 -5
- package/dist/libs/email/utils.d.ts.map +1 -1
- package/dist/libs/email/utils.js +10 -6
- package/dist/libs/email/waitlist-application.d.ts +2 -6
- package/dist/libs/email/waitlist-application.d.ts.map +1 -1
- package/dist/libs/email/waitlist-application.js +191 -71
- package/dist/libs/email/waitlist.d.ts +2 -6
- package/dist/libs/email/waitlist.d.ts.map +1 -1
- package/dist/libs/email/waitlist.js +171 -56
- package/dist/libs/pricing-examples.d.ts +13 -16
- package/dist/libs/pricing-examples.d.ts.map +1 -1
- package/dist/libs/pricing-examples.js +20 -20
- package/dist/node/components/marketing/ChangelogPage.js +87 -0
- package/dist/node/components/marketing/CofounderPage.js +576 -0
- package/dist/node/components/marketing/ContactClient.js +1374 -0
- package/dist/node/components/marketing/ContributePage.js +482 -0
- package/dist/node/components/marketing/DesignPartnerPage.js +267 -0
- package/dist/node/components/marketing/LandingPage.js +624 -0
- package/dist/node/components/marketing/PricingClient.js +1967 -0
- package/dist/node/components/marketing/ProductClientPage.js +558 -0
- package/dist/node/components/marketing/index.js +4813 -0
- package/dist/node/components/marketing/pricing-thinking-modal.js +253 -0
- package/dist/node/components/marketing/sections/AudienceSection.js +85 -0
- package/dist/node/components/marketing/sections/CorePositioningSection.js +67 -0
- package/dist/node/components/marketing/sections/CtaSection.js +62 -0
- package/dist/node/components/marketing/sections/DevelopersSection.js +45 -0
- package/dist/node/components/marketing/sections/FearsSection.js +100 -0
- package/dist/node/components/marketing/sections/HeroMarketingSection.js +88 -0
- package/dist/node/components/marketing/sections/IconGridSection.js +58 -0
- package/dist/node/components/marketing/sections/OutputsSection.js +111 -0
- package/dist/node/components/marketing/sections/ProblemSection.js +98 -0
- package/dist/node/components/marketing/sections/SolutionSection.js +98 -0
- package/dist/node/components/marketing/sections/StepsSection.js +104 -0
- package/dist/node/components/marketing/waitlist-section.js +1099 -0
- package/dist/node/components/templates/TemplatesClientPage.js +5657 -0
- package/dist/node/components/templates/TemplatesPage.js +172 -0
- package/dist/node/components/templates/TemplatesPreviewModal.js +119 -0
- package/dist/node/components/templates/index.js +5826 -0
- package/dist/node/index.js +6480 -0
- package/dist/node/libs/email/client.js +117 -0
- package/dist/node/libs/email/contact.js +185 -0
- package/dist/node/libs/email/newsletter.js +210 -0
- package/dist/node/libs/email/types.js +2 -0
- package/dist/node/libs/email/utils.js +11 -0
- package/dist/node/libs/email/waitlist-application.js +290 -0
- package/dist/node/libs/email/waitlist.js +220 -0
- package/dist/node/libs/pricing-examples.js +21 -0
- package/dist/node/registry/engine.js +5288 -0
- package/dist/node/registry/factory.js +47 -0
- package/dist/node/registry/index.js +5353 -0
- package/dist/node/registry/registry-docs.js +338 -0
- package/dist/node/registry/registry-landing.js +4932 -0
- package/dist/node/registry/registry.js +5274 -0
- package/dist/node/registry/types.js +0 -0
- package/dist/node/registry/utils.js +5335 -0
- package/dist/registry/engine.d.ts +4 -8
- package/dist/registry/engine.d.ts.map +1 -1
- package/dist/registry/engine.js +5287 -23
- package/dist/registry/factory.d.ts +30 -34
- package/dist/registry/factory.d.ts.map +1 -1
- package/dist/registry/factory.js +42 -56
- package/dist/registry/index.d.ts +8 -8
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +5353 -8
- package/dist/registry/registry-docs.d.ts +4 -8
- package/dist/registry/registry-docs.d.ts.map +1 -1
- package/dist/registry/registry-docs.js +242 -209
- package/dist/registry/registry-landing.d.ts +5 -9
- package/dist/registry/registry-landing.d.ts.map +1 -1
- package/dist/registry/registry-landing.js +4930 -93
- package/dist/registry/registry.d.ts +7 -11
- package/dist/registry/registry.d.ts.map +1 -1
- package/dist/registry/registry.js +5262 -49
- package/dist/registry/types.d.ts +6 -10
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js +1 -0
- package/dist/registry/utils.d.ts +10 -14
- package/dist/registry/utils.d.ts.map +1 -1
- package/dist/registry/utils.js +5330 -49
- package/package.json +355 -73
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$types.log +0 -1
- package/.turbo/turbo-lint.log +0 -3
- package/dist/components/marketing/ChangelogPage.js.map +0 -1
- package/dist/components/marketing/CofounderPage.js.map +0 -1
- package/dist/components/marketing/ContactClient.js.map +0 -1
- package/dist/components/marketing/ContributePage.js.map +0 -1
- package/dist/components/marketing/DesignPartnerPage.js.map +0 -1
- package/dist/components/marketing/LandingPage.js.map +0 -1
- package/dist/components/marketing/PricingClient.js.map +0 -1
- package/dist/components/marketing/ProductClientPage.js.map +0 -1
- package/dist/components/marketing/pricing-thinking-modal.js.map +0 -1
- package/dist/components/marketing/sections/AudienceSection.js.map +0 -1
- package/dist/components/marketing/sections/CorePositioningSection.js.map +0 -1
- package/dist/components/marketing/sections/CtaSection.js.map +0 -1
- package/dist/components/marketing/sections/DevelopersSection.js.map +0 -1
- package/dist/components/marketing/sections/FearsSection.js.map +0 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js.map +0 -1
- package/dist/components/marketing/sections/IconGridSection.js.map +0 -1
- package/dist/components/marketing/sections/OutputsSection.js.map +0 -1
- package/dist/components/marketing/sections/ProblemSection.js.map +0 -1
- package/dist/components/marketing/sections/SolutionSection.js.map +0 -1
- package/dist/components/marketing/sections/StepsSection.js.map +0 -1
- package/dist/components/marketing/waitlist-section.js.map +0 -1
- package/dist/components/templates/TemplatesClientPage.js.map +0 -1
- package/dist/components/templates/TemplatesPage.js.map +0 -1
- package/dist/components/templates/TemplatesPreviewModal.js.map +0 -1
- package/dist/libs/email/client.js.map +0 -1
- package/dist/libs/email/contact.js.map +0 -1
- package/dist/libs/email/newsletter.js.map +0 -1
- package/dist/libs/email/utils.js.map +0 -1
- package/dist/libs/email/waitlist-application.js.map +0 -1
- package/dist/libs/email/waitlist.js.map +0 -1
- package/dist/libs/pricing-examples.js.map +0 -1
- package/dist/registry/engine.js.map +0 -1
- package/dist/registry/factory.js.map +0 -1
- package/dist/registry/registry-docs.js.map +0 -1
- package/dist/registry/registry-landing.js.map +0 -1
- package/dist/registry/registry.js.map +0 -1
- package/dist/registry/utils.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,175 +1,146 @@
|
|
|
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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/pricing-thinking-modal.d.ts[22m[39m [2m 0.49 kB[22m [2m│ gzip: 0.28 kB[22m
|
|
148
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/waitlist-section.d.ts[22m[39m [2m 0.44 kB[22m [2m│ gzip: 0.27 kB[22m
|
|
149
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/DesignPartnerPage.d.ts[22m[39m [2m 0.35 kB[22m [2m│ gzip: 0.22 kB[22m
|
|
150
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/ContributePage.d.ts[22m[39m [2m 0.34 kB[22m [2m│ gzip: 0.22 kB[22m
|
|
151
|
-
[34mℹ[39m [2mdist/[22m[32m[1mlibs/email/waitlist-application.d.ts[22m[39m [2m 0.32 kB[22m [2m│ gzip: 0.20 kB[22m
|
|
152
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/CorePositioningSection.d.ts[22m[39m [2m 0.30 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
153
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/HeroMarketingSection.d.ts[22m[39m [2m 0.30 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
154
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/DevelopersSection.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
155
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/templates/TemplatesPage.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
156
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/ProductClientPage.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
157
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/AudienceSection.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
158
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/SolutionSection.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
159
|
-
[34mℹ[39m [2mdist/[22m[32m[1mlibs/email/newsletter.d.ts[22m[39m [2m 0.28 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
160
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/OutputsSection.d.ts[22m[39m [2m 0.27 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
161
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/ProblemSection.d.ts[22m[39m [2m 0.27 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
162
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/templates/TemplatesClientPage.d.ts[22m[39m [2m 0.27 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
163
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/FearsSection.d.ts[22m[39m [2m 0.27 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
164
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/StepsSection.d.ts[22m[39m [2m 0.27 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
165
|
-
[34mℹ[39m [2mdist/[22m[32m[1mlibs/email/contact.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
166
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/CofounderPage.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
167
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/ContactClient.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.18 kB[22m
|
|
168
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/PricingClient.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
169
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/sections/CtaSection.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.19 kB[22m
|
|
170
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/templates/index.d.ts[22m[39m [2m 0.26 kB[22m [2m│ gzip: 0.12 kB[22m
|
|
171
|
-
[34mℹ[39m [2mdist/[22m[32m[1mcomponents/marketing/LandingPage.d.ts[22m[39m [2m 0.25 kB[22m [2m│ gzip: 0.18 kB[22m
|
|
172
|
-
[34mℹ[39m [2mdist/[22m[32m[1mlibs/email/waitlist.d.ts[22m[39m [2m 0.25 kB[22m [2m│ gzip: 0.18 kB[22m
|
|
173
|
-
[34mℹ[39m [2mdist/[22m[32m[1mlibs/email/utils.d.ts[22m[39m [2m 0.24 kB[22m [2m│ gzip: 0.16 kB[22m
|
|
174
|
-
[34mℹ[39m 162 files, total: 576.29 kB
|
|
175
|
-
[32m✔[39m Build complete in [32m2749ms[39m
|
|
1
|
+
$ contractspec-bun-build prebuild
|
|
2
|
+
$ bun run prebuild && bun run build:bundle && bun run build:types
|
|
3
|
+
$ contractspec-bun-build prebuild
|
|
4
|
+
$ contractspec-bun-build transpile
|
|
5
|
+
[contractspec-bun-build] transpile target=bun root=src entries=43
|
|
6
|
+
Bundled 43 modules in 36ms
|
|
7
|
+
|
|
8
|
+
components/marketing/ChangelogPage.js 4.28 KB (entry point)
|
|
9
|
+
./index.js 0.31 MB (entry point)
|
|
10
|
+
registry/index.js 256.1 KB (entry point)
|
|
11
|
+
registry/types.js 8 bytes (entry point)
|
|
12
|
+
registry/utils.js 255.67 KB (entry point)
|
|
13
|
+
registry/engine.js 254.13 KB (entry point)
|
|
14
|
+
registry/registry.js 253.62 KB (entry point)
|
|
15
|
+
registry/registry-docs.js 28.50 KB (entry point)
|
|
16
|
+
registry/registry-landing.js 224.96 KB (entry point)
|
|
17
|
+
registry/factory.js 1.35 KB (entry point)
|
|
18
|
+
components/templates/index.js 0.27 MB (entry point)
|
|
19
|
+
libs/email/newsletter.js 6.88 KB (entry point)
|
|
20
|
+
libs/email/types.js 49 bytes (entry point)
|
|
21
|
+
components/templates/TemplatesClientPage.js 0.27 MB (entry point)
|
|
22
|
+
components/templates/TemplatesPreviewModal.js 7.81 KB (entry point)
|
|
23
|
+
components/templates/TemplatesPage.js 6.85 KB (entry point)
|
|
24
|
+
components/marketing/index.js 221.21 KB (entry point)
|
|
25
|
+
components/marketing/CofounderPage.js 21.85 KB (entry point)
|
|
26
|
+
components/marketing/ContactClient.js 61.59 KB (entry point)
|
|
27
|
+
libs/email/contact.js 6.12 KB (entry point)
|
|
28
|
+
components/marketing/ContributePage.js 23.33 KB (entry point)
|
|
29
|
+
components/marketing/DesignPartnerPage.js 13.81 KB (entry point)
|
|
30
|
+
components/marketing/LandingPage.js 24.1 KB (entry point)
|
|
31
|
+
components/marketing/sections/OutputsSection.js 3.26 KB (entry point)
|
|
32
|
+
components/marketing/sections/ProblemSection.js 3.13 KB (entry point)
|
|
33
|
+
components/marketing/sections/SolutionSection.js 3.19 KB (entry point)
|
|
34
|
+
components/marketing/sections/StepsSection.js 3.17 KB (entry point)
|
|
35
|
+
components/marketing/sections/AudienceSection.js 3.47 KB (entry point)
|
|
36
|
+
components/marketing/sections/CorePositioningSection.js 2.53 KB (entry point)
|
|
37
|
+
components/marketing/sections/CtaSection.js 2.32 KB (entry point)
|
|
38
|
+
components/marketing/sections/DevelopersSection.js 1.37 KB (entry point)
|
|
39
|
+
components/marketing/sections/FearsSection.js 3.35 KB (entry point)
|
|
40
|
+
components/marketing/sections/IconGridSection.js 1.66 KB (entry point)
|
|
41
|
+
components/marketing/sections/HeroMarketingSection.js 3.63 KB (entry point)
|
|
42
|
+
components/marketing/PricingClient.js 94.50 KB (entry point)
|
|
43
|
+
components/marketing/pricing-thinking-modal.js 11.38 KB (entry point)
|
|
44
|
+
libs/pricing-examples.js 410 bytes (entry point)
|
|
45
|
+
components/marketing/waitlist-section.js 49.90 KB (entry point)
|
|
46
|
+
libs/email/waitlist-application.js 11.18 KB (entry point)
|
|
47
|
+
libs/email/waitlist.js 7.48 KB (entry point)
|
|
48
|
+
libs/email/client.js 3.42 KB (entry point)
|
|
49
|
+
libs/email/utils.js 311 bytes (entry point)
|
|
50
|
+
components/marketing/ProductClientPage.js 26.63 KB (entry point)
|
|
51
|
+
|
|
52
|
+
[contractspec-bun-build] transpile target=node root=src entries=43
|
|
53
|
+
Bundled 43 modules in 29ms
|
|
54
|
+
|
|
55
|
+
components/marketing/ChangelogPage.js 4.34 KB (entry point)
|
|
56
|
+
./index.js 0.31 MB (entry point)
|
|
57
|
+
registry/index.js 255.98 KB (entry point)
|
|
58
|
+
registry/types.js 0 KB (entry point)
|
|
59
|
+
registry/utils.js 255.57 KB (entry point)
|
|
60
|
+
registry/engine.js 254.0 KB (entry point)
|
|
61
|
+
registry/registry.js 253.53 KB (entry point)
|
|
62
|
+
registry/registry-docs.js 28.57 KB (entry point)
|
|
63
|
+
registry/registry-landing.js 224.87 KB (entry point)
|
|
64
|
+
registry/factory.js 1.41 KB (entry point)
|
|
65
|
+
components/templates/index.js 0.27 MB (entry point)
|
|
66
|
+
libs/email/newsletter.js 6.93 KB (entry point)
|
|
67
|
+
libs/email/types.js 41 bytes (entry point)
|
|
68
|
+
components/templates/TemplatesClientPage.js 0.27 MB (entry point)
|
|
69
|
+
components/templates/TemplatesPreviewModal.js 7.88 KB (entry point)
|
|
70
|
+
components/templates/TemplatesPage.js 6.91 KB (entry point)
|
|
71
|
+
components/marketing/index.js 221.11 KB (entry point)
|
|
72
|
+
components/marketing/CofounderPage.js 21.90 KB (entry point)
|
|
73
|
+
components/marketing/ContactClient.js 61.60 KB (entry point)
|
|
74
|
+
libs/email/contact.js 6.18 KB (entry point)
|
|
75
|
+
components/marketing/ContributePage.js 23.35 KB (entry point)
|
|
76
|
+
components/marketing/DesignPartnerPage.js 13.87 KB (entry point)
|
|
77
|
+
components/marketing/LandingPage.js 24.1 KB (entry point)
|
|
78
|
+
components/marketing/sections/OutputsSection.js 3.32 KB (entry point)
|
|
79
|
+
components/marketing/sections/ProblemSection.js 3.19 KB (entry point)
|
|
80
|
+
components/marketing/sections/SolutionSection.js 3.25 KB (entry point)
|
|
81
|
+
components/marketing/sections/StepsSection.js 3.23 KB (entry point)
|
|
82
|
+
components/marketing/sections/AudienceSection.js 3.53 KB (entry point)
|
|
83
|
+
components/marketing/sections/CorePositioningSection.js 2.60 KB (entry point)
|
|
84
|
+
components/marketing/sections/CtaSection.js 2.39 KB (entry point)
|
|
85
|
+
components/marketing/sections/DevelopersSection.js 1.42 KB (entry point)
|
|
86
|
+
components/marketing/sections/FearsSection.js 3.41 KB (entry point)
|
|
87
|
+
components/marketing/sections/IconGridSection.js 1.72 KB (entry point)
|
|
88
|
+
components/marketing/sections/HeroMarketingSection.js 3.70 KB (entry point)
|
|
89
|
+
components/marketing/PricingClient.js 94.49 KB (entry point)
|
|
90
|
+
components/marketing/pricing-thinking-modal.js 11.43 KB (entry point)
|
|
91
|
+
libs/pricing-examples.js 471 bytes (entry point)
|
|
92
|
+
components/marketing/waitlist-section.js 49.91 KB (entry point)
|
|
93
|
+
libs/email/waitlist-application.js 11.23 KB (entry point)
|
|
94
|
+
libs/email/waitlist.js 7.53 KB (entry point)
|
|
95
|
+
libs/email/client.js 3.48 KB (entry point)
|
|
96
|
+
libs/email/utils.js 375 bytes (entry point)
|
|
97
|
+
components/marketing/ProductClientPage.js 26.70 KB (entry point)
|
|
98
|
+
|
|
99
|
+
[contractspec-bun-build] transpile target=browser root=src entries=43
|
|
100
|
+
Bundled 43 modules in 24ms
|
|
101
|
+
|
|
102
|
+
components/marketing/ChangelogPage.js 4.60 KB (entry point)
|
|
103
|
+
./index.js 0.31 MB (entry point)
|
|
104
|
+
registry/index.js 256.24 KB (entry point)
|
|
105
|
+
registry/types.js 0 KB (entry point)
|
|
106
|
+
registry/utils.js 255.83 KB (entry point)
|
|
107
|
+
registry/engine.js 254.30 KB (entry point)
|
|
108
|
+
registry/registry.js 253.79 KB (entry point)
|
|
109
|
+
registry/registry-docs.js 28.83 KB (entry point)
|
|
110
|
+
registry/registry-landing.js 225.13 KB (entry point)
|
|
111
|
+
registry/factory.js 1.67 KB (entry point)
|
|
112
|
+
components/templates/index.js 0.27 MB (entry point)
|
|
113
|
+
libs/email/newsletter.js 7.19 KB (entry point)
|
|
114
|
+
libs/email/types.js 41 bytes (entry point)
|
|
115
|
+
components/templates/TemplatesClientPage.js 0.27 MB (entry point)
|
|
116
|
+
components/templates/TemplatesPreviewModal.js 8.14 KB (entry point)
|
|
117
|
+
components/templates/TemplatesPage.js 7.17 KB (entry point)
|
|
118
|
+
components/marketing/index.js 221.37 KB (entry point)
|
|
119
|
+
components/marketing/CofounderPage.js 22.16 KB (entry point)
|
|
120
|
+
components/marketing/ContactClient.js 61.86 KB (entry point)
|
|
121
|
+
libs/email/contact.js 6.44 KB (entry point)
|
|
122
|
+
components/marketing/ContributePage.js 23.61 KB (entry point)
|
|
123
|
+
components/marketing/DesignPartnerPage.js 14.13 KB (entry point)
|
|
124
|
+
components/marketing/LandingPage.js 24.35 KB (entry point)
|
|
125
|
+
components/marketing/sections/OutputsSection.js 3.58 KB (entry point)
|
|
126
|
+
components/marketing/sections/ProblemSection.js 3.45 KB (entry point)
|
|
127
|
+
components/marketing/sections/SolutionSection.js 3.51 KB (entry point)
|
|
128
|
+
components/marketing/sections/StepsSection.js 3.49 KB (entry point)
|
|
129
|
+
components/marketing/sections/AudienceSection.js 3.79 KB (entry point)
|
|
130
|
+
components/marketing/sections/CorePositioningSection.js 2.86 KB (entry point)
|
|
131
|
+
components/marketing/sections/CtaSection.js 2.65 KB (entry point)
|
|
132
|
+
components/marketing/sections/DevelopersSection.js 1.68 KB (entry point)
|
|
133
|
+
components/marketing/sections/FearsSection.js 3.67 KB (entry point)
|
|
134
|
+
components/marketing/sections/IconGridSection.js 1.98 KB (entry point)
|
|
135
|
+
components/marketing/sections/HeroMarketingSection.js 3.96 KB (entry point)
|
|
136
|
+
components/marketing/PricingClient.js 94.75 KB (entry point)
|
|
137
|
+
components/marketing/pricing-thinking-modal.js 11.69 KB (entry point)
|
|
138
|
+
libs/pricing-examples.js 0.73 KB (entry point)
|
|
139
|
+
components/marketing/waitlist-section.js 50.17 KB (entry point)
|
|
140
|
+
libs/email/waitlist-application.js 11.49 KB (entry point)
|
|
141
|
+
libs/email/waitlist.js 7.79 KB (entry point)
|
|
142
|
+
libs/email/client.js 3.74 KB (entry point)
|
|
143
|
+
libs/email/utils.js 0.64 KB (entry point)
|
|
144
|
+
components/marketing/ProductClientPage.js 26.96 KB (entry point)
|
|
145
|
+
|
|
146
|
+
$ contractspec-bun-build types
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$ contractspec-bun-build prebuild
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @contractspec/bundle.marketing
|
|
2
2
|
|
|
3
|
+
## 1.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1a0cf44]
|
|
12
|
+
- @contractspec/example.analytics-dashboard@1.59.0
|
|
13
|
+
- @contractspec/example.saas-boilerplate@1.59.0
|
|
14
|
+
- @contractspec/example.integration-hub@1.59.0
|
|
15
|
+
- @contractspec/example.workflow-system@1.59.0
|
|
16
|
+
- @contractspec/example.agent-console@1.59.0
|
|
17
|
+
- @contractspec/lib.example-shared-ui@1.13.0
|
|
18
|
+
- @contractspec/example.crm-pipeline@1.59.0
|
|
19
|
+
- @contractspec/example.marketplace@1.59.0
|
|
20
|
+
- @contractspec/lib.runtime-sandbox@0.14.0
|
|
21
|
+
- @contractspec/lib.design-system@1.59.0
|
|
22
|
+
- @contractspec/lib.ui-kit-core@1.59.0
|
|
23
|
+
- @contractspec/module.examples@1.59.0
|
|
24
|
+
- @contractspec/bundle.library@1.14.0
|
|
25
|
+
- @contractspec/lib.ui-kit-web@1.59.0
|
|
26
|
+
- @contractspec/lib.contracts@1.59.0
|
|
27
|
+
- @contractspec/lib.ui-link@1.59.0
|
|
28
|
+
- @contractspec/lib.logger@1.59.0
|
|
29
|
+
- @contractspec/lib.email@1.13.0
|
|
30
|
+
|
|
31
|
+
## 1.13.0
|
|
32
|
+
|
|
33
|
+
### Minor Changes
|
|
34
|
+
|
|
35
|
+
- d1f0fd0: chore: Migrate non-app package builds from tsdown to shared Bun tooling, add `@contractspec/tool.bun`, and standardize `prebuild`/`build`/`typecheck` with platform-aware exports and `tsc` declaration emission into `dist`.
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [d1f0fd0]
|
|
40
|
+
- Updated dependencies [4355a9e]
|
|
41
|
+
- @contractspec/example.analytics-dashboard@1.58.0
|
|
42
|
+
- @contractspec/example.saas-boilerplate@1.58.0
|
|
43
|
+
- @contractspec/example.integration-hub@1.58.0
|
|
44
|
+
- @contractspec/example.workflow-system@1.58.0
|
|
45
|
+
- @contractspec/example.agent-console@1.58.0
|
|
46
|
+
- @contractspec/lib.example-shared-ui@1.12.0
|
|
47
|
+
- @contractspec/example.crm-pipeline@1.58.0
|
|
48
|
+
- @contractspec/example.marketplace@1.58.0
|
|
49
|
+
- @contractspec/lib.runtime-sandbox@0.13.0
|
|
50
|
+
- @contractspec/lib.design-system@1.58.0
|
|
51
|
+
- @contractspec/lib.ui-kit-core@1.58.0
|
|
52
|
+
- @contractspec/module.examples@1.58.0
|
|
53
|
+
- @contractspec/bundle.library@1.13.0
|
|
54
|
+
- @contractspec/lib.ui-kit-web@1.58.0
|
|
55
|
+
- @contractspec/lib.contracts@1.58.0
|
|
56
|
+
- @contractspec/lib.ui-link@1.58.0
|
|
57
|
+
- @contractspec/lib.logger@1.58.0
|
|
58
|
+
- @contractspec/lib.email@1.12.0
|
|
59
|
+
|
|
3
60
|
## 1.12.0
|
|
4
61
|
|
|
5
62
|
### Minor Changes
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
2
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
3
|
+
}) : x)(function(x) {
|
|
4
|
+
if (typeof require !== "undefined")
|
|
5
|
+
return require.apply(this, arguments);
|
|
6
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
// src/components/marketing/ChangelogPage.tsx
|
|
10
|
+
import { jsxDEV } from "react/jsx-dev-runtime";
|
|
11
|
+
function ChangelogPage({ entries }) {
|
|
12
|
+
return /* @__PURE__ */ jsxDEV("main", {
|
|
13
|
+
children: [
|
|
14
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
15
|
+
className: "section-padding hero-gradient border-border relative border-b",
|
|
16
|
+
children: /* @__PURE__ */ jsxDEV("div", {
|
|
17
|
+
className: "mx-auto max-w-4xl space-y-6 text-center",
|
|
18
|
+
children: [
|
|
19
|
+
/* @__PURE__ */ jsxDEV("h1", {
|
|
20
|
+
className: "text-5xl leading-tight font-bold md:text-6xl",
|
|
21
|
+
children: "Changelog"
|
|
22
|
+
}, undefined, false, undefined, this),
|
|
23
|
+
/* @__PURE__ */ jsxDEV("p", {
|
|
24
|
+
className: "text-muted-foreground text-lg",
|
|
25
|
+
children: "Latest releases and improvements to ContractSpec."
|
|
26
|
+
}, undefined, false, undefined, this)
|
|
27
|
+
]
|
|
28
|
+
}, undefined, true, undefined, this)
|
|
29
|
+
}, undefined, false, undefined, this),
|
|
30
|
+
/* @__PURE__ */ jsxDEV("section", {
|
|
31
|
+
className: "section-padding",
|
|
32
|
+
children: /* @__PURE__ */ jsxDEV("div", {
|
|
33
|
+
className: "mx-auto max-w-3xl space-y-8",
|
|
34
|
+
children: entries.map((entry, i) => /* @__PURE__ */ jsxDEV("div", {
|
|
35
|
+
className: "card-subtle flex flex-col gap-6 p-8 md:flex-row md:items-start",
|
|
36
|
+
children: [
|
|
37
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
38
|
+
className: "md:w-48 md:flex-shrink-0",
|
|
39
|
+
children: /* @__PURE__ */ jsxDEV("div", {
|
|
40
|
+
className: "sticky top-24",
|
|
41
|
+
children: [
|
|
42
|
+
/* @__PURE__ */ jsxDEV("h3", {
|
|
43
|
+
className: "text-2xl font-bold tracking-tight",
|
|
44
|
+
children: entry.version
|
|
45
|
+
}, undefined, false, undefined, this),
|
|
46
|
+
/* @__PURE__ */ jsxDEV("time", {
|
|
47
|
+
className: "text-muted-foreground mt-1 block text-sm font-medium",
|
|
48
|
+
children: entry.date
|
|
49
|
+
}, undefined, false, undefined, this),
|
|
50
|
+
entry.isBreaking && /* @__PURE__ */ jsxDEV("span", {
|
|
51
|
+
className: "mt-2 inline-flex items-center rounded-full border border-red-500/50 bg-red-500/10 px-2.5 py-0.5 text-xs font-semibold text-red-500",
|
|
52
|
+
children: "Breaking Change"
|
|
53
|
+
}, undefined, false, undefined, this)
|
|
54
|
+
]
|
|
55
|
+
}, undefined, true, undefined, this)
|
|
56
|
+
}, undefined, false, undefined, this),
|
|
57
|
+
/* @__PURE__ */ jsxDEV("div", {
|
|
58
|
+
className: "flex-1 space-y-6",
|
|
59
|
+
children: entry.packages.map((pkg, j) => /* @__PURE__ */ jsxDEV("div", {
|
|
60
|
+
className: "space-y-3",
|
|
61
|
+
children: [
|
|
62
|
+
/* @__PURE__ */ jsxDEV("h4", {
|
|
63
|
+
className: "font-mono text-sm font-semibold text-violet-400",
|
|
64
|
+
children: pkg.name
|
|
65
|
+
}, undefined, false, undefined, this),
|
|
66
|
+
/* @__PURE__ */ jsxDEV("ul", {
|
|
67
|
+
className: "space-y-2",
|
|
68
|
+
children: pkg.changes.map((change, k) => /* @__PURE__ */ jsxDEV("li", {
|
|
69
|
+
className: "text-muted-foreground flex items-start gap-3 text-base leading-relaxed",
|
|
70
|
+
children: [
|
|
71
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
72
|
+
className: "mt-1.5 h-1.5 w-1.5 flex-shrink-0 rounded-full bg-violet-500/50"
|
|
73
|
+
}, undefined, false, undefined, this),
|
|
74
|
+
/* @__PURE__ */ jsxDEV("span", {
|
|
75
|
+
children: change
|
|
76
|
+
}, undefined, false, undefined, this)
|
|
77
|
+
]
|
|
78
|
+
}, k, true, undefined, this))
|
|
79
|
+
}, undefined, false, undefined, this)
|
|
80
|
+
]
|
|
81
|
+
}, j, true, undefined, this))
|
|
82
|
+
}, undefined, false, undefined, this)
|
|
83
|
+
]
|
|
84
|
+
}, i, true, undefined, this))
|
|
85
|
+
}, undefined, false, undefined, this)
|
|
86
|
+
}, undefined, false, undefined, this)
|
|
87
|
+
]
|
|
88
|
+
}, undefined, true, undefined, this);
|
|
89
|
+
}
|
|
90
|
+
export {
|
|
91
|
+
ChangelogPage
|
|
92
|
+
};
|