@contractspec/example.personalization 1.58.0 → 1.60.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 +64 -16
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 37ms
|
|
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 5ms
|
|
|
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 20ms
|
|
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 19ms
|
|
|
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 23ms
|
|
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.60.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fix: publish with bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @contractspec/lib.workflow-composer@1.60.0
|
|
13
|
+
- @contractspec/lib.personalization@1.60.0
|
|
14
|
+
- @contractspec/lib.overlay-engine@1.60.0
|
|
15
|
+
- @contractspec/lib.contracts@1.60.0
|
|
16
|
+
- @contractspec/lib.logger@1.60.0
|
|
17
|
+
|
|
18
|
+
## 1.59.0
|
|
19
|
+
|
|
20
|
+
### Minor Changes
|
|
21
|
+
|
|
22
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [1a0cf44]
|
|
27
|
+
- @contractspec/lib.workflow-composer@1.59.0
|
|
28
|
+
- @contractspec/lib.personalization@1.59.0
|
|
29
|
+
- @contractspec/lib.overlay-engine@1.59.0
|
|
30
|
+
- @contractspec/lib.contracts@1.59.0
|
|
31
|
+
- @contractspec/lib.logger@1.59.0
|
|
32
|
+
|
|
3
33
|
## 1.58.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.60.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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.mjs",
|
|
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.60.0",
|
|
82
|
+
"@contractspec/lib.overlay-engine": "1.60.0",
|
|
83
|
+
"@contractspec/lib.workflow-composer": "1.60.0",
|
|
84
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
85
|
+
"@contractspec/lib.logger": "1.60.0"
|
|
38
86
|
},
|
|
39
87
|
"devDependencies": {
|
|
40
|
-
"@contractspec/tool.typescript": "1.
|
|
88
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
41
89
|
"typescript": "^5.9.3",
|
|
42
|
-
"@contractspec/tool.bun": "1.
|
|
90
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
43
91
|
},
|
|
44
92
|
"publishConfig": {
|
|
45
93
|
"access": "public",
|