@contractspec/example.content-generation 1.60.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 +13 -0
- package/package.json +18 -18
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=5
|
|
6
|
-
Bundled 5 modules in
|
|
6
|
+
Bundled 5 modules in 13ms
|
|
7
7
|
|
|
8
8
|
docs/content-generation.docblock.js 1.36 KB (entry point)
|
|
9
9
|
./index.js 4.0 KB (entry point)
|
|
@@ -12,7 +12,7 @@ Bundled 5 modules in 39ms
|
|
|
12
12
|
./generate.js 1.72 KB (entry point)
|
|
13
13
|
|
|
14
14
|
[contractspec-bun-build] transpile target=node root=src entries=5
|
|
15
|
-
Bundled 5 modules in
|
|
15
|
+
Bundled 5 modules in 15ms
|
|
16
16
|
|
|
17
17
|
docs/content-generation.docblock.js 1.35 KB (entry point)
|
|
18
18
|
./index.js 4.0 KB (entry point)
|
|
@@ -21,7 +21,7 @@ Bundled 5 modules in 27ms
|
|
|
21
21
|
./generate.js 1.71 KB (entry point)
|
|
22
22
|
|
|
23
23
|
[contractspec-bun-build] transpile target=browser root=src entries=5
|
|
24
|
-
Bundled 5 modules in
|
|
24
|
+
Bundled 5 modules in 13ms
|
|
25
25
|
|
|
26
26
|
docs/content-generation.docblock.js 1.35 KB (entry point)
|
|
27
27
|
./index.js 4.0 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @contractspec/example.content-generation
|
|
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.content-gen@1.61.0
|
|
13
|
+
- @contractspec/lib.contracts@1.61.0
|
|
14
|
+
- @contractspec/lib.logger@1.61.0
|
|
15
|
+
|
|
3
16
|
## 1.60.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.content-generation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.61.0",
|
|
4
4
|
"description": "Content generation example using @contractspec/lib.content-gen.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -8,42 +8,42 @@
|
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"bun": "./dist/index.js",
|
|
11
|
-
"node": "./dist/node/index.
|
|
11
|
+
"node": "./dist/node/index.js",
|
|
12
12
|
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./docs": {
|
|
16
16
|
"types": "./dist/docs/index.d.ts",
|
|
17
17
|
"bun": "./dist/docs/index.js",
|
|
18
|
-
"node": "./dist/node/docs/index.
|
|
18
|
+
"node": "./dist/node/docs/index.js",
|
|
19
19
|
"browser": "./dist/browser/docs/index.js",
|
|
20
20
|
"default": "./dist/docs/index.js"
|
|
21
21
|
},
|
|
22
22
|
"./docs/content-generation.docblock": {
|
|
23
23
|
"types": "./dist/docs/content-generation.docblock.d.ts",
|
|
24
24
|
"bun": "./dist/docs/content-generation.docblock.js",
|
|
25
|
-
"node": "./dist/node/docs/content-generation.docblock.
|
|
25
|
+
"node": "./dist/node/docs/content-generation.docblock.js",
|
|
26
26
|
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
27
27
|
"default": "./dist/docs/content-generation.docblock.js"
|
|
28
28
|
},
|
|
29
29
|
"./docs/index": {
|
|
30
30
|
"types": "./dist/docs/index.d.ts",
|
|
31
31
|
"bun": "./dist/docs/index.js",
|
|
32
|
-
"node": "./dist/node/docs/index.
|
|
32
|
+
"node": "./dist/node/docs/index.js",
|
|
33
33
|
"browser": "./dist/browser/docs/index.js",
|
|
34
34
|
"default": "./dist/docs/index.js"
|
|
35
35
|
},
|
|
36
36
|
"./example": {
|
|
37
37
|
"types": "./dist/example.d.ts",
|
|
38
38
|
"bun": "./dist/example.js",
|
|
39
|
-
"node": "./dist/node/example.
|
|
39
|
+
"node": "./dist/node/example.js",
|
|
40
40
|
"browser": "./dist/browser/example.js",
|
|
41
41
|
"default": "./dist/example.js"
|
|
42
42
|
},
|
|
43
43
|
"./generate": {
|
|
44
44
|
"types": "./dist/generate.d.ts",
|
|
45
45
|
"bun": "./dist/generate.js",
|
|
46
|
-
"node": "./dist/node/generate.
|
|
46
|
+
"node": "./dist/node/generate.js",
|
|
47
47
|
"browser": "./dist/browser/generate.js",
|
|
48
48
|
"default": "./dist/generate.js"
|
|
49
49
|
}
|
|
@@ -64,14 +64,14 @@
|
|
|
64
64
|
"typecheck": "tsc --noEmit"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@contractspec/lib.contracts": "1.
|
|
68
|
-
"@contractspec/lib.content-gen": "1.
|
|
69
|
-
"@contractspec/lib.logger": "1.
|
|
67
|
+
"@contractspec/lib.contracts": "1.61.0",
|
|
68
|
+
"@contractspec/lib.content-gen": "1.61.0",
|
|
69
|
+
"@contractspec/lib.logger": "1.61.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@contractspec/tool.typescript": "1.
|
|
72
|
+
"@contractspec/tool.typescript": "1.61.0",
|
|
73
73
|
"typescript": "^5.9.3",
|
|
74
|
-
"@contractspec/tool.bun": "1.
|
|
74
|
+
"@contractspec/tool.bun": "1.60.0"
|
|
75
75
|
},
|
|
76
76
|
"publishConfig": {
|
|
77
77
|
"access": "public",
|
|
@@ -79,42 +79,42 @@
|
|
|
79
79
|
".": {
|
|
80
80
|
"types": "./dist/index.d.ts",
|
|
81
81
|
"bun": "./dist/index.js",
|
|
82
|
-
"node": "./dist/node/index.
|
|
82
|
+
"node": "./dist/node/index.js",
|
|
83
83
|
"browser": "./dist/browser/index.js",
|
|
84
84
|
"default": "./dist/index.js"
|
|
85
85
|
},
|
|
86
86
|
"./docs": {
|
|
87
87
|
"types": "./dist/docs/index.d.ts",
|
|
88
88
|
"bun": "./dist/docs/index.js",
|
|
89
|
-
"node": "./dist/node/docs/index.
|
|
89
|
+
"node": "./dist/node/docs/index.js",
|
|
90
90
|
"browser": "./dist/browser/docs/index.js",
|
|
91
91
|
"default": "./dist/docs/index.js"
|
|
92
92
|
},
|
|
93
93
|
"./docs/content-generation.docblock": {
|
|
94
94
|
"types": "./dist/docs/content-generation.docblock.d.ts",
|
|
95
95
|
"bun": "./dist/docs/content-generation.docblock.js",
|
|
96
|
-
"node": "./dist/node/docs/content-generation.docblock.
|
|
96
|
+
"node": "./dist/node/docs/content-generation.docblock.js",
|
|
97
97
|
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
98
98
|
"default": "./dist/docs/content-generation.docblock.js"
|
|
99
99
|
},
|
|
100
100
|
"./docs/index": {
|
|
101
101
|
"types": "./dist/docs/index.d.ts",
|
|
102
102
|
"bun": "./dist/docs/index.js",
|
|
103
|
-
"node": "./dist/node/docs/index.
|
|
103
|
+
"node": "./dist/node/docs/index.js",
|
|
104
104
|
"browser": "./dist/browser/docs/index.js",
|
|
105
105
|
"default": "./dist/docs/index.js"
|
|
106
106
|
},
|
|
107
107
|
"./example": {
|
|
108
108
|
"types": "./dist/example.d.ts",
|
|
109
109
|
"bun": "./dist/example.js",
|
|
110
|
-
"node": "./dist/node/example.
|
|
110
|
+
"node": "./dist/node/example.js",
|
|
111
111
|
"browser": "./dist/browser/example.js",
|
|
112
112
|
"default": "./dist/example.js"
|
|
113
113
|
},
|
|
114
114
|
"./generate": {
|
|
115
115
|
"types": "./dist/generate.d.ts",
|
|
116
116
|
"bun": "./dist/generate.js",
|
|
117
|
-
"node": "./dist/node/generate.
|
|
117
|
+
"node": "./dist/node/generate.js",
|
|
118
118
|
"browser": "./dist/browser/generate.js",
|
|
119
119
|
"default": "./dist/generate.js"
|
|
120
120
|
}
|