@contractspec/example.lifecycle-cli 3.4.3 → 3.5.2
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 +7 -7
- package/CHANGELOG.md +36 -0
- package/dist/browser/demo.js +3 -3
- package/dist/browser/index.js +3 -3
- package/dist/demo.js +3 -3
- package/dist/index.js +3 -3
- package/dist/node/demo.js +3 -3
- package/dist/node/index.js +3 -3
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,18 +2,18 @@ $ contractspec-bun-build prebuild
|
|
|
2
2
|
$ bun run prebuild && bun run build:bundle && bun run build:types
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
|
-
[contractspec-bun-build] transpile target=bun root=src entries=6
|
|
6
|
-
Bundled 6 modules in
|
|
5
|
+
[contractspec-bun-build] transpile target=bun root=src entries=6 noBundle=false
|
|
6
|
+
Bundled 6 modules in 9ms
|
|
7
7
|
|
|
8
|
-
./demo.js 1.
|
|
8
|
+
./demo.js 1.72 KB (entry point)
|
|
9
9
|
./index.js 4.62 KB (entry point)
|
|
10
10
|
docs/index.js 1.43 KB (entry point)
|
|
11
11
|
docs/lifecycle-cli.docblock.js 1.43 KB (entry point)
|
|
12
12
|
./example.js 0.94 KB (entry point)
|
|
13
13
|
./lifecycle-cli.feature.js 0.57 KB (entry point)
|
|
14
14
|
|
|
15
|
-
[contractspec-bun-build] transpile target=node root=src entries=6
|
|
16
|
-
Bundled 6 modules in
|
|
15
|
+
[contractspec-bun-build] transpile target=node root=src entries=6 noBundle=false
|
|
16
|
+
Bundled 6 modules in 23ms
|
|
17
17
|
|
|
18
18
|
./demo.js 1.72 KB (entry point)
|
|
19
19
|
./index.js 4.60 KB (entry point)
|
|
@@ -22,8 +22,8 @@ Bundled 6 modules in 25ms
|
|
|
22
22
|
./example.js 0.93 KB (entry point)
|
|
23
23
|
./lifecycle-cli.feature.js 0.56 KB (entry point)
|
|
24
24
|
|
|
25
|
-
[contractspec-bun-build] transpile target=browser root=src entries=6
|
|
26
|
-
Bundled 6 modules in
|
|
25
|
+
[contractspec-bun-build] transpile target=browser root=src entries=6 noBundle=false
|
|
26
|
+
Bundled 6 modules in 17ms
|
|
27
27
|
|
|
28
28
|
./demo.js 1.72 KB (entry point)
|
|
29
29
|
./index.js 4.60 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @contractspec/example.lifecycle-cli
|
|
2
2
|
|
|
3
|
+
## 3.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 18df977: fix: release workflow
|
|
8
|
+
- Updated dependencies [18df977]
|
|
9
|
+
- @contractspec/bundle.lifecycle-managed@3.5.2
|
|
10
|
+
- @contractspec/lib.contracts-spec@3.5.2
|
|
11
|
+
- @contractspec/lib.lifecycle@3.5.2
|
|
12
|
+
- @contractspec/lib.logger@3.5.2
|
|
13
|
+
|
|
14
|
+
## 3.5.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- dfff0d4: fix: use client within lib surface-runtime
|
|
19
|
+
- Updated dependencies [dfff0d4]
|
|
20
|
+
- @contractspec/bundle.lifecycle-managed@3.5.1
|
|
21
|
+
- @contractspec/lib.contracts-spec@3.5.1
|
|
22
|
+
- @contractspec/lib.lifecycle@3.5.1
|
|
23
|
+
- @contractspec/lib.logger@3.5.1
|
|
24
|
+
|
|
25
|
+
## 3.5.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 230bdf6: feat: ai-chat wireing
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [230bdf6]
|
|
34
|
+
- @contractspec/bundle.lifecycle-managed@3.5.0
|
|
35
|
+
- @contractspec/lib.contracts-spec@3.5.0
|
|
36
|
+
- @contractspec/lib.lifecycle@3.5.0
|
|
37
|
+
- @contractspec/lib.logger@3.5.0
|
|
38
|
+
|
|
3
39
|
## 3.4.3
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/dist/browser/demo.js
CHANGED
|
@@ -10,9 +10,9 @@ import {
|
|
|
10
10
|
} from "@contractspec/lib.lifecycle";
|
|
11
11
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
12
12
|
var logger = new Logger({
|
|
13
|
-
level: LogLevel.
|
|
14
|
-
environment: "
|
|
15
|
-
enableColors:
|
|
13
|
+
level: LogLevel.INFO,
|
|
14
|
+
environment: "production",
|
|
15
|
+
enableColors: false
|
|
16
16
|
});
|
|
17
17
|
async function runLifecycleCliDemo() {
|
|
18
18
|
const service = new LifecycleAssessmentService({
|
package/dist/browser/index.js
CHANGED
|
@@ -10,9 +10,9 @@ import {
|
|
|
10
10
|
} from "@contractspec/lib.lifecycle";
|
|
11
11
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
12
12
|
var logger = new Logger({
|
|
13
|
-
level: LogLevel.
|
|
14
|
-
environment: "
|
|
15
|
-
enableColors:
|
|
13
|
+
level: LogLevel.INFO,
|
|
14
|
+
environment: "production",
|
|
15
|
+
enableColors: false
|
|
16
16
|
});
|
|
17
17
|
async function runLifecycleCliDemo() {
|
|
18
18
|
const service = new LifecycleAssessmentService({
|
package/dist/demo.js
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
} from "@contractspec/lib.lifecycle";
|
|
12
12
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
13
13
|
var logger = new Logger({
|
|
14
|
-
level: LogLevel.
|
|
15
|
-
environment: "
|
|
16
|
-
enableColors:
|
|
14
|
+
level: LogLevel.INFO,
|
|
15
|
+
environment: "production",
|
|
16
|
+
enableColors: false
|
|
17
17
|
});
|
|
18
18
|
async function runLifecycleCliDemo() {
|
|
19
19
|
const service = new LifecycleAssessmentService({
|
package/dist/index.js
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
} from "@contractspec/lib.lifecycle";
|
|
12
12
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
13
13
|
var logger = new Logger({
|
|
14
|
-
level: LogLevel.
|
|
15
|
-
environment: "
|
|
16
|
-
enableColors:
|
|
14
|
+
level: LogLevel.INFO,
|
|
15
|
+
environment: "production",
|
|
16
|
+
enableColors: false
|
|
17
17
|
});
|
|
18
18
|
async function runLifecycleCliDemo() {
|
|
19
19
|
const service = new LifecycleAssessmentService({
|
package/dist/node/demo.js
CHANGED
|
@@ -10,9 +10,9 @@ import {
|
|
|
10
10
|
} from "@contractspec/lib.lifecycle";
|
|
11
11
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
12
12
|
var logger = new Logger({
|
|
13
|
-
level: LogLevel.
|
|
14
|
-
environment: "
|
|
15
|
-
enableColors:
|
|
13
|
+
level: LogLevel.INFO,
|
|
14
|
+
environment: "production",
|
|
15
|
+
enableColors: false
|
|
16
16
|
});
|
|
17
17
|
async function runLifecycleCliDemo() {
|
|
18
18
|
const service = new LifecycleAssessmentService({
|
package/dist/node/index.js
CHANGED
|
@@ -10,9 +10,9 @@ import {
|
|
|
10
10
|
} from "@contractspec/lib.lifecycle";
|
|
11
11
|
import { Logger, LogLevel } from "@contractspec/lib.logger";
|
|
12
12
|
var logger = new Logger({
|
|
13
|
-
level: LogLevel.
|
|
14
|
-
environment: "
|
|
15
|
-
enableColors:
|
|
13
|
+
level: LogLevel.INFO,
|
|
14
|
+
environment: "production",
|
|
15
|
+
enableColors: false
|
|
16
16
|
});
|
|
17
17
|
async function runLifecycleCliDemo() {
|
|
18
18
|
const service = new LifecycleAssessmentService({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.lifecycle-cli",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.2",
|
|
4
4
|
"description": "Lifecycle CLI demo (example): run lifecycle assessment without an HTTP server.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -71,15 +71,15 @@
|
|
|
71
71
|
"typecheck": "tsc --noEmit"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@contractspec/bundle.lifecycle-managed": "3.
|
|
75
|
-
"@contractspec/lib.lifecycle": "3.
|
|
76
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
77
|
-
"@contractspec/lib.logger": "3.
|
|
74
|
+
"@contractspec/bundle.lifecycle-managed": "3.5.2",
|
|
75
|
+
"@contractspec/lib.lifecycle": "3.5.2",
|
|
76
|
+
"@contractspec/lib.contracts-spec": "3.5.2",
|
|
77
|
+
"@contractspec/lib.logger": "3.5.2"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@contractspec/tool.typescript": "3.
|
|
80
|
+
"@contractspec/tool.typescript": "3.5.2",
|
|
81
81
|
"typescript": "^5.9.3",
|
|
82
|
-
"@contractspec/tool.bun": "3.
|
|
82
|
+
"@contractspec/tool.bun": "3.5.2"
|
|
83
83
|
},
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"access": "public",
|