@effect/sql-sqlite-do 4.0.0-rc.109 → 4.0.0-rc.110
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.
|
@@ -23,7 +23,8 @@ const tasks = Command.make("tasks").pipe(
|
|
|
23
23
|
workspace,
|
|
24
24
|
verbose: Flag.boolean("verbose").pipe(
|
|
25
25
|
Flag.withAlias("v"),
|
|
26
|
-
Flag.withDescription("Print diagnostic output")
|
|
26
|
+
Flag.withDescription("Print diagnostic output"),
|
|
27
|
+
Flag.withDefault(false)
|
|
27
28
|
)
|
|
28
29
|
}),
|
|
29
30
|
Command.withDescription("Track and manage tasks")
|
|
@@ -92,7 +93,8 @@ const list = Command.make(
|
|
|
92
93
|
Flag.withDefault("open")
|
|
93
94
|
),
|
|
94
95
|
json: Flag.boolean("json").pipe(
|
|
95
|
-
Flag.withDescription("Print machine-readable output")
|
|
96
|
+
Flag.withDescription("Print machine-readable output"),
|
|
97
|
+
Flag.withDefault(false)
|
|
96
98
|
)
|
|
97
99
|
},
|
|
98
100
|
Effect.fn(function*({ status, json }) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect/sql-sqlite-do",
|
|
3
|
-
"version": "4.0.0-rc.
|
|
3
|
+
"version": "4.0.0-rc.110",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "A SQLite toolkit for Effect",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@cloudflare/workers-types": "^5.20260708.1",
|
|
51
|
-
"effect": "^4.0.0-rc.
|
|
51
|
+
"effect": "^4.0.0-rc.110"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"effect": "^4.0.0-rc.
|
|
54
|
+
"effect": "^4.0.0-rc.110"
|
|
55
55
|
},
|
|
56
56
|
"scripts": {
|
|
57
57
|
"codegen": "effect-utils codegen",
|