@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 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.54",
8
- BUILD_TIME: "2026-06-29T13:05:24.446Z",
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 provider = await createBashShellProvider(binShell);
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.54",
8
- BUILD_TIME: "2026-06-29T13:05:24.446Z",
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 provider = await createBashShellProvider(binShell);
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.54",
3
+ "version": "0.1.55",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",