@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.
Files changed (262) hide show
  1. package/.turbo/turbo-build.log +146 -175
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +57 -0
  4. package/dist/browser/components/marketing/ChangelogPage.js +92 -0
  5. package/dist/browser/components/marketing/CofounderPage.js +581 -0
  6. package/dist/browser/components/marketing/ContactClient.js +1379 -0
  7. package/dist/browser/components/marketing/ContributePage.js +487 -0
  8. package/dist/browser/components/marketing/DesignPartnerPage.js +272 -0
  9. package/dist/browser/components/marketing/LandingPage.js +629 -0
  10. package/dist/browser/components/marketing/PricingClient.js +1972 -0
  11. package/dist/browser/components/marketing/ProductClientPage.js +563 -0
  12. package/dist/browser/components/marketing/index.js +4818 -0
  13. package/dist/browser/components/marketing/pricing-thinking-modal.js +258 -0
  14. package/dist/browser/components/marketing/sections/AudienceSection.js +90 -0
  15. package/dist/browser/components/marketing/sections/CorePositioningSection.js +72 -0
  16. package/dist/browser/components/marketing/sections/CtaSection.js +67 -0
  17. package/dist/browser/components/marketing/sections/DevelopersSection.js +50 -0
  18. package/dist/browser/components/marketing/sections/FearsSection.js +105 -0
  19. package/dist/browser/components/marketing/sections/HeroMarketingSection.js +93 -0
  20. package/dist/browser/components/marketing/sections/IconGridSection.js +63 -0
  21. package/dist/browser/components/marketing/sections/OutputsSection.js +116 -0
  22. package/dist/browser/components/marketing/sections/ProblemSection.js +103 -0
  23. package/dist/browser/components/marketing/sections/SolutionSection.js +103 -0
  24. package/dist/browser/components/marketing/sections/StepsSection.js +109 -0
  25. package/dist/browser/components/marketing/waitlist-section.js +1104 -0
  26. package/dist/browser/components/templates/TemplatesClientPage.js +5662 -0
  27. package/dist/browser/components/templates/TemplatesPage.js +177 -0
  28. package/dist/browser/components/templates/TemplatesPreviewModal.js +124 -0
  29. package/dist/browser/components/templates/index.js +5831 -0
  30. package/dist/browser/index.js +6485 -0
  31. package/dist/browser/libs/email/client.js +122 -0
  32. package/dist/browser/libs/email/contact.js +190 -0
  33. package/dist/browser/libs/email/newsletter.js +215 -0
  34. package/dist/browser/libs/email/types.js +2 -0
  35. package/dist/browser/libs/email/utils.js +16 -0
  36. package/dist/browser/libs/email/waitlist-application.js +295 -0
  37. package/dist/browser/libs/email/waitlist.js +225 -0
  38. package/dist/browser/libs/pricing-examples.js +26 -0
  39. package/dist/browser/registry/engine.js +5293 -0
  40. package/dist/browser/registry/factory.js +52 -0
  41. package/dist/browser/registry/index.js +5358 -0
  42. package/dist/browser/registry/registry-docs.js +343 -0
  43. package/dist/browser/registry/registry-landing.js +4937 -0
  44. package/dist/browser/registry/registry.js +5279 -0
  45. package/dist/browser/registry/types.js +0 -0
  46. package/dist/browser/registry/utils.js +5340 -0
  47. package/dist/components/marketing/ChangelogPage.d.ts +11 -17
  48. package/dist/components/marketing/ChangelogPage.d.ts.map +1 -1
  49. package/dist/components/marketing/ChangelogPage.js +84 -62
  50. package/dist/components/marketing/CofounderPage.d.ts +1 -6
  51. package/dist/components/marketing/CofounderPage.d.ts.map +1 -1
  52. package/dist/components/marketing/CofounderPage.js +544 -436
  53. package/dist/components/marketing/ContactClient.d.ts +1 -6
  54. package/dist/components/marketing/ContactClient.d.ts.map +1 -1
  55. package/dist/components/marketing/ContactClient.js +1371 -155
  56. package/dist/components/marketing/ContributePage.d.ts +3 -8
  57. package/dist/components/marketing/ContributePage.d.ts.map +1 -1
  58. package/dist/components/marketing/ContributePage.js +478 -358
  59. package/dist/components/marketing/DesignPartnerPage.d.ts +3 -8
  60. package/dist/components/marketing/DesignPartnerPage.d.ts.map +1 -1
  61. package/dist/components/marketing/DesignPartnerPage.js +263 -211
  62. package/dist/components/marketing/LandingPage.d.ts +1 -6
  63. package/dist/components/marketing/LandingPage.d.ts.map +1 -1
  64. package/dist/components/marketing/LandingPage.js +623 -37
  65. package/dist/components/marketing/PricingClient.d.ts +1 -6
  66. package/dist/components/marketing/PricingClient.d.ts.map +1 -1
  67. package/dist/components/marketing/PricingClient.js +1962 -516
  68. package/dist/components/marketing/ProductClientPage.d.ts +1 -6
  69. package/dist/components/marketing/ProductClientPage.d.ts.map +1 -1
  70. package/dist/components/marketing/ProductClientPage.js +556 -458
  71. package/dist/components/marketing/index.d.ts +11 -11
  72. package/dist/components/marketing/index.d.ts.map +1 -0
  73. package/dist/components/marketing/index.js +4813 -12
  74. package/dist/components/marketing/pricing-thinking-modal.d.ts +5 -13
  75. package/dist/components/marketing/pricing-thinking-modal.d.ts.map +1 -1
  76. package/dist/components/marketing/pricing-thinking-modal.js +248 -197
  77. package/dist/components/marketing/sections/AudienceSection.d.ts +1 -6
  78. package/dist/components/marketing/sections/AudienceSection.d.ts.map +1 -1
  79. package/dist/components/marketing/sections/AudienceSection.js +80 -63
  80. package/dist/components/marketing/sections/CorePositioningSection.d.ts +1 -6
  81. package/dist/components/marketing/sections/CorePositioningSection.d.ts.map +1 -1
  82. package/dist/components/marketing/sections/CorePositioningSection.js +62 -54
  83. package/dist/components/marketing/sections/CtaSection.d.ts +1 -6
  84. package/dist/components/marketing/sections/CtaSection.d.ts.map +1 -1
  85. package/dist/components/marketing/sections/CtaSection.js +58 -50
  86. package/dist/components/marketing/sections/DevelopersSection.d.ts +1 -6
  87. package/dist/components/marketing/sections/DevelopersSection.d.ts.map +1 -1
  88. package/dist/components/marketing/sections/DevelopersSection.js +40 -40
  89. package/dist/components/marketing/sections/FearsSection.d.ts +1 -6
  90. package/dist/components/marketing/sections/FearsSection.d.ts.map +1 -1
  91. package/dist/components/marketing/sections/FearsSection.js +96 -44
  92. package/dist/components/marketing/sections/HeroMarketingSection.d.ts +1 -6
  93. package/dist/components/marketing/sections/HeroMarketingSection.d.ts.map +1 -1
  94. package/dist/components/marketing/sections/HeroMarketingSection.js +82 -71
  95. package/dist/components/marketing/sections/IconGridSection.d.ts +25 -39
  96. package/dist/components/marketing/sections/IconGridSection.d.ts.map +1 -1
  97. package/dist/components/marketing/sections/IconGridSection.js +55 -41
  98. package/dist/components/marketing/sections/OutputsSection.d.ts +1 -6
  99. package/dist/components/marketing/sections/OutputsSection.d.ts.map +1 -1
  100. package/dist/components/marketing/sections/OutputsSection.js +107 -55
  101. package/dist/components/marketing/sections/ProblemSection.d.ts +1 -6
  102. package/dist/components/marketing/sections/ProblemSection.d.ts.map +1 -1
  103. package/dist/components/marketing/sections/ProblemSection.js +94 -42
  104. package/dist/components/marketing/sections/SolutionSection.d.ts +1 -6
  105. package/dist/components/marketing/sections/SolutionSection.d.ts.map +1 -1
  106. package/dist/components/marketing/sections/SolutionSection.js +94 -42
  107. package/dist/components/marketing/sections/StepsSection.d.ts +1 -6
  108. package/dist/components/marketing/sections/StepsSection.d.ts.map +1 -1
  109. package/dist/components/marketing/sections/StepsSection.js +100 -48
  110. package/dist/components/marketing/waitlist-section.d.ts +5 -12
  111. package/dist/components/marketing/waitlist-section.d.ts.map +1 -1
  112. package/dist/components/marketing/waitlist-section.js +1089 -568
  113. package/dist/components/templates/TemplatesClientPage.d.ts +1 -6
  114. package/dist/components/templates/TemplatesClientPage.d.ts.map +1 -1
  115. package/dist/components/templates/TemplatesClientPage.js +5649 -617
  116. package/dist/components/templates/TemplatesPage.d.ts +1 -6
  117. package/dist/components/templates/TemplatesPage.d.ts.map +1 -1
  118. package/dist/components/templates/TemplatesPage.js +163 -116
  119. package/dist/components/templates/TemplatesPreviewModal.d.ts +5 -12
  120. package/dist/components/templates/TemplatesPreviewModal.d.ts.map +1 -1
  121. package/dist/components/templates/TemplatesPreviewModal.js +113 -131
  122. package/dist/components/templates/index.d.ts +4 -4
  123. package/dist/components/templates/index.d.ts.map +1 -0
  124. package/dist/components/templates/index.js +5825 -4
  125. package/dist/index.d.ts +9 -29
  126. package/dist/index.d.ts.map +1 -0
  127. package/dist/index.js +6480 -28
  128. package/dist/libs/email/client.d.ts +9 -12
  129. package/dist/libs/email/client.d.ts.map +1 -1
  130. package/dist/libs/email/client.js +109 -105
  131. package/dist/libs/email/client.test.d.ts +2 -0
  132. package/dist/libs/email/client.test.d.ts.map +1 -0
  133. package/dist/libs/email/contact.d.ts +2 -6
  134. package/dist/libs/email/contact.d.ts.map +1 -1
  135. package/dist/libs/email/contact.js +155 -41
  136. package/dist/libs/email/newsletter.d.ts +2 -6
  137. package/dist/libs/email/newsletter.d.ts.map +1 -1
  138. package/dist/libs/email/newsletter.js +169 -54
  139. package/dist/libs/email/types.d.ts +48 -52
  140. package/dist/libs/email/types.d.ts.map +1 -1
  141. package/dist/libs/email/types.js +3 -1
  142. package/dist/libs/email/utils.d.ts +2 -5
  143. package/dist/libs/email/utils.d.ts.map +1 -1
  144. package/dist/libs/email/utils.js +10 -6
  145. package/dist/libs/email/waitlist-application.d.ts +2 -6
  146. package/dist/libs/email/waitlist-application.d.ts.map +1 -1
  147. package/dist/libs/email/waitlist-application.js +191 -71
  148. package/dist/libs/email/waitlist.d.ts +2 -6
  149. package/dist/libs/email/waitlist.d.ts.map +1 -1
  150. package/dist/libs/email/waitlist.js +171 -56
  151. package/dist/libs/pricing-examples.d.ts +13 -16
  152. package/dist/libs/pricing-examples.d.ts.map +1 -1
  153. package/dist/libs/pricing-examples.js +20 -20
  154. package/dist/node/components/marketing/ChangelogPage.js +87 -0
  155. package/dist/node/components/marketing/CofounderPage.js +576 -0
  156. package/dist/node/components/marketing/ContactClient.js +1374 -0
  157. package/dist/node/components/marketing/ContributePage.js +482 -0
  158. package/dist/node/components/marketing/DesignPartnerPage.js +267 -0
  159. package/dist/node/components/marketing/LandingPage.js +624 -0
  160. package/dist/node/components/marketing/PricingClient.js +1967 -0
  161. package/dist/node/components/marketing/ProductClientPage.js +558 -0
  162. package/dist/node/components/marketing/index.js +4813 -0
  163. package/dist/node/components/marketing/pricing-thinking-modal.js +253 -0
  164. package/dist/node/components/marketing/sections/AudienceSection.js +85 -0
  165. package/dist/node/components/marketing/sections/CorePositioningSection.js +67 -0
  166. package/dist/node/components/marketing/sections/CtaSection.js +62 -0
  167. package/dist/node/components/marketing/sections/DevelopersSection.js +45 -0
  168. package/dist/node/components/marketing/sections/FearsSection.js +100 -0
  169. package/dist/node/components/marketing/sections/HeroMarketingSection.js +88 -0
  170. package/dist/node/components/marketing/sections/IconGridSection.js +58 -0
  171. package/dist/node/components/marketing/sections/OutputsSection.js +111 -0
  172. package/dist/node/components/marketing/sections/ProblemSection.js +98 -0
  173. package/dist/node/components/marketing/sections/SolutionSection.js +98 -0
  174. package/dist/node/components/marketing/sections/StepsSection.js +104 -0
  175. package/dist/node/components/marketing/waitlist-section.js +1099 -0
  176. package/dist/node/components/templates/TemplatesClientPage.js +5657 -0
  177. package/dist/node/components/templates/TemplatesPage.js +172 -0
  178. package/dist/node/components/templates/TemplatesPreviewModal.js +119 -0
  179. package/dist/node/components/templates/index.js +5826 -0
  180. package/dist/node/index.js +6480 -0
  181. package/dist/node/libs/email/client.js +117 -0
  182. package/dist/node/libs/email/contact.js +185 -0
  183. package/dist/node/libs/email/newsletter.js +210 -0
  184. package/dist/node/libs/email/types.js +2 -0
  185. package/dist/node/libs/email/utils.js +11 -0
  186. package/dist/node/libs/email/waitlist-application.js +290 -0
  187. package/dist/node/libs/email/waitlist.js +220 -0
  188. package/dist/node/libs/pricing-examples.js +21 -0
  189. package/dist/node/registry/engine.js +5288 -0
  190. package/dist/node/registry/factory.js +47 -0
  191. package/dist/node/registry/index.js +5353 -0
  192. package/dist/node/registry/registry-docs.js +338 -0
  193. package/dist/node/registry/registry-landing.js +4932 -0
  194. package/dist/node/registry/registry.js +5274 -0
  195. package/dist/node/registry/types.js +0 -0
  196. package/dist/node/registry/utils.js +5335 -0
  197. package/dist/registry/engine.d.ts +4 -8
  198. package/dist/registry/engine.d.ts.map +1 -1
  199. package/dist/registry/engine.js +5287 -23
  200. package/dist/registry/factory.d.ts +30 -34
  201. package/dist/registry/factory.d.ts.map +1 -1
  202. package/dist/registry/factory.js +42 -56
  203. package/dist/registry/index.d.ts +8 -8
  204. package/dist/registry/index.d.ts.map +1 -0
  205. package/dist/registry/index.js +5353 -8
  206. package/dist/registry/registry-docs.d.ts +4 -8
  207. package/dist/registry/registry-docs.d.ts.map +1 -1
  208. package/dist/registry/registry-docs.js +242 -209
  209. package/dist/registry/registry-landing.d.ts +5 -9
  210. package/dist/registry/registry-landing.d.ts.map +1 -1
  211. package/dist/registry/registry-landing.js +4930 -93
  212. package/dist/registry/registry.d.ts +7 -11
  213. package/dist/registry/registry.d.ts.map +1 -1
  214. package/dist/registry/registry.js +5262 -49
  215. package/dist/registry/types.d.ts +6 -10
  216. package/dist/registry/types.d.ts.map +1 -1
  217. package/dist/registry/types.js +1 -0
  218. package/dist/registry/utils.d.ts +10 -14
  219. package/dist/registry/utils.d.ts.map +1 -1
  220. package/dist/registry/utils.js +5330 -49
  221. package/package.json +355 -73
  222. package/tsdown.config.js +1 -2
  223. package/.turbo/turbo-build$colon$types.log +0 -1
  224. package/.turbo/turbo-lint.log +0 -3
  225. package/dist/components/marketing/ChangelogPage.js.map +0 -1
  226. package/dist/components/marketing/CofounderPage.js.map +0 -1
  227. package/dist/components/marketing/ContactClient.js.map +0 -1
  228. package/dist/components/marketing/ContributePage.js.map +0 -1
  229. package/dist/components/marketing/DesignPartnerPage.js.map +0 -1
  230. package/dist/components/marketing/LandingPage.js.map +0 -1
  231. package/dist/components/marketing/PricingClient.js.map +0 -1
  232. package/dist/components/marketing/ProductClientPage.js.map +0 -1
  233. package/dist/components/marketing/pricing-thinking-modal.js.map +0 -1
  234. package/dist/components/marketing/sections/AudienceSection.js.map +0 -1
  235. package/dist/components/marketing/sections/CorePositioningSection.js.map +0 -1
  236. package/dist/components/marketing/sections/CtaSection.js.map +0 -1
  237. package/dist/components/marketing/sections/DevelopersSection.js.map +0 -1
  238. package/dist/components/marketing/sections/FearsSection.js.map +0 -1
  239. package/dist/components/marketing/sections/HeroMarketingSection.js.map +0 -1
  240. package/dist/components/marketing/sections/IconGridSection.js.map +0 -1
  241. package/dist/components/marketing/sections/OutputsSection.js.map +0 -1
  242. package/dist/components/marketing/sections/ProblemSection.js.map +0 -1
  243. package/dist/components/marketing/sections/SolutionSection.js.map +0 -1
  244. package/dist/components/marketing/sections/StepsSection.js.map +0 -1
  245. package/dist/components/marketing/waitlist-section.js.map +0 -1
  246. package/dist/components/templates/TemplatesClientPage.js.map +0 -1
  247. package/dist/components/templates/TemplatesPage.js.map +0 -1
  248. package/dist/components/templates/TemplatesPreviewModal.js.map +0 -1
  249. package/dist/libs/email/client.js.map +0 -1
  250. package/dist/libs/email/contact.js.map +0 -1
  251. package/dist/libs/email/newsletter.js.map +0 -1
  252. package/dist/libs/email/utils.js.map +0 -1
  253. package/dist/libs/email/waitlist-application.js.map +0 -1
  254. package/dist/libs/email/waitlist.js.map +0 -1
  255. package/dist/libs/pricing-examples.js.map +0 -1
  256. package/dist/registry/engine.js.map +0 -1
  257. package/dist/registry/factory.js.map +0 -1
  258. package/dist/registry/registry-docs.js.map +0 -1
  259. package/dist/registry/registry-landing.js.map +0 -1
  260. package/dist/registry/registry.js.map +0 -1
  261. package/dist/registry/utils.js.map +0 -1
  262. package/tsconfig.tsbuildinfo +0 -1
@@ -1,175 +1,146 @@
1
-
2
- $ bun build:types && bun build:bundle
3
- $ tsc --noEmit
4
- $ tsdown
5
- ℹ tsdown v0.20.3 powered by rolldown v1.0.0-rc.3
6
- ℹ config file: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/marketing/tsdown.config.js (unrun)
7
- ℹ entry: src/index.ts, src/libs/pricing-examples.ts, src/registry/engine.ts, src/registry/factory.ts, src/registry/index.ts, src/registry/registry-docs.ts, src/registry/registry-landing.ts, src/registry/registry.ts, src/registry/types.ts, src/registry/utils.ts, src/components/marketing/ChangelogPage.tsx, src/components/marketing/CofounderPage.tsx, src/components/marketing/ContactClient.tsx, src/components/marketing/ContributePage.tsx, src/components/marketing/DesignPartnerPage.tsx, src/components/marketing/LandingPage.tsx, src/components/marketing/PricingClient.tsx, src/components/marketing/ProductClientPage.tsx, src/components/marketing/index.ts, src/components/marketing/pricing-thinking-modal.tsx, src/components/marketing/waitlist-section.tsx, src/components/templates/TemplatesClientPage.tsx, src/components/templates/TemplatesPage.tsx, src/components/templates/TemplatesPreviewModal.tsx, src/components/templates/index.ts, src/libs/email/client.ts, src/libs/email/contact.ts, src/libs/email/newsletter.ts, src/libs/email/types.ts, src/libs/email/utils.ts, src/libs/email/waitlist-application.ts, src/libs/email/waitlist.ts, src/components/marketing/sections/AudienceSection.tsx, src/components/marketing/sections/CorePositioningSection.tsx, src/components/marketing/sections/CtaSection.tsx, src/components/marketing/sections/DevelopersSection.tsx, src/components/marketing/sections/FearsSection.tsx, src/components/marketing/sections/HeroMarketingSection.tsx, src/components/marketing/sections/IconGridSection.tsx, src/components/marketing/sections/OutputsSection.tsx, src/components/marketing/sections/ProblemSection.tsx, src/components/marketing/sections/SolutionSection.tsx, src/components/marketing/sections/StepsSection.tsx
8
- ℹ target: esnext
9
- ℹ tsconfig: tsconfig.json
10
- ℹ Build start
11
- ℹ Cleaning 169 files
12
- ℹ dist/registry/registry-docs.js 27.38 kB │ gzip: 3.94 kB
13
- ℹ dist/components/templates/TemplatesClientPage.js 25.55 kB │ gzip: 5.49 kB
14
- ℹ dist/components/marketing/waitlist-section.js 22.40 kB │ gzip: 4.03 kB
15
- ℹ dist/components/marketing/PricingClient.js 20.90 kB │ gzip: 3.77 kB
16
- ℹ dist/components/marketing/ProductClientPage.js 17.11 kB │ gzip: 3.37 kB
17
- ℹ dist/components/marketing/CofounderPage.js 14.81 kB │ gzip: 3.60 kB
18
- ℹ dist/components/marketing/ContributePage.js 14.21 kB │ gzip: 2.94 kB
19
- ℹ dist/components/marketing/DesignPartnerPage.js  8.70 kB │ gzip: 2.02 kB
20
- ℹ dist/components/marketing/pricing-thinking-modal.js  7.83 kB │ gzip: 2.28 kB
21
- ℹ dist/libs/email/waitlist-application.js  7.55 kB │ gzip: 2.16 kB
22
- ℹ dist/components/templates/TemplatesPreviewModal.js  6.12 kB │ gzip: 1.43 kB
23
- ℹ dist/components/marketing/ContactClient.js  5.84 kB │ gzip: 1.66 kB
24
- ℹ dist/components/templates/TemplatesPage.js  4.15 kB │ gzip: 1.24 kB
25
- ℹ dist/libs/email/waitlist.js  3.88 kB │ gzip: 1.38 kB
26
- ℹ dist/libs/email/newsletter.js  3.29 kB │ gzip: 1.24 kB
27
- ℹ dist/registry/registry-landing.js  3.25 kB │ gzip: 0.95 kB
28
- ℹ dist/libs/email/client.js  3.24 kB │ gzip: 1.19 kB
29
- ℹ dist/index.js  2.88 kB │ gzip: 0.67 kB
30
- ℹ dist/components/marketing/sections/AudienceSection.js  2.83 kB │ gzip: 1.19 kB
31
- ℹ dist/components/marketing/sections/HeroMarketingSection.js  2.77 kB │ gzip: 1.09 kB
32
- ℹ dist/components/marketing/ChangelogPage.js  2.63 kB │ gzip: 0.90 kB
33
- ℹ dist/libs/email/contact.js  2.62 kB │ gzip: 1.08 kB
34
- ℹ dist/registry/registry.js  2.13 kB │ gzip: 0.77 kB
35
- ℹ dist/registry/utils.js  1.86 kB │ gzip: 0.74 kB
36
- ℹ dist/registry/factory.js  1.86 kB │ gzip: 0.85 kB
37
- ℹ dist/components/marketing/sections/CorePositioningSection.js  1.83 kB │ gzip: 0.76 kB
38
- ℹ dist/components/marketing/sections/CtaSection.js  1.82 kB │ gzip: 0.78 kB
39
- ℹ dist/components/marketing/sections/FearsSection.js  1.74 kB │ gzip: 0.92 kB
40
- ℹ dist/components/marketing/sections/SolutionSection.js  1.58 kB │ gzip: 0.79 kB
41
- ℹ dist/components/marketing/sections/OutputsSection.js  1.53 kB │ gzip: 0.76 kB
42
- ℹ dist/components/marketing/sections/ProblemSection.js  1.53 kB │ gzip: 0.78 kB
43
- ℹ dist/components/marketing/LandingPage.js  1.48 kB │ gzip: 0.46 kB
44
- ℹ dist/components/marketing/sections/StepsSection.js  1.45 kB │ gzip: 0.75 kB
45
- ℹ dist/components/marketing/sections/IconGridSection.js  1.45 kB │ gzip: 0.65 kB
46
- ℹ dist/components/marketing/sections/DevelopersSection.js  1.22 kB │ gzip: 0.69 kB
47
- ℹ dist/registry/index.js  1.12 kB │ gzip: 0.33 kB
48
- ℹ dist/registry/engine.js  0.93 kB │ gzip: 0.42 kB
49
- ℹ dist/components/marketing/index.js  0.73 kB │ gzip: 0.23 kB
50
- ℹ dist/libs/pricing-examples.js  0.55 kB │ gzip: 0.36 kB
51
- ℹ dist/libs/email/utils.js  0.32 kB │ gzip: 0.20 kB
52
- ℹ dist/components/templates/index.js  0.26 kB │ gzip: 0.12 kB
53
- ℹ dist/libs/email/types.js  0.01 kB │ gzip: 0.03 kB
54
- ℹ dist/registry/types.js  0.00 kB │ gzip: 0.02 kB
55
- ℹ dist/components/templates/TemplatesClientPage.js.map 36.08 kB │ gzip: 7.76 kB
56
- ℹ dist/registry/registry-docs.js.map 35.15 kB │ gzip: 5.04 kB
57
- ℹ dist/components/marketing/waitlist-section.js.map 31.20 kB │ gzip: 6.33 kB
58
- ℹ dist/components/marketing/PricingClient.js.map 23.82 kB │ gzip: 4.89 kB
59
- ℹ dist/components/marketing/ProductClientPage.js.map 19.84 kB │ gzip: 4.20 kB
60
- ℹ dist/components/marketing/CofounderPage.js.map 18.51 kB │ gzip: 5.00 kB
61
- ℹ dist/components/marketing/ContributePage.js.map 16.12 kB │ gzip: 3.75 kB
62
- ℹ dist/components/templates/TemplatesPreviewModal.js.map 10.62 kB │ gzip: 2.46 kB
63
- ℹ dist/components/marketing/pricing-thinking-modal.js.map 10.37 kB │ gzip: 3.17 kB
64
- ℹ dist/libs/email/waitlist-application.js.map 10.29 kB │ gzip: 2.93 kB
65
- ℹ dist/components/marketing/DesignPartnerPage.js.map  9.59 kB │ gzip: 2.52 kB
66
- ℹ dist/components/marketing/ContactClient.js.map  8.11 kB │ gzip: 2.52 kB
67
- ℹ dist/components/templates/TemplatesPage.js.map  6.12 kB │ gzip: 1.97 kB
68
- ℹ dist/libs/email/client.js.map  5.96 kB │ gzip: 2.04 kB
69
- ℹ dist/libs/email/waitlist.js.map  5.16 kB │ gzip: 1.80 kB
70
- ℹ dist/components/marketing/ChangelogPage.js.map  4.67 kB │ gzip: 1.60 kB
71
- ℹ dist/registry/registry-landing.js.map  4.58 kB │ gzip: 1.23 kB
72
- ℹ dist/libs/email/newsletter.js.map  4.53 kB │ gzip: 1.66 kB
73
- ℹ dist/libs/email/contact.js.map  3.80 kB │ gzip: 1.52 kB
74
- ℹ dist/registry/factory.js.map  3.78 kB │ gzip: 1.51 kB
75
- ℹ dist/registry/utils.js.map  3.58 kB │ gzip: 1.31 kB
76
- ℹ dist/components/marketing/sections/HeroMarketingSection.js.map  3.56 kB │ gzip: 1.44 kB
77
- ℹ dist/components/marketing/sections/AudienceSection.js.map  3.51 kB │ gzip: 1.45 kB
78
- ℹ dist/registry/registry.js.map  3.22 kB │ gzip: 1.18 kB
79
- ℹ dist/components/marketing/sections/IconGridSection.js.map  3.04 kB │ gzip: 1.18 kB
80
- ℹ dist/components/marketing/sections/CtaSection.js.map  2.44 kB │ gzip: 1.00 kB
81
- ℹ dist/components/marketing/sections/FearsSection.js.map  2.25 kB │ gzip: 1.08 kB
82
- ℹ dist/components/marketing/sections/OutputsSection.js.map  2.16 kB │ gzip: 0.94 kB
83
- ℹ dist/components/marketing/sections/CorePositioningSection.js.map  2.10 kB │ gzip: 0.96 kB
84
- ℹ dist/components/marketing/sections/SolutionSection.js.map  2.08 kB │ gzip: 0.93 kB
85
- ℹ dist/components/marketing/sections/StepsSection.js.map  2.06 kB │ gzip: 0.96 kB
86
- ℹ dist/components/marketing/sections/ProblemSection.js.map  2.03 kB │ gzip: 0.93 kB
87
- ℹ dist/components/marketing/sections/DevelopersSection.js.map  1.52 kB │ gzip: 0.83 kB
88
- ℹ dist/components/marketing/LandingPage.js.map  1.50 kB │ gzip: 0.53 kB
89
- ℹ dist/registry/engine.js.map  1.48 kB │ gzip: 0.65 kB
90
- ℹ dist/libs/pricing-examples.js.map  0.77 kB │ gzip: 0.47 kB
91
- ℹ dist/components/marketing/sections/IconGridSection.d.ts.map  0.68 kB │ gzip: 0.32 kB
92
- ℹ dist/libs/email/types.d.ts.map  0.63 kB │ gzip: 0.23 kB
93
- ℹ dist/libs/email/utils.js.map  0.53 kB │ gzip: 0.31 kB
94
- ℹ dist/registry/factory.d.ts.map  0.51 kB │ gzip: 0.30 kB
95
- ℹ dist/registry/utils.d.ts.map  0.37 kB │ gzip: 0.23 kB
96
- ℹ dist/libs/email/client.d.ts.map  0.34 kB │ gzip: 0.23 kB
97
- ℹ dist/components/marketing/ChangelogPage.d.ts.map  0.33 kB │ gzip: 0.21 kB
98
- ℹ dist/components/marketing/pricing-thinking-modal.d.ts.map  0.30 kB │ gzip: 0.20 kB
99
- ℹ dist/components/templates/TemplatesPreviewModal.d.ts.map  0.28 kB │ gzip: 0.20 kB
100
- ℹ dist/registry/registry.d.ts.map  0.28 kB │ gzip: 0.19 kB
101
- ℹ dist/components/marketing/waitlist-section.d.ts.map  0.27 kB │ gzip: 0.19 kB
102
- ℹ dist/components/marketing/DesignPartnerPage.d.ts.map  0.22 kB │ gzip: 0.17 kB
103
- ℹ dist/components/marketing/sections/CorePositioningSection.d.ts.map  0.21 kB │ gzip: 0.16 kB
104
- ℹ dist/components/marketing/sections/HeroMarketingSection.d.ts.map  0.21 kB │ gzip: 0.16 kB
105
- ℹ dist/registry/registry-landing.d.ts.map  0.21 kB │ gzip: 0.16 kB
106
- ℹ dist/components/marketing/ContributePage.d.ts.map  0.21 kB │ gzip: 0.17 kB
107
- ℹ dist/components/marketing/sections/DevelopersSection.d.ts.map  0.20 kB │ gzip: 0.16 kB
108
- ℹ dist/registry/types.d.ts.map  0.20 kB │ gzip: 0.17 kB
109
- ℹ dist/components/marketing/sections/AudienceSection.d.ts.map  0.20 kB │ gzip: 0.16 kB
110
- ℹ dist/components/marketing/sections/SolutionSection.d.ts.map  0.20 kB │ gzip: 0.16 kB
111
- ℹ dist/components/marketing/sections/OutputsSection.d.ts.map  0.20 kB │ gzip: 0.16 kB
112
- ℹ dist/components/marketing/sections/ProblemSection.d.ts.map  0.20 kB │ gzip: 0.16 kB
113
- ℹ dist/components/marketing/sections/FearsSection.d.ts.map  0.19 kB │ gzip: 0.16 kB
114
- ℹ dist/components/marketing/sections/StepsSection.d.ts.map  0.19 kB │ gzip: 0.16 kB
115
- ℹ dist/libs/email/waitlist-application.d.ts.map  0.19 kB │ gzip: 0.16 kB
116
- ℹ dist/components/marketing/sections/CtaSection.d.ts.map  0.19 kB │ gzip: 0.15 kB
117
- ℹ dist/components/templates/TemplatesClientPage.d.ts.map  0.19 kB │ gzip: 0.15 kB
118
- ℹ dist/components/marketing/ProductClientPage.d.ts.map  0.19 kB │ gzip: 0.15 kB
119
- ℹ dist/registry/engine.d.ts.map  0.19 kB │ gzip: 0.16 kB
120
- ℹ dist/components/templates/TemplatesPage.d.ts.map  0.18 kB │ gzip: 0.15 kB
121
- ℹ dist/components/marketing/CofounderPage.d.ts.map  0.18 kB │ gzip: 0.15 kB
122
- ℹ dist/components/marketing/ContactClient.d.ts.map  0.18 kB │ gzip: 0.15 kB
123
- ℹ dist/components/marketing/PricingClient.d.ts.map  0.18 kB │ gzip: 0.15 kB
124
- ℹ dist/components/marketing/LandingPage.d.ts.map  0.18 kB │ gzip: 0.15 kB
125
- ℹ dist/registry/registry-docs.d.ts.map  0.18 kB │ gzip: 0.15 kB
126
- ℹ dist/libs/email/newsletter.d.ts.map  0.17 kB │ gzip: 0.15 kB
127
- ℹ dist/libs/email/waitlist.d.ts.map  0.16 kB │ gzip: 0.15 kB
128
- ℹ dist/libs/email/contact.d.ts.map  0.16 kB │ gzip: 0.15 kB
129
- ℹ dist/libs/email/utils.d.ts.map  0.15 kB │ gzip: 0.14 kB
130
- ℹ dist/libs/pricing-examples.d.ts.map  0.14 kB │ gzip: 0.13 kB
131
- ℹ dist/index.d.ts  3.36 kB │ gzip: 0.73 kB
132
- ℹ dist/registry/factory.d.ts  2.43 kB │ gzip: 1.01 kB
133
- ℹ dist/components/marketing/sections/IconGridSection.d.ts  1.44 kB │ gzip: 0.61 kB
134
- ℹ dist/registry/index.d.ts  1.32 kB │ gzip: 0.36 kB
135
- ℹ dist/libs/email/types.d.ts  1.23 kB │ gzip: 0.44 kB
136
- ℹ dist/registry/utils.d.ts  1.16 kB │ gzip: 0.50 kB
137
- ℹ dist/registry/registry.d.ts  1.08 kB │ gzip: 0.45 kB
138
- ℹ dist/components/marketing/index.d.ts  0.73 kB │ gzip: 0.23 kB
139
- ℹ dist/libs/email/client.d.ts  0.70 kB │ gzip: 0.36 kB
140
- ℹ dist/libs/pricing-examples.d.ts  0.67 kB │ gzip: 0.37 kB
141
- ℹ dist/registry/registry-landing.d.ts  0.67 kB │ gzip: 0.28 kB
142
- ℹ dist/registry/engine.d.ts  0.66 kB │ gzip: 0.34 kB
143
- ℹ dist/components/marketing/ChangelogPage.d.ts  0.52 kB │ gzip: 0.29 kB
144
- ℹ dist/registry/types.d.ts  0.51 kB │ gzip: 0.29 kB
145
- ℹ dist/components/templates/TemplatesPreviewModal.d.ts  0.51 kB │ gzip: 0.28 kB
146
- ℹ dist/registry/registry-docs.d.ts  0.50 kB │ gzip: 0.25 kB
147
- ℹ dist/components/marketing/pricing-thinking-modal.d.ts  0.49 kB │ gzip: 0.28 kB
148
- ℹ dist/components/marketing/waitlist-section.d.ts  0.44 kB │ gzip: 0.27 kB
149
- ℹ dist/components/marketing/DesignPartnerPage.d.ts  0.35 kB │ gzip: 0.22 kB
150
- ℹ dist/components/marketing/ContributePage.d.ts  0.34 kB │ gzip: 0.22 kB
151
- ℹ dist/libs/email/waitlist-application.d.ts  0.32 kB │ gzip: 0.20 kB
152
- ℹ dist/components/marketing/sections/CorePositioningSection.d.ts  0.30 kB │ gzip: 0.19 kB
153
- ℹ dist/components/marketing/sections/HeroMarketingSection.d.ts  0.30 kB │ gzip: 0.19 kB
154
- ℹ dist/components/marketing/sections/DevelopersSection.d.ts  0.28 kB │ gzip: 0.19 kB
155
- ℹ dist/components/templates/TemplatesPage.d.ts  0.28 kB │ gzip: 0.19 kB
156
- ℹ dist/components/marketing/ProductClientPage.d.ts  0.28 kB │ gzip: 0.19 kB
157
- ℹ dist/components/marketing/sections/AudienceSection.d.ts  0.28 kB │ gzip: 0.19 kB
158
- ℹ dist/components/marketing/sections/SolutionSection.d.ts  0.28 kB │ gzip: 0.19 kB
159
- ℹ dist/libs/email/newsletter.d.ts  0.28 kB │ gzip: 0.19 kB
160
- ℹ dist/components/marketing/sections/OutputsSection.d.ts  0.27 kB │ gzip: 0.19 kB
161
- ℹ dist/components/marketing/sections/ProblemSection.d.ts  0.27 kB │ gzip: 0.19 kB
162
- ℹ dist/components/templates/TemplatesClientPage.d.ts  0.27 kB │ gzip: 0.19 kB
163
- ℹ dist/components/marketing/sections/FearsSection.d.ts  0.27 kB │ gzip: 0.19 kB
164
- ℹ dist/components/marketing/sections/StepsSection.d.ts  0.27 kB │ gzip: 0.19 kB
165
- ℹ dist/libs/email/contact.d.ts  0.26 kB │ gzip: 0.19 kB
166
- ℹ dist/components/marketing/CofounderPage.d.ts  0.26 kB │ gzip: 0.19 kB
167
- ℹ dist/components/marketing/ContactClient.d.ts  0.26 kB │ gzip: 0.18 kB
168
- ℹ dist/components/marketing/PricingClient.d.ts  0.26 kB │ gzip: 0.19 kB
169
- ℹ dist/components/marketing/sections/CtaSection.d.ts  0.26 kB │ gzip: 0.19 kB
170
- ℹ dist/components/templates/index.d.ts  0.26 kB │ gzip: 0.12 kB
171
- ℹ dist/components/marketing/LandingPage.d.ts  0.25 kB │ gzip: 0.18 kB
172
- ℹ dist/libs/email/waitlist.d.ts  0.25 kB │ gzip: 0.18 kB
173
- ℹ dist/libs/email/utils.d.ts  0.24 kB │ gzip: 0.16 kB
174
- ℹ 162 files, total: 576.29 kB
175
- ✔ Build complete in 2749ms
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
+ };