spec-driven-development 3.7.21 → 3.7.23
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 +20 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# spec-driven-development
|
|
2
2
|
|
|
3
|
+
## 3.7.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: auto-bump internal dependents
|
|
8
|
+
- Updated dependencies because of chore: auto-bump internal dependents
|
|
9
|
+
- Updated dependencies because of Stabilize Turborepo build caching by making generated artifacts deterministic, modeling web LLM generation explicitly, and avoiding no-op build-tool rewrites.
|
|
10
|
+
- @contractspec/app.cli-contractspec@6.1.1
|
|
11
|
+
- @contractspec/lib.contracts-spec@5.5.1
|
|
12
|
+
|
|
13
|
+
## 3.7.22
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- chore: auto-bump internal dependents
|
|
18
|
+
- Updated dependencies because of Reduce published install and bundle size by optionalizing heavy runtime families and adding a repo dependency audit.
|
|
19
|
+
- Updated dependencies because of Split example discovery from rich runtime packages so lightweight consumers no longer install every ContractSpec example.
|
|
20
|
+
- @contractspec/app.cli-contractspec@6.1.0
|
|
21
|
+
- @contractspec/lib.contracts-spec@5.5.0
|
|
22
|
+
|
|
3
23
|
## 3.7.21
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-driven-development",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.23",
|
|
4
4
|
"description": "CLI tool for creating, building, and validating contract specifications",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sdd": "./bin/contractspec.mjs",
|
|
7
7
|
"spec-driven-development": "./bin/contractspec.mjs"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@contractspec/app.cli-contractspec": "6.
|
|
11
|
-
"@contractspec/lib.contracts-spec": "5.5.
|
|
10
|
+
"@contractspec/app.cli-contractspec": "6.1.1",
|
|
11
|
+
"@contractspec/lib.contracts-spec": "5.5.1"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|