@funnycode/myclaude 0.1.170 → 0.1.171
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/dist/myclaude.js +6 -6
- package/dist/myclaude.mjs +6 -6
- package/package.json +1 -1
package/dist/myclaude.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-08-
|
|
7
|
+
VERSION: "0.1.171",
|
|
8
|
+
BUILD_TIME: "2026-08-01T06:53:04.674Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -119947,7 +119947,7 @@ var package_default;
|
|
|
119947
119947
|
var init_package = __esm(() => {
|
|
119948
119948
|
package_default = {
|
|
119949
119949
|
name: "@funnycode/myclaude",
|
|
119950
|
-
version: "0.1.
|
|
119950
|
+
version: "0.1.171",
|
|
119951
119951
|
private: false,
|
|
119952
119952
|
description: "An open-source AI coding assistant in your terminal - powered by Claude",
|
|
119953
119953
|
license: "MIT",
|
|
@@ -410207,8 +410207,8 @@ function isCacheValid() {
|
|
|
410207
410207
|
}
|
|
410208
410208
|
let rootMtimeChanged = false;
|
|
410209
410209
|
try {
|
|
410210
|
-
const currentRootMtime =
|
|
410211
|
-
rootMtimeChanged = currentRootMtime
|
|
410210
|
+
const currentRootMtime = fs13.statSync(cwd2).mtimeMs;
|
|
410211
|
+
rootMtimeChanged = Math.abs(currentRootMtime - cachedRootMtime) > 0.5;
|
|
410212
410212
|
} catch {
|
|
410213
410213
|
return false;
|
|
410214
410214
|
}
|
|
@@ -410238,7 +410238,7 @@ function getSteps() {
|
|
|
410238
410238
|
cachedClaudeMdMtime = -1;
|
|
410239
410239
|
}
|
|
410240
410240
|
try {
|
|
410241
|
-
cachedRootMtime =
|
|
410241
|
+
cachedRootMtime = fs13.statSync(cwd2).mtimeMs;
|
|
410242
410242
|
} catch {
|
|
410243
410243
|
cachedRootMtime = -1;
|
|
410244
410244
|
}
|
package/dist/myclaude.mjs
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
// MACRO - build-time constants (injected by build.ts)
|
|
5
5
|
// MACRO injected by build script
|
|
6
6
|
globalThis.MACRO = {
|
|
7
|
-
VERSION: "0.1.
|
|
8
|
-
BUILD_TIME: "2026-08-
|
|
7
|
+
VERSION: "0.1.171",
|
|
8
|
+
BUILD_TIME: "2026-08-01T06:53:04.674Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -119947,7 +119947,7 @@ var package_default;
|
|
|
119947
119947
|
var init_package = __esm(() => {
|
|
119948
119948
|
package_default = {
|
|
119949
119949
|
name: "@funnycode/myclaude",
|
|
119950
|
-
version: "0.1.
|
|
119950
|
+
version: "0.1.171",
|
|
119951
119951
|
private: false,
|
|
119952
119952
|
description: "An open-source AI coding assistant in your terminal - powered by Claude",
|
|
119953
119953
|
license: "MIT",
|
|
@@ -410207,8 +410207,8 @@ function isCacheValid() {
|
|
|
410207
410207
|
}
|
|
410208
410208
|
let rootMtimeChanged = false;
|
|
410209
410209
|
try {
|
|
410210
|
-
const currentRootMtime =
|
|
410211
|
-
rootMtimeChanged = currentRootMtime
|
|
410210
|
+
const currentRootMtime = fs13.statSync(cwd2).mtimeMs;
|
|
410211
|
+
rootMtimeChanged = Math.abs(currentRootMtime - cachedRootMtime) > 0.5;
|
|
410212
410212
|
} catch {
|
|
410213
410213
|
return false;
|
|
410214
410214
|
}
|
|
@@ -410238,7 +410238,7 @@ function getSteps() {
|
|
|
410238
410238
|
cachedClaudeMdMtime = -1;
|
|
410239
410239
|
}
|
|
410240
410240
|
try {
|
|
410241
|
-
cachedRootMtime =
|
|
410241
|
+
cachedRootMtime = fs13.statSync(cwd2).mtimeMs;
|
|
410242
410242
|
} catch {
|
|
410243
410243
|
cachedRootMtime = -1;
|
|
410244
410244
|
}
|