@contractspec/example.personalization 1.59.0 → 1.61.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 +30 -0
- package/package.json +72 -24
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=7
|
|
6
|
-
Bundled 7 modules in
|
|
6
|
+
Bundled 7 modules in 55ms
|
|
7
7
|
|
|
8
8
|
./behavior-tracking.js 1.33 KB (entry point)
|
|
9
9
|
./index.js 6.90 KB (entry point)
|
|
@@ -14,7 +14,7 @@ Bundled 7 modules in 47ms
|
|
|
14
14
|
./workflow-extension.js 1.58 KB (entry point)
|
|
15
15
|
|
|
16
16
|
[contractspec-bun-build] transpile target=node root=src entries=7
|
|
17
|
-
Bundled 7 modules in
|
|
17
|
+
Bundled 7 modules in 30ms
|
|
18
18
|
|
|
19
19
|
./behavior-tracking.js 1.32 KB (entry point)
|
|
20
20
|
./index.js 6.89 KB (entry point)
|
|
@@ -25,7 +25,7 @@ Bundled 7 modules in 24ms
|
|
|
25
25
|
./workflow-extension.js 1.58 KB (entry point)
|
|
26
26
|
|
|
27
27
|
[contractspec-bun-build] transpile target=browser root=src entries=7
|
|
28
|
-
Bundled 7 modules in
|
|
28
|
+
Bundled 7 modules in 42ms
|
|
29
29
|
|
|
30
30
|
./behavior-tracking.js 1.32 KB (entry point)
|
|
31
31
|
./index.js 6.89 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @contractspec/example.personalization
|
|
2
2
|
|
|
3
|
+
## 1.61.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 374fd71: fix: publishing
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [374fd71]
|
|
12
|
+
- @contractspec/lib.workflow-composer@1.61.0
|
|
13
|
+
- @contractspec/lib.personalization@1.61.0
|
|
14
|
+
- @contractspec/lib.overlay-engine@1.61.0
|
|
15
|
+
- @contractspec/lib.contracts@1.61.0
|
|
16
|
+
- @contractspec/lib.logger@1.61.0
|
|
17
|
+
|
|
18
|
+
## 1.60.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- fix: publish with bun
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @contractspec/lib.workflow-composer@1.60.0
|
|
28
|
+
- @contractspec/lib.personalization@1.60.0
|
|
29
|
+
- @contractspec/lib.overlay-engine@1.60.0
|
|
30
|
+
- @contractspec/lib.contracts@1.60.0
|
|
31
|
+
- @contractspec/lib.logger@1.60.0
|
|
32
|
+
|
|
3
33
|
## 1.59.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,66 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.personalization",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Personalization examples: behavior tracking, overlay customization, workflow extension.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
|
-
".":
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"bun": "./dist/index.js",
|
|
11
|
+
"node": "./dist/node/index.js",
|
|
12
|
+
"browser": "./dist/browser/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./behavior-tracking": {
|
|
16
|
+
"types": "./dist/behavior-tracking.d.ts",
|
|
17
|
+
"bun": "./dist/behavior-tracking.js",
|
|
18
|
+
"node": "./dist/node/behavior-tracking.js",
|
|
19
|
+
"browser": "./dist/browser/behavior-tracking.js",
|
|
20
|
+
"default": "./dist/behavior-tracking.js"
|
|
21
|
+
},
|
|
22
|
+
"./docs": {
|
|
23
|
+
"types": "./dist/docs/index.d.ts",
|
|
24
|
+
"bun": "./dist/docs/index.js",
|
|
25
|
+
"node": "./dist/node/docs/index.js",
|
|
26
|
+
"browser": "./dist/browser/docs/index.js",
|
|
27
|
+
"default": "./dist/docs/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./docs/index": {
|
|
30
|
+
"types": "./dist/docs/index.d.ts",
|
|
31
|
+
"bun": "./dist/docs/index.js",
|
|
32
|
+
"node": "./dist/node/docs/index.js",
|
|
33
|
+
"browser": "./dist/browser/docs/index.js",
|
|
34
|
+
"default": "./dist/docs/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./docs/personalization.docblock": {
|
|
37
|
+
"types": "./dist/docs/personalization.docblock.d.ts",
|
|
38
|
+
"bun": "./dist/docs/personalization.docblock.js",
|
|
39
|
+
"node": "./dist/node/docs/personalization.docblock.js",
|
|
40
|
+
"browser": "./dist/browser/docs/personalization.docblock.js",
|
|
41
|
+
"default": "./dist/docs/personalization.docblock.js"
|
|
42
|
+
},
|
|
43
|
+
"./example": {
|
|
44
|
+
"types": "./dist/example.d.ts",
|
|
45
|
+
"bun": "./dist/example.js",
|
|
46
|
+
"node": "./dist/node/example.js",
|
|
47
|
+
"browser": "./dist/browser/example.js",
|
|
48
|
+
"default": "./dist/example.js"
|
|
49
|
+
},
|
|
50
|
+
"./overlay-customization": {
|
|
51
|
+
"types": "./dist/overlay-customization.d.ts",
|
|
52
|
+
"bun": "./dist/overlay-customization.js",
|
|
53
|
+
"node": "./dist/node/overlay-customization.js",
|
|
54
|
+
"browser": "./dist/browser/overlay-customization.js",
|
|
55
|
+
"default": "./dist/overlay-customization.js"
|
|
56
|
+
},
|
|
57
|
+
"./workflow-extension": {
|
|
58
|
+
"types": "./dist/workflow-extension.d.ts",
|
|
59
|
+
"bun": "./dist/workflow-extension.js",
|
|
60
|
+
"node": "./dist/node/workflow-extension.js",
|
|
61
|
+
"browser": "./dist/browser/workflow-extension.js",
|
|
62
|
+
"default": "./dist/workflow-extension.js"
|
|
63
|
+
}
|
|
16
64
|
},
|
|
17
65
|
"scripts": {
|
|
18
66
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -30,16 +78,16 @@
|
|
|
30
78
|
"typecheck": "tsc --noEmit"
|
|
31
79
|
},
|
|
32
80
|
"dependencies": {
|
|
33
|
-
"@contractspec/lib.personalization": "1.
|
|
34
|
-
"@contractspec/lib.overlay-engine": "1.
|
|
35
|
-
"@contractspec/lib.workflow-composer": "1.
|
|
36
|
-
"@contractspec/lib.contracts": "1.
|
|
37
|
-
"@contractspec/lib.logger": "1.
|
|
81
|
+
"@contractspec/lib.personalization": "1.61.0",
|
|
82
|
+
"@contractspec/lib.overlay-engine": "1.61.0",
|
|
83
|
+
"@contractspec/lib.workflow-composer": "1.61.0",
|
|
84
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
85
|
+
"@contractspec/lib.logger": "1.61.0"
|
|
38
86
|
},
|
|
39
87
|
"devDependencies": {
|
|
40
|
-
"@contractspec/tool.typescript": "1.
|
|
88
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
41
89
|
"typescript": "^5.9.3",
|
|
42
|
-
"@contractspec/tool.bun": "1.
|
|
90
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
43
91
|
},
|
|
44
92
|
"publishConfig": {
|
|
45
93
|
"access": "public",
|
|
@@ -47,56 +95,56 @@
|
|
|
47
95
|
".": {
|
|
48
96
|
"types": "./dist/index.d.ts",
|
|
49
97
|
"bun": "./dist/index.js",
|
|
50
|
-
"node": "./dist/node/index.
|
|
98
|
+
"node": "./dist/node/index.js",
|
|
51
99
|
"browser": "./dist/browser/index.js",
|
|
52
100
|
"default": "./dist/index.js"
|
|
53
101
|
},
|
|
54
102
|
"./behavior-tracking": {
|
|
55
103
|
"types": "./dist/behavior-tracking.d.ts",
|
|
56
104
|
"bun": "./dist/behavior-tracking.js",
|
|
57
|
-
"node": "./dist/node/behavior-tracking.
|
|
105
|
+
"node": "./dist/node/behavior-tracking.js",
|
|
58
106
|
"browser": "./dist/browser/behavior-tracking.js",
|
|
59
107
|
"default": "./dist/behavior-tracking.js"
|
|
60
108
|
},
|
|
61
109
|
"./docs": {
|
|
62
110
|
"types": "./dist/docs/index.d.ts",
|
|
63
111
|
"bun": "./dist/docs/index.js",
|
|
64
|
-
"node": "./dist/node/docs/index.
|
|
112
|
+
"node": "./dist/node/docs/index.js",
|
|
65
113
|
"browser": "./dist/browser/docs/index.js",
|
|
66
114
|
"default": "./dist/docs/index.js"
|
|
67
115
|
},
|
|
68
116
|
"./docs/index": {
|
|
69
117
|
"types": "./dist/docs/index.d.ts",
|
|
70
118
|
"bun": "./dist/docs/index.js",
|
|
71
|
-
"node": "./dist/node/docs/index.
|
|
119
|
+
"node": "./dist/node/docs/index.js",
|
|
72
120
|
"browser": "./dist/browser/docs/index.js",
|
|
73
121
|
"default": "./dist/docs/index.js"
|
|
74
122
|
},
|
|
75
123
|
"./docs/personalization.docblock": {
|
|
76
124
|
"types": "./dist/docs/personalization.docblock.d.ts",
|
|
77
125
|
"bun": "./dist/docs/personalization.docblock.js",
|
|
78
|
-
"node": "./dist/node/docs/personalization.docblock.
|
|
126
|
+
"node": "./dist/node/docs/personalization.docblock.js",
|
|
79
127
|
"browser": "./dist/browser/docs/personalization.docblock.js",
|
|
80
128
|
"default": "./dist/docs/personalization.docblock.js"
|
|
81
129
|
},
|
|
82
130
|
"./example": {
|
|
83
131
|
"types": "./dist/example.d.ts",
|
|
84
132
|
"bun": "./dist/example.js",
|
|
85
|
-
"node": "./dist/node/example.
|
|
133
|
+
"node": "./dist/node/example.js",
|
|
86
134
|
"browser": "./dist/browser/example.js",
|
|
87
135
|
"default": "./dist/example.js"
|
|
88
136
|
},
|
|
89
137
|
"./overlay-customization": {
|
|
90
138
|
"types": "./dist/overlay-customization.d.ts",
|
|
91
139
|
"bun": "./dist/overlay-customization.js",
|
|
92
|
-
"node": "./dist/node/overlay-customization.
|
|
140
|
+
"node": "./dist/node/overlay-customization.js",
|
|
93
141
|
"browser": "./dist/browser/overlay-customization.js",
|
|
94
142
|
"default": "./dist/overlay-customization.js"
|
|
95
143
|
},
|
|
96
144
|
"./workflow-extension": {
|
|
97
145
|
"types": "./dist/workflow-extension.d.ts",
|
|
98
146
|
"bun": "./dist/workflow-extension.js",
|
|
99
|
-
"node": "./dist/node/workflow-extension.
|
|
147
|
+
"node": "./dist/node/workflow-extension.js",
|
|
100
148
|
"browser": "./dist/browser/workflow-extension.js",
|
|
101
149
|
"default": "./dist/workflow-extension.js"
|
|
102
150
|
}
|