spec-driven-development 3.7.19 → 3.7.21
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 +7 -3
- package/src/blueprint.ts +23 -0
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# spec-driven-development
|
|
2
2
|
|
|
3
|
+
## 3.7.21
|
|
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 Add FormSpec layout hints, semantic field rendering, and portable text/textarea input-group addons.
|
|
10
|
+
- Updated dependencies because of Add ThemeSpec light/dark modes and a design-system Tailwind bridge for CSS variables, presets, CSS text, and OKLCH color pass-through.
|
|
11
|
+
- Updated dependencies because of Add a canonical typed result system for ContractSpec success and failure propagation across operations, workflows, jobs, server adapters, MCP, GraphQL, and React clients.
|
|
12
|
+
- @contractspec/app.cli-contractspec@6.0.2
|
|
13
|
+
- @contractspec/lib.contracts-spec@5.5.0
|
|
14
|
+
|
|
15
|
+
## 3.7.20
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- chore: auto-bump internal dependents
|
|
20
|
+
- Updated dependencies because of chore: auto-bump internal dependents
|
|
21
|
+
- @contractspec/app.cli-contractspec@6.0.1
|
|
22
|
+
|
|
3
23
|
## 3.7.19
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spec-driven-development",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.21",
|
|
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.0.
|
|
10
|
+
"@contractspec/app.cli-contractspec": "6.0.2",
|
|
11
|
+
"@contractspec/lib.contracts-spec": "5.5.0"
|
|
11
12
|
},
|
|
12
13
|
"scripts": {
|
|
13
14
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
@@ -31,5 +32,8 @@
|
|
|
31
32
|
"url": "https://github.com/lssm-tech/contractspec.git",
|
|
32
33
|
"directory": "packages/apps-registry/spec-driven-development"
|
|
33
34
|
},
|
|
34
|
-
"homepage": "https://contractspec.io"
|
|
35
|
+
"homepage": "https://contractspec.io",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": "./src/index.ts"
|
|
38
|
+
}
|
|
35
39
|
}
|
package/src/blueprint.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { defineAppConfig } from '@contractspec/lib.contracts-spec/app-config/spec';
|
|
2
|
+
|
|
3
|
+
export const SpecDrivenDevelopmentBlueprint = defineAppConfig({
|
|
4
|
+
meta: {
|
|
5
|
+
...{
|
|
6
|
+
key: 'apps-registry.spec-driven-development',
|
|
7
|
+
version: '1.0.0',
|
|
8
|
+
title: 'Spec Driven Development',
|
|
9
|
+
description:
|
|
10
|
+
'CLI tool for creating, building, and validating contract specifications',
|
|
11
|
+
domain: 'spec-driven-development',
|
|
12
|
+
owners: ['@contractspec-core'],
|
|
13
|
+
tags: ['package', 'appsRegistry', 'spec-driven-development'],
|
|
14
|
+
stability: 'experimental',
|
|
15
|
+
},
|
|
16
|
+
appId: 'spec-driven-development',
|
|
17
|
+
},
|
|
18
|
+
capabilities: {
|
|
19
|
+
enabled: [
|
|
20
|
+
// Add capability refs here
|
|
21
|
+
],
|
|
22
|
+
},
|
|
23
|
+
});
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './blueprint';
|