@staff0rd/assist 0.483.8 → 0.484.0
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 +1 -1
- package/dist/commands/sessions/web/bundle.js +374 -368
- package/dist/index.js +6 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.
|
|
9
|
+
version: "0.484.0",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -523,7 +523,7 @@ var assistConfigShape = {
|
|
|
523
523
|
// why: TCP port the native Windows daemon listens on for the WSL bridge; defaults to 51764
|
|
524
524
|
windowsDaemonPort: z2.number().optional(),
|
|
525
525
|
windowsVersionCheck: z2.enum(["block", "warn", "off"]).default("block"),
|
|
526
|
-
includeCommittedChanges: z2.boolean().default(
|
|
526
|
+
includeCommittedChanges: z2.boolean().default(true),
|
|
527
527
|
topBar: z2.boolean().default(true),
|
|
528
528
|
floatWaiting: z2.boolean().default(true)
|
|
529
529
|
}).optional(),
|
|
@@ -9106,11 +9106,9 @@ function toGitCwd(cwd) {
|
|
|
9106
9106
|
// src/commands/sessions/web/includesCommittedChanges.ts
|
|
9107
9107
|
function includesCommittedChanges(cwd) {
|
|
9108
9108
|
try {
|
|
9109
|
-
return
|
|
9110
|
-
loadConfigFrom(toGitCwd(cwd)).sessions?.includeCommittedChanges
|
|
9111
|
-
);
|
|
9109
|
+
return loadConfigFrom(toGitCwd(cwd)).sessions?.includeCommittedChanges ?? true;
|
|
9112
9110
|
} catch {
|
|
9113
|
-
return
|
|
9111
|
+
return true;
|
|
9114
9112
|
}
|
|
9115
9113
|
}
|
|
9116
9114
|
|
|
@@ -32070,8 +32068,8 @@ var sessionsConfigHelp = [
|
|
|
32070
32068
|
},
|
|
32071
32069
|
{
|
|
32072
32070
|
key: "sessions.includeCommittedChanges",
|
|
32073
|
-
setter: "assist config set sessions.includeCommittedChanges
|
|
32074
|
-
note: "session card counts and
|
|
32071
|
+
setter: "assist config set sessions.includeCommittedChanges false -g",
|
|
32072
|
+
note: "default on: session card counts, /diff and the diff scope picker span the commits recorded against the session's backlog item as well as uncommitted work, so they survive the agent committing. Set false to show only uncommitted changes"
|
|
32075
32073
|
},
|
|
32076
32074
|
{
|
|
32077
32075
|
key: "sessions.topBar",
|