@contractspec/bundle.marketing 1.13.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 +3 -3
- package/CHANGELOG.md +28 -0
- package/package.json +21 -21
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 36ms
|
|
7
7
|
|
|
8
8
|
components/marketing/ChangelogPage.js 4.28 KB (entry point)
|
|
9
9
|
./index.js 0.31 MB (entry point)
|
|
@@ -50,7 +50,7 @@ Bundled 43 modules in 25ms
|
|
|
50
50
|
components/marketing/ProductClientPage.js 26.63 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 29ms
|
|
54
54
|
|
|
55
55
|
components/marketing/ChangelogPage.js 4.34 KB (entry point)
|
|
56
56
|
./index.js 0.31 MB (entry point)
|
|
@@ -97,7 +97,7 @@ Bundled 43 modules in 42ms
|
|
|
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 24ms
|
|
101
101
|
|
|
102
102
|
components/marketing/ChangelogPage.js 4.60 KB (entry point)
|
|
103
103
|
./index.js 0.31 MB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
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
|
+
|
|
3
31
|
## 1.13.0
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/bundle.marketing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf dist",
|
|
@@ -66,24 +66,24 @@
|
|
|
66
66
|
},
|
|
67
67
|
"types": "./dist/index.d.ts",
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@contractspec/bundle.library": "1.
|
|
70
|
-
"@contractspec/example.agent-console": "1.
|
|
71
|
-
"@contractspec/example.analytics-dashboard": "1.
|
|
72
|
-
"@contractspec/example.crm-pipeline": "1.
|
|
73
|
-
"@contractspec/example.integration-hub": "1.
|
|
74
|
-
"@contractspec/example.marketplace": "1.
|
|
75
|
-
"@contractspec/example.saas-boilerplate": "1.
|
|
76
|
-
"@contractspec/example.workflow-system": "1.
|
|
77
|
-
"@contractspec/lib.contracts": "1.
|
|
78
|
-
"@contractspec/lib.design-system": "1.
|
|
79
|
-
"@contractspec/lib.email": "1.
|
|
80
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
81
|
-
"@contractspec/lib.logger": "1.
|
|
82
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
83
|
-
"@contractspec/lib.ui-kit-core": "1.
|
|
84
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
85
|
-
"@contractspec/lib.ui-link": "1.
|
|
86
|
-
"@contractspec/module.examples": "1.
|
|
69
|
+
"@contractspec/bundle.library": "1.14.0",
|
|
70
|
+
"@contractspec/example.agent-console": "1.59.0",
|
|
71
|
+
"@contractspec/example.analytics-dashboard": "1.59.0",
|
|
72
|
+
"@contractspec/example.crm-pipeline": "1.59.0",
|
|
73
|
+
"@contractspec/example.integration-hub": "1.59.0",
|
|
74
|
+
"@contractspec/example.marketplace": "1.59.0",
|
|
75
|
+
"@contractspec/example.saas-boilerplate": "1.59.0",
|
|
76
|
+
"@contractspec/example.workflow-system": "1.59.0",
|
|
77
|
+
"@contractspec/lib.contracts": "1.59.0",
|
|
78
|
+
"@contractspec/lib.design-system": "1.59.0",
|
|
79
|
+
"@contractspec/lib.email": "1.13.0",
|
|
80
|
+
"@contractspec/lib.example-shared-ui": "1.13.0",
|
|
81
|
+
"@contractspec/lib.logger": "1.59.0",
|
|
82
|
+
"@contractspec/lib.runtime-sandbox": "0.14.0",
|
|
83
|
+
"@contractspec/lib.ui-kit-core": "1.59.0",
|
|
84
|
+
"@contractspec/lib.ui-kit-web": "1.59.0",
|
|
85
|
+
"@contractspec/lib.ui-link": "1.59.0",
|
|
86
|
+
"@contractspec/module.examples": "1.59.0",
|
|
87
87
|
"@electric-sql/pglite": "^0.3.14",
|
|
88
88
|
"@hookform/resolvers": "^5.2.2",
|
|
89
89
|
"@scaleway/sdk": "^3.1.5",
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
100
|
"@types/react": "~19.2.13",
|
|
101
|
-
"@contractspec/tool.typescript": "1.
|
|
101
|
+
"@contractspec/tool.typescript": "1.59.0",
|
|
102
102
|
"typescript": "^5.9.3",
|
|
103
|
-
"@contractspec/tool.bun": "1.
|
|
103
|
+
"@contractspec/tool.bun": "1.58.0"
|
|
104
104
|
},
|
|
105
105
|
"publishConfig": {
|
|
106
106
|
"access": "public",
|