@funnycode/myclaude 0.1.54 → 0.1.55
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 +4 -3
- package/dist/myclaude.mjs +4 -3
- 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-06-29T13:
|
|
7
|
+
VERSION: "0.1.55",
|
|
8
|
+
BUILD_TIME: "2026-06-29T13:09:38.004Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -347778,7 +347778,8 @@ async function findSuitableShell() {
|
|
|
347778
347778
|
}
|
|
347779
347779
|
async function getShellConfigImpl() {
|
|
347780
347780
|
const binShell = await findSuitableShell();
|
|
347781
|
-
const
|
|
347781
|
+
const isWindows2 = getPlatform() === "windows";
|
|
347782
|
+
const provider = await createBashShellProvider(binShell, { skipSnapshot: isWindows2 });
|
|
347782
347783
|
return { provider };
|
|
347783
347784
|
}
|
|
347784
347785
|
async function exec3(command, abortSignal, shellType, options) {
|
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-06-29T13:
|
|
7
|
+
VERSION: "0.1.55",
|
|
8
|
+
BUILD_TIME: "2026-06-29T13:09:38.004Z",
|
|
9
9
|
PACKAGE_URL: "@funnycode/myclaude",
|
|
10
10
|
NATIVE_PACKAGE_URL: "@funnycode/myclaude",
|
|
11
11
|
VERSION_CHANGELOG: '',
|
|
@@ -347778,7 +347778,8 @@ async function findSuitableShell() {
|
|
|
347778
347778
|
}
|
|
347779
347779
|
async function getShellConfigImpl() {
|
|
347780
347780
|
const binShell = await findSuitableShell();
|
|
347781
|
-
const
|
|
347781
|
+
const isWindows2 = getPlatform() === "windows";
|
|
347782
|
+
const provider = await createBashShellProvider(binShell, { skipSnapshot: isWindows2 });
|
|
347782
347783
|
return { provider };
|
|
347783
347784
|
}
|
|
347784
347785
|
async function exec3(command, abortSignal, shellType, options) {
|