@contractspec/bundle.marketing 3.0.0 → 3.2.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 +3 -3
- package/AGENTS.md +18 -15
- package/CHANGELOG.md +80 -0
- package/package.json +26 -26
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=43
|
|
6
|
-
Bundled 43 modules in
|
|
6
|
+
Bundled 43 modules in 28ms
|
|
7
7
|
|
|
8
8
|
components/marketing/ChangelogPage.js 4.28 KB (entry point)
|
|
9
9
|
./index.js 0.28 MB (entry point)
|
|
@@ -50,7 +50,7 @@ Bundled 43 modules in 34ms
|
|
|
50
50
|
components/marketing/ProductClientPage.js 26.64 KB (entry point)
|
|
51
51
|
|
|
52
52
|
[contractspec-bun-build] transpile target=node root=src entries=43
|
|
53
|
-
Bundled 43 modules in
|
|
53
|
+
Bundled 43 modules in 27ms
|
|
54
54
|
|
|
55
55
|
components/marketing/ChangelogPage.js 4.34 KB (entry point)
|
|
56
56
|
./index.js 0.28 MB (entry point)
|
|
@@ -97,7 +97,7 @@ Bundled 43 modules in 40ms
|
|
|
97
97
|
components/marketing/ProductClientPage.js 26.70 KB (entry point)
|
|
98
98
|
|
|
99
99
|
[contractspec-bun-build] transpile target=browser root=src entries=43
|
|
100
|
-
Bundled 43 modules in
|
|
100
|
+
Bundled 43 modules in 28ms
|
|
101
101
|
|
|
102
102
|
components/marketing/ChangelogPage.js 4.60 KB (entry point)
|
|
103
103
|
./index.js 0.28 MB (entry point)
|
package/AGENTS.md
CHANGED
|
@@ -1,36 +1,39 @@
|
|
|
1
|
-
# bundle.marketing
|
|
1
|
+
# AI Agent Guide — `@contractspec/bundle.marketing`
|
|
2
|
+
|
|
3
|
+
Scope: `packages/bundles/marketing/*`
|
|
2
4
|
|
|
3
5
|
Marketing bundle with docs, email templates, and landing page components.
|
|
4
6
|
|
|
5
7
|
## Quick Context
|
|
6
8
|
|
|
7
|
-
- **
|
|
9
|
+
- **Layer**: bundle
|
|
8
10
|
- **Consumers**: `app.web-landing`
|
|
11
|
+
- **Dependencies**: `bundle.library`, `lib.email`
|
|
9
12
|
|
|
10
|
-
##
|
|
13
|
+
## Architecture
|
|
11
14
|
|
|
12
15
|
- `src/components/docs/` — Documentation pages
|
|
13
16
|
- `src/components/marketing/` — Landing page sections
|
|
14
17
|
- `src/components/templates/` — Template preview
|
|
15
18
|
- `src/libs/email/` — Email templates and utilities
|
|
16
19
|
|
|
17
|
-
## Exports
|
|
20
|
+
## Public Exports
|
|
18
21
|
|
|
19
22
|
Use subpath imports:
|
|
23
|
+
|
|
20
24
|
```typescript
|
|
21
|
-
import { LandingPage } from
|
|
22
|
-
import { DocsIndexPage } from
|
|
25
|
+
import { LandingPage } from "@contractspec/bundle.marketing/components/marketing";
|
|
26
|
+
import { DocsIndexPage } from "@contractspec/bundle.marketing/components/docs";
|
|
23
27
|
```
|
|
24
28
|
|
|
25
|
-
##
|
|
29
|
+
## Guardrails
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
bun lint # Lint code
|
|
31
|
-
```
|
|
31
|
+
- Landing page sections are composed by `app.web-landing` — keep component props stable.
|
|
32
|
+
- Email templates must render correctly in major email clients; test with Litmus or equivalent.
|
|
33
|
+
- Do not import from other bundles except through shared lib interfaces.
|
|
32
34
|
|
|
33
|
-
##
|
|
35
|
+
## Local Commands
|
|
34
36
|
|
|
35
|
-
- `
|
|
36
|
-
- `
|
|
37
|
+
- Build: `bun run build`
|
|
38
|
+
- Types: `bun run build:types`
|
|
39
|
+
- Lint: `bun run lint`
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,85 @@
|
|
|
1
1
|
# @contractspec/bundle.marketing
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a281fc5: fix: missing dependencies
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [a281fc5]
|
|
12
|
+
- @contractspec/lib.contracts-runtime-client-react@3.2.0
|
|
13
|
+
- @contractspec/example.analytics-dashboard@3.2.0
|
|
14
|
+
- @contractspec/example.saas-boilerplate@3.2.0
|
|
15
|
+
- @contractspec/example.integration-hub@3.2.0
|
|
16
|
+
- @contractspec/example.workflow-system@3.2.0
|
|
17
|
+
- @contractspec/example.agent-console@3.2.0
|
|
18
|
+
- @contractspec/lib.example-shared-ui@3.2.0
|
|
19
|
+
- @contractspec/example.crm-pipeline@3.2.0
|
|
20
|
+
- @contractspec/example.marketplace@3.2.0
|
|
21
|
+
- @contractspec/lib.runtime-sandbox@2.2.0
|
|
22
|
+
- @contractspec/lib.contracts-spec@3.2.0
|
|
23
|
+
- @contractspec/lib.design-system@3.2.0
|
|
24
|
+
- @contractspec/lib.ui-kit-core@3.2.0
|
|
25
|
+
- @contractspec/module.examples@3.2.0
|
|
26
|
+
- @contractspec/bundle.library@3.2.0
|
|
27
|
+
- @contractspec/lib.ui-kit-web@3.2.0
|
|
28
|
+
- @contractspec/lib.ui-link@3.2.0
|
|
29
|
+
- @contractspec/lib.logger@3.2.0
|
|
30
|
+
- @contractspec/lib.email@3.2.0
|
|
31
|
+
|
|
32
|
+
## 3.1.1
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- Updated dependencies [02c0cc5]
|
|
37
|
+
- Updated dependencies [f1a249b]
|
|
38
|
+
- @contractspec/lib.contracts-spec@3.1.1
|
|
39
|
+
- @contractspec/lib.design-system@3.1.1
|
|
40
|
+
- @contractspec/bundle.library@3.1.1
|
|
41
|
+
- @contractspec/example.analytics-dashboard@3.1.1
|
|
42
|
+
- @contractspec/example.agent-console@3.1.1
|
|
43
|
+
- @contractspec/example.crm-pipeline@3.1.1
|
|
44
|
+
- @contractspec/example.integration-hub@3.1.1
|
|
45
|
+
- @contractspec/example.marketplace@3.1.1
|
|
46
|
+
- @contractspec/example.saas-boilerplate@3.1.1
|
|
47
|
+
- @contractspec/example.workflow-system@3.1.1
|
|
48
|
+
- @contractspec/lib.contracts-runtime-client-react@3.1.1
|
|
49
|
+
- @contractspec/lib.example-shared-ui@3.1.1
|
|
50
|
+
- @contractspec/module.examples@3.1.1
|
|
51
|
+
|
|
52
|
+
## 3.1.0
|
|
53
|
+
|
|
54
|
+
### Minor Changes
|
|
55
|
+
|
|
56
|
+
- 28987eb: chore: upgrade dependencies
|
|
57
|
+
|
|
58
|
+
### Patch Changes
|
|
59
|
+
|
|
60
|
+
- Updated dependencies [f2a4faf]
|
|
61
|
+
- Updated dependencies [28987eb]
|
|
62
|
+
- Updated dependencies [28987eb]
|
|
63
|
+
- @contractspec/lib.contracts-spec@3.1.0
|
|
64
|
+
- @contractspec/lib.contracts-runtime-client-react@3.1.0
|
|
65
|
+
- @contractspec/example.analytics-dashboard@3.1.0
|
|
66
|
+
- @contractspec/example.saas-boilerplate@3.1.0
|
|
67
|
+
- @contractspec/example.integration-hub@3.1.0
|
|
68
|
+
- @contractspec/example.workflow-system@3.1.0
|
|
69
|
+
- @contractspec/example.agent-console@3.1.0
|
|
70
|
+
- @contractspec/lib.example-shared-ui@3.1.0
|
|
71
|
+
- @contractspec/example.crm-pipeline@3.1.0
|
|
72
|
+
- @contractspec/example.marketplace@3.1.0
|
|
73
|
+
- @contractspec/lib.runtime-sandbox@2.1.0
|
|
74
|
+
- @contractspec/lib.design-system@3.1.0
|
|
75
|
+
- @contractspec/lib.ui-kit-core@3.1.0
|
|
76
|
+
- @contractspec/module.examples@3.1.0
|
|
77
|
+
- @contractspec/bundle.library@3.1.0
|
|
78
|
+
- @contractspec/lib.ui-kit-web@3.1.0
|
|
79
|
+
- @contractspec/lib.ui-link@3.1.0
|
|
80
|
+
- @contractspec/lib.logger@3.1.0
|
|
81
|
+
- @contractspec/lib.email@3.1.0
|
|
82
|
+
|
|
3
83
|
## 3.0.0
|
|
4
84
|
|
|
5
85
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/bundle.marketing",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf dist",
|
|
@@ -342,32 +342,32 @@
|
|
|
342
342
|
},
|
|
343
343
|
"types": "./dist/index.d.ts",
|
|
344
344
|
"dependencies": {
|
|
345
|
-
"@contractspec/bundle.library": "3.
|
|
346
|
-
"@contractspec/example.agent-console": "3.
|
|
347
|
-
"@contractspec/example.analytics-dashboard": "3.
|
|
348
|
-
"@contractspec/example.crm-pipeline": "3.
|
|
349
|
-
"@contractspec/example.integration-hub": "3.
|
|
350
|
-
"@contractspec/example.marketplace": "3.
|
|
351
|
-
"@contractspec/example.saas-boilerplate": "3.
|
|
352
|
-
"@contractspec/example.workflow-system": "3.
|
|
353
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
354
|
-
"@contractspec/lib.contracts-runtime-client-react": "3.
|
|
355
|
-
"@contractspec/lib.design-system": "3.
|
|
356
|
-
"@contractspec/lib.email": "3.
|
|
357
|
-
"@contractspec/lib.example-shared-ui": "3.
|
|
358
|
-
"@contractspec/lib.logger": "3.
|
|
359
|
-
"@contractspec/lib.runtime-sandbox": "2.
|
|
360
|
-
"@contractspec/lib.ui-kit-core": "3.
|
|
361
|
-
"@contractspec/lib.ui-kit-web": "3.
|
|
362
|
-
"@contractspec/lib.ui-link": "3.
|
|
363
|
-
"@contractspec/module.examples": "3.
|
|
345
|
+
"@contractspec/bundle.library": "3.2.0",
|
|
346
|
+
"@contractspec/example.agent-console": "3.2.0",
|
|
347
|
+
"@contractspec/example.analytics-dashboard": "3.2.0",
|
|
348
|
+
"@contractspec/example.crm-pipeline": "3.2.0",
|
|
349
|
+
"@contractspec/example.integration-hub": "3.2.0",
|
|
350
|
+
"@contractspec/example.marketplace": "3.2.0",
|
|
351
|
+
"@contractspec/example.saas-boilerplate": "3.2.0",
|
|
352
|
+
"@contractspec/example.workflow-system": "3.2.0",
|
|
353
|
+
"@contractspec/lib.contracts-spec": "3.2.0",
|
|
354
|
+
"@contractspec/lib.contracts-runtime-client-react": "3.2.0",
|
|
355
|
+
"@contractspec/lib.design-system": "3.2.0",
|
|
356
|
+
"@contractspec/lib.email": "3.2.0",
|
|
357
|
+
"@contractspec/lib.example-shared-ui": "3.2.0",
|
|
358
|
+
"@contractspec/lib.logger": "3.2.0",
|
|
359
|
+
"@contractspec/lib.runtime-sandbox": "2.2.0",
|
|
360
|
+
"@contractspec/lib.ui-kit-core": "3.2.0",
|
|
361
|
+
"@contractspec/lib.ui-kit-web": "3.2.0",
|
|
362
|
+
"@contractspec/lib.ui-link": "3.2.0",
|
|
363
|
+
"@contractspec/module.examples": "3.2.0",
|
|
364
364
|
"@electric-sql/pglite": "^0.3.14",
|
|
365
365
|
"@hookform/resolvers": "^5.2.2",
|
|
366
|
-
"@scaleway/sdk": "^3.
|
|
367
|
-
"@scaleway/sdk-client": "^2.1
|
|
366
|
+
"@scaleway/sdk": "^3.3.1",
|
|
367
|
+
"@scaleway/sdk-client": "^2.2.1",
|
|
368
368
|
"class-variance-authority": "^0.7.1",
|
|
369
|
-
"framer-motion": "^12.
|
|
370
|
-
"lucide-react": "^0.
|
|
369
|
+
"framer-motion": "^12.35.0",
|
|
370
|
+
"lucide-react": "^0.577.0",
|
|
371
371
|
"next": "16.1.6",
|
|
372
372
|
"react": "19.2.4",
|
|
373
373
|
"react-hook-form": "^7.71.2",
|
|
@@ -375,9 +375,9 @@
|
|
|
375
375
|
},
|
|
376
376
|
"devDependencies": {
|
|
377
377
|
"@types/react": "~19.2.14",
|
|
378
|
-
"@contractspec/tool.typescript": "3.
|
|
378
|
+
"@contractspec/tool.typescript": "3.2.0",
|
|
379
379
|
"typescript": "^5.9.3",
|
|
380
|
-
"@contractspec/tool.bun": "3.
|
|
380
|
+
"@contractspec/tool.bun": "3.2.0"
|
|
381
381
|
},
|
|
382
382
|
"publishConfig": {
|
|
383
383
|
"access": "public",
|