contractspec 1.62.0 → 2.1.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/CHANGELOG.md +22 -0
- package/QUICK_START.md +1 -1
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# contractspec
|
|
2
2
|
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 362fbac: feat: improve video
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [362fbac]
|
|
12
|
+
- @contractspec/app.cli-contractspec@2.1.0
|
|
13
|
+
|
|
14
|
+
## 2.0.0
|
|
15
|
+
|
|
16
|
+
### Major Changes
|
|
17
|
+
|
|
18
|
+
- a09bafc: feat: optimize performance
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [a09bafc]
|
|
23
|
+
- @contractspec/app.cli-contractspec@2.0.0
|
|
24
|
+
|
|
3
25
|
## 1.62.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/QUICK_START.md
CHANGED
|
@@ -167,7 +167,7 @@ bun exec contractspec --help
|
|
|
167
167
|
**Import errors?**
|
|
168
168
|
```bash
|
|
169
169
|
# Install dependencies
|
|
170
|
-
bun add @contractspec/lib.contracts @contractspec/lib.schema
|
|
170
|
+
bun add @contractspec/lib.contracts-spec @contractspec/lib.schema
|
|
171
171
|
```
|
|
172
172
|
|
|
173
173
|
Happy contract authoring! 🎉
|
package/README.md
CHANGED
|
@@ -583,10 +583,10 @@ contractspec build spec.ts --provider openai --model gpt-3.5-turbo
|
|
|
583
583
|
|
|
584
584
|
### Import errors in generated code
|
|
585
585
|
|
|
586
|
-
Make sure `@contractspec/lib.contracts` and `@contractspec/lib.schema` are installed:
|
|
586
|
+
Make sure `@contractspec/lib.contracts-spec` and `@contractspec/lib.schema` are installed:
|
|
587
587
|
|
|
588
588
|
```bash
|
|
589
|
-
bun add @contractspec/lib.contracts @contractspec/lib.schema
|
|
589
|
+
bun add @contractspec/lib.contracts-spec @contractspec/lib.schema
|
|
590
590
|
```
|
|
591
591
|
|
|
592
592
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contractspec",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "CLI tool for creating, building, and validating contract specifications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"contractspec": "./bin/contractspec.mjs"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@contractspec/app.cli-contractspec": "1.
|
|
9
|
+
"@contractspec/app.cli-contractspec": "2.1.0"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|