@drewpayment/mink 0.12.0-beta.5 → 0.12.0-beta.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/dashboard/out/404.html +1 -1
- package/dashboard/out/action-log.html +1 -1
- package/dashboard/out/action-log.txt +1 -1
- package/dashboard/out/activity.html +1 -1
- package/dashboard/out/activity.txt +1 -1
- package/dashboard/out/bugs.html +1 -1
- package/dashboard/out/bugs.txt +1 -1
- package/dashboard/out/capture.html +1 -1
- package/dashboard/out/capture.txt +1 -1
- package/dashboard/out/config.html +1 -1
- package/dashboard/out/config.txt +1 -1
- package/dashboard/out/daemon.html +1 -1
- package/dashboard/out/daemon.txt +1 -1
- package/dashboard/out/design.html +1 -1
- package/dashboard/out/design.txt +1 -1
- package/dashboard/out/discord.html +1 -1
- package/dashboard/out/discord.txt +1 -1
- package/dashboard/out/file-index.html +1 -1
- package/dashboard/out/file-index.txt +1 -1
- package/dashboard/out/index.html +1 -1
- package/dashboard/out/index.txt +1 -1
- package/dashboard/out/insights.html +1 -1
- package/dashboard/out/insights.txt +1 -1
- package/dashboard/out/learning.html +1 -1
- package/dashboard/out/learning.txt +1 -1
- package/dashboard/out/overview.html +1 -1
- package/dashboard/out/overview.txt +1 -1
- package/dashboard/out/scheduler.html +1 -1
- package/dashboard/out/scheduler.txt +1 -1
- package/dashboard/out/sync.html +1 -1
- package/dashboard/out/sync.txt +1 -1
- package/dashboard/out/tokens.html +1 -1
- package/dashboard/out/tokens.txt +1 -1
- package/dashboard/out/waste.html +1 -1
- package/dashboard/out/waste.txt +1 -1
- package/dashboard/out/wiki.html +1 -1
- package/dashboard/out/wiki.txt +1 -1
- package/dist/cli.bun.js +44 -24
- package/dist/cli.node.js +56 -34
- package/package.json +1 -1
- package/src/commands/init.ts +30 -14
- package/src/commands/status.ts +37 -12
- package/src/core/state-aggregator.ts +3 -3
- /package/dashboard/out/_next/static/{eZlC6TEe7TWUABN2-Ho0J → _mawjPSnSIjvy8e5jxeZJ}/_buildManifest.js +0 -0
- /package/dashboard/out/_next/static/{eZlC6TEe7TWUABN2-Ho0J → _mawjPSnSIjvy8e5jxeZJ}/_ssgManifest.js +0 -0
|
@@ -28,7 +28,7 @@ import type {
|
|
|
28
28
|
// projectDir(cwd)). The cwd-based variants below are thin wrappers for the
|
|
29
29
|
// common case where the caller has cwd in hand.
|
|
30
30
|
|
|
31
|
-
function listDeviceShardsAt(projDir: string): string[] {
|
|
31
|
+
export function listDeviceShardsAt(projDir: string): string[] {
|
|
32
32
|
const stateDir = join(projDir, "state");
|
|
33
33
|
if (!existsSync(stateDir)) return [];
|
|
34
34
|
try {
|
|
@@ -46,7 +46,7 @@ function listDeviceShardsAt(projDir: string): string[] {
|
|
|
46
46
|
|
|
47
47
|
const SIDECAR_RE = /^learning-memory\.([^.]+)\.md$/;
|
|
48
48
|
|
|
49
|
-
function listLearningMemorySidecarPathsAt(projDir: string): string[] {
|
|
49
|
+
export function listLearningMemorySidecarPathsAt(projDir: string): string[] {
|
|
50
50
|
if (!existsSync(projDir)) return [];
|
|
51
51
|
try {
|
|
52
52
|
return readdirSync(projDir)
|
|
@@ -57,7 +57,7 @@ function listLearningMemorySidecarPathsAt(projDir: string): string[] {
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
function shardPath(projDir: string, deviceId: string, file: string): string {
|
|
60
|
+
export function shardPath(projDir: string, deviceId: string, file: string): string {
|
|
61
61
|
return join(projDir, "state", deviceId, file);
|
|
62
62
|
}
|
|
63
63
|
|
|
File without changes
|
/package/dashboard/out/_next/static/{eZlC6TEe7TWUABN2-Ho0J → _mawjPSnSIjvy8e5jxeZJ}/_ssgManifest.js
RENAMED
|
File without changes
|