@contractspec/example.content-generation 3.6.0 → 3.7.1
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 +23 -0
- package/package.json +18 -32
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=6 noBundle=false
|
|
6
|
-
Bundled 6 modules in
|
|
6
|
+
Bundled 6 modules in 34ms
|
|
7
7
|
|
|
8
8
|
./content-generation.feature.js 0.62 KB (entry point)
|
|
9
9
|
./index.js 4.65 KB (entry point)
|
|
@@ -13,7 +13,7 @@ Bundled 6 modules in 40ms
|
|
|
13
13
|
./generate.js 1.72 KB (entry point)
|
|
14
14
|
|
|
15
15
|
[contractspec-bun-build] transpile target=node root=src entries=6 noBundle=false
|
|
16
|
-
Bundled 6 modules in
|
|
16
|
+
Bundled 6 modules in 25ms
|
|
17
17
|
|
|
18
18
|
./content-generation.feature.js 0.61 KB (entry point)
|
|
19
19
|
./index.js 4.63 KB (entry point)
|
|
@@ -23,7 +23,7 @@ Bundled 6 modules in 38ms
|
|
|
23
23
|
./generate.js 1.71 KB (entry point)
|
|
24
24
|
|
|
25
25
|
[contractspec-bun-build] transpile target=browser root=src entries=6 noBundle=false
|
|
26
|
-
Bundled 6 modules in
|
|
26
|
+
Bundled 6 modules in 46ms
|
|
27
27
|
|
|
28
28
|
./content-generation.feature.js 0.61 KB (entry point)
|
|
29
29
|
./index.js 4.63 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @contractspec/example.content-generation
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eb8626: fix: package exports
|
|
8
|
+
- Updated dependencies [5eb8626]
|
|
9
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
10
|
+
- @contractspec/lib.content-gen@3.7.1
|
|
11
|
+
- @contractspec/lib.logger@3.7.1
|
|
12
|
+
|
|
13
|
+
## 3.7.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- f88df2d: feat: add expo mobile app example
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [f88df2d]
|
|
22
|
+
- @contractspec/lib.contracts-spec@3.7.0
|
|
23
|
+
- @contractspec/lib.content-gen@3.7.0
|
|
24
|
+
- @contractspec/lib.logger@3.7.0
|
|
25
|
+
|
|
3
26
|
## 3.6.0
|
|
4
27
|
|
|
5
28
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,57 +1,50 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.content-generation",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"description": "Content generation example using @contractspec/lib.content-gen.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
+
"browser": "./dist/browser/index.js",
|
|
10
11
|
"bun": "./dist/index.js",
|
|
11
12
|
"node": "./dist/node/index.js",
|
|
12
|
-
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./content-generation.feature": {
|
|
16
16
|
"types": "./dist/content-generation.feature.d.ts",
|
|
17
|
+
"browser": "./dist/browser/content-generation.feature.js",
|
|
17
18
|
"bun": "./dist/content-generation.feature.js",
|
|
18
19
|
"node": "./dist/node/content-generation.feature.js",
|
|
19
|
-
"browser": "./dist/browser/content-generation.feature.js",
|
|
20
20
|
"default": "./dist/content-generation.feature.js"
|
|
21
21
|
},
|
|
22
22
|
"./docs": {
|
|
23
23
|
"types": "./dist/docs/index.d.ts",
|
|
24
|
+
"browser": "./dist/browser/docs/index.js",
|
|
24
25
|
"bun": "./dist/docs/index.js",
|
|
25
26
|
"node": "./dist/node/docs/index.js",
|
|
26
|
-
"browser": "./dist/browser/docs/index.js",
|
|
27
27
|
"default": "./dist/docs/index.js"
|
|
28
28
|
},
|
|
29
29
|
"./docs/content-generation.docblock": {
|
|
30
30
|
"types": "./dist/docs/content-generation.docblock.d.ts",
|
|
31
|
+
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
31
32
|
"bun": "./dist/docs/content-generation.docblock.js",
|
|
32
33
|
"node": "./dist/node/docs/content-generation.docblock.js",
|
|
33
|
-
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
34
34
|
"default": "./dist/docs/content-generation.docblock.js"
|
|
35
35
|
},
|
|
36
|
-
"./docs/index": {
|
|
37
|
-
"types": "./dist/docs/index.d.ts",
|
|
38
|
-
"bun": "./dist/docs/index.js",
|
|
39
|
-
"node": "./dist/node/docs/index.js",
|
|
40
|
-
"browser": "./dist/browser/docs/index.js",
|
|
41
|
-
"default": "./dist/docs/index.js"
|
|
42
|
-
},
|
|
43
36
|
"./example": {
|
|
44
37
|
"types": "./dist/example.d.ts",
|
|
38
|
+
"browser": "./dist/browser/example.js",
|
|
45
39
|
"bun": "./dist/example.js",
|
|
46
40
|
"node": "./dist/node/example.js",
|
|
47
|
-
"browser": "./dist/browser/example.js",
|
|
48
41
|
"default": "./dist/example.js"
|
|
49
42
|
},
|
|
50
43
|
"./generate": {
|
|
51
44
|
"types": "./dist/generate.d.ts",
|
|
45
|
+
"browser": "./dist/browser/generate.js",
|
|
52
46
|
"bun": "./dist/generate.js",
|
|
53
47
|
"node": "./dist/node/generate.js",
|
|
54
|
-
"browser": "./dist/browser/generate.js",
|
|
55
48
|
"default": "./dist/generate.js"
|
|
56
49
|
}
|
|
57
50
|
},
|
|
@@ -71,65 +64,58 @@
|
|
|
71
64
|
"typecheck": "tsc --noEmit"
|
|
72
65
|
},
|
|
73
66
|
"dependencies": {
|
|
74
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
75
|
-
"@contractspec/lib.content-gen": "3.
|
|
76
|
-
"@contractspec/lib.logger": "3.
|
|
67
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
68
|
+
"@contractspec/lib.content-gen": "3.7.1",
|
|
69
|
+
"@contractspec/lib.logger": "3.7.1"
|
|
77
70
|
},
|
|
78
71
|
"devDependencies": {
|
|
79
|
-
"@contractspec/tool.typescript": "3.
|
|
72
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
80
73
|
"typescript": "^5.9.3",
|
|
81
|
-
"@contractspec/tool.bun": "3.
|
|
74
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
82
75
|
},
|
|
83
76
|
"publishConfig": {
|
|
84
77
|
"access": "public",
|
|
85
78
|
"exports": {
|
|
86
79
|
".": {
|
|
87
80
|
"types": "./dist/index.d.ts",
|
|
81
|
+
"browser": "./dist/browser/index.js",
|
|
88
82
|
"bun": "./dist/index.js",
|
|
89
83
|
"node": "./dist/node/index.js",
|
|
90
|
-
"browser": "./dist/browser/index.js",
|
|
91
84
|
"default": "./dist/index.js"
|
|
92
85
|
},
|
|
93
86
|
"./content-generation.feature": {
|
|
94
87
|
"types": "./dist/content-generation.feature.d.ts",
|
|
88
|
+
"browser": "./dist/browser/content-generation.feature.js",
|
|
95
89
|
"bun": "./dist/content-generation.feature.js",
|
|
96
90
|
"node": "./dist/node/content-generation.feature.js",
|
|
97
|
-
"browser": "./dist/browser/content-generation.feature.js",
|
|
98
91
|
"default": "./dist/content-generation.feature.js"
|
|
99
92
|
},
|
|
100
93
|
"./docs": {
|
|
101
94
|
"types": "./dist/docs/index.d.ts",
|
|
95
|
+
"browser": "./dist/browser/docs/index.js",
|
|
102
96
|
"bun": "./dist/docs/index.js",
|
|
103
97
|
"node": "./dist/node/docs/index.js",
|
|
104
|
-
"browser": "./dist/browser/docs/index.js",
|
|
105
98
|
"default": "./dist/docs/index.js"
|
|
106
99
|
},
|
|
107
100
|
"./docs/content-generation.docblock": {
|
|
108
101
|
"types": "./dist/docs/content-generation.docblock.d.ts",
|
|
102
|
+
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
109
103
|
"bun": "./dist/docs/content-generation.docblock.js",
|
|
110
104
|
"node": "./dist/node/docs/content-generation.docblock.js",
|
|
111
|
-
"browser": "./dist/browser/docs/content-generation.docblock.js",
|
|
112
105
|
"default": "./dist/docs/content-generation.docblock.js"
|
|
113
106
|
},
|
|
114
|
-
"./docs/index": {
|
|
115
|
-
"types": "./dist/docs/index.d.ts",
|
|
116
|
-
"bun": "./dist/docs/index.js",
|
|
117
|
-
"node": "./dist/node/docs/index.js",
|
|
118
|
-
"browser": "./dist/browser/docs/index.js",
|
|
119
|
-
"default": "./dist/docs/index.js"
|
|
120
|
-
},
|
|
121
107
|
"./example": {
|
|
122
108
|
"types": "./dist/example.d.ts",
|
|
109
|
+
"browser": "./dist/browser/example.js",
|
|
123
110
|
"bun": "./dist/example.js",
|
|
124
111
|
"node": "./dist/node/example.js",
|
|
125
|
-
"browser": "./dist/browser/example.js",
|
|
126
112
|
"default": "./dist/example.js"
|
|
127
113
|
},
|
|
128
114
|
"./generate": {
|
|
129
115
|
"types": "./dist/generate.d.ts",
|
|
116
|
+
"browser": "./dist/browser/generate.js",
|
|
130
117
|
"bun": "./dist/generate.js",
|
|
131
118
|
"node": "./dist/node/generate.js",
|
|
132
|
-
"browser": "./dist/browser/generate.js",
|
|
133
119
|
"default": "./dist/generate.js"
|
|
134
120
|
}
|
|
135
121
|
},
|