@contractspec/lib.lifecycle 3.7.5 → 3.7.7
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/README.md +42 -58
- package/dist/browser/index.js +179 -179
- package/dist/i18n/catalogs/index.d.ts +1 -1
- package/dist/i18n/index.d.ts +7 -7
- package/dist/i18n/locale.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +179 -179
- package/dist/node/index.js +179 -179
- package/dist/types/milestones.d.ts +2 -2
- package/dist/types/signals.d.ts +1 -1
- package/dist/utils/formatters.d.ts +2 -2
- package/package.json +6 -6
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { LifecycleStage } from './stages';
|
|
2
1
|
import type { LifecycleAxes } from './axes';
|
|
3
|
-
import type {
|
|
2
|
+
import type { LifecycleScore, LifecycleSignal } from './signals';
|
|
3
|
+
import { LifecycleStage } from './stages';
|
|
4
4
|
export type LifecycleMilestoneCategory = 'product' | 'company' | 'capital' | 'operations';
|
|
5
5
|
export interface LifecycleMilestone {
|
|
6
6
|
id: string;
|
package/dist/types/signals.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import type { LifecycleAxes, LifecycleAxis } from './axes';
|
|
1
2
|
import { LifecycleStage } from './stages';
|
|
2
|
-
import type { LifecycleAxis, LifecycleAxes } from './axes';
|
|
3
3
|
export type LifecycleSignalSource = 'analytics' | 'questionnaire' | 'intent' | 'manual' | 'simulation';
|
|
4
4
|
export type LifecycleSignalKind = 'metric' | 'qualitative' | 'event' | 'milestone' | 'heuristic';
|
|
5
5
|
export interface LifecycleSignal {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { LifecycleAssessment, LifecycleRecommendation } from '../types/milestones';
|
|
2
1
|
import type { LifecycleAxes } from '../types/axes';
|
|
3
|
-
import {
|
|
2
|
+
import type { LifecycleAssessment, LifecycleRecommendation } from '../types/milestones';
|
|
4
3
|
import type { LifecycleScore } from '../types/signals';
|
|
4
|
+
import { LifecycleStage } from '../types/stages';
|
|
5
5
|
export interface StageSummary {
|
|
6
6
|
title: string;
|
|
7
7
|
question: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.lifecycle",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.7",
|
|
4
4
|
"description": "Contract lifecycle management primitives",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -24,20 +24,20 @@
|
|
|
24
24
|
"dev": "contractspec-bun-build dev",
|
|
25
25
|
"clean": "rimraf dist .turbo",
|
|
26
26
|
"lint": "bun lint:fix",
|
|
27
|
-
"lint:fix": "
|
|
28
|
-
"lint:check": "
|
|
27
|
+
"lint:fix": "biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .",
|
|
28
|
+
"lint:check": "biome check .",
|
|
29
29
|
"test": "bun test --pass-with-no-tests",
|
|
30
30
|
"prebuild": "contractspec-bun-build prebuild",
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@contractspec/lib.contracts-spec": "
|
|
34
|
+
"@contractspec/lib.contracts-spec": "4.0.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@contractspec/tool.typescript": "3.7.
|
|
38
|
+
"@contractspec/tool.typescript": "3.7.6",
|
|
39
39
|
"typescript": "^5.9.3",
|
|
40
|
-
"@contractspec/tool.bun": "3.7.
|
|
40
|
+
"@contractspec/tool.bun": "3.7.6"
|
|
41
41
|
},
|
|
42
42
|
"exports": {
|
|
43
43
|
".": {
|