@gitlawb/openclaude 0.1.3 → 0.1.4

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.
Files changed (2) hide show
  1. package/dist/cli.mjs +30 -18
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -122810,7 +122810,7 @@ var init_metadata = __esm(() => {
122810
122810
  isClaudeAiAuth: isClaudeAISubscriber(),
122811
122811
  version: "99.0.0",
122812
122812
  versionBase: getVersionBase(),
122813
- buildTime: "2026-04-01T11:35:42.470Z",
122813
+ buildTime: "2026-04-01T12:00:15.419Z",
122814
122814
  deploymentEnvironment: env3.detectDeploymentEnvironment(),
122815
122815
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
122816
122816
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -142917,10 +142917,11 @@ var createNode = (nodeName) => {
142917
142917
  node.attributes[key] = value;
142918
142918
  markDirty(node);
142919
142919
  }, setStyle = (node, style) => {
142920
- if (stylesEqual(node.style, style)) {
142920
+ const nextStyle = style ?? {};
142921
+ if (stylesEqual(node.style, nextStyle)) {
142921
142922
  return;
142922
142923
  }
142923
- node.style = style;
142924
+ node.style = nextStyle;
142924
142925
  markDirty(node);
142925
142926
  }, setTextStyles = (node, textStyles) => {
142926
142927
  if (shallowEqual(node.textStyles, textStyles)) {
@@ -143883,7 +143884,16 @@ $ npm install --save-dev react-devtools-core
143883
143884
  return props["autoFocus"] === true;
143884
143885
  },
143885
143886
  prepareUpdate(_node, _type, oldProps, newProps) {
143886
- return oldProps !== newProps;
143887
+ const props = diff(oldProps, newProps);
143888
+ const style = diff(oldProps["style"], newProps["style"]);
143889
+ if (!props && !style) {
143890
+ return null;
143891
+ }
143892
+ return {
143893
+ props,
143894
+ style,
143895
+ nextStyle: newProps["style"]
143896
+ };
143887
143897
  },
143888
143898
  commitMount(node) {
143889
143899
  getFocusManager(node).handleAutoFocus(node);
@@ -143909,9 +143919,11 @@ $ npm install --save-dev react-devtools-core
143909
143919
  cleanupYogaNode(removeNode);
143910
143920
  getFocusManager(node).handleNodeRemoved(removeNode, node);
143911
143921
  },
143912
- commitUpdate(node, _updatePayload, _type, oldProps, newProps) {
143913
- const props = diff(oldProps, newProps);
143914
- const style = diff(oldProps["style"], newProps["style"]);
143922
+ commitUpdate(node, updatePayload, _type, _oldProps, _newProps) {
143923
+ if (!updatePayload) {
143924
+ return;
143925
+ }
143926
+ const { props, style, nextStyle } = updatePayload;
143915
143927
  if (props) {
143916
143928
  for (const [key, value] of Object.entries(props)) {
143917
143929
  if (key === "style") {
@@ -143930,7 +143942,7 @@ $ npm install --save-dev react-devtools-core
143930
143942
  }
143931
143943
  }
143932
143944
  if (style && node.yogaNode) {
143933
- styles_default(node.yogaNode, style, newProps["style"]);
143945
+ styles_default(node.yogaNode, style, nextStyle);
143934
143946
  }
143935
143947
  },
143936
143948
  commitTextUpdate(node, _oldText, newText) {
@@ -363668,7 +363680,7 @@ function getAnthropicEnvMetadata() {
363668
363680
  function getBuildAgeMinutes() {
363669
363681
  if (false)
363670
363682
  ;
363671
- const buildTime = new Date("2026-04-01T11:35:42.470Z").getTime();
363683
+ const buildTime = new Date("2026-04-01T12:00:15.419Z").getTime();
363672
363684
  if (isNaN(buildTime))
363673
363685
  return;
363674
363686
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -427993,7 +428005,7 @@ function getRecentActivitySync() {
427993
428005
  return cachedActivity;
427994
428006
  }
427995
428007
  function getLogoDisplayData() {
427996
- const version2 = process.env.DEMO_VERSION ?? "0.1.3" ?? "99.0.0";
428008
+ const version2 = process.env.DEMO_VERSION ?? "0.1.4" ?? "99.0.0";
427997
428009
  const serverUrl = getDirectConnectServerUrl();
427998
428010
  const displayPath = process.env.DEMO_VERSION ? "/code/claude" : getDisplayPath(getCwd());
427999
428011
  const cwd2 = serverUrl ? `${displayPath} in ${serverUrl.replace(/^https?:\/\//, "")}` : displayPath;
@@ -457109,7 +457121,7 @@ var init_bridge_kick = __esm(() => {
457109
457121
  var call56 = async () => {
457110
457122
  return {
457111
457123
  type: "text",
457112
- value: `${"99.0.0"} (built ${"2026-04-01T11:35:42.470Z"})`
457124
+ value: `${"99.0.0"} (built ${"2026-04-01T12:00:15.419Z"})`
457113
457125
  };
457114
457126
  }, version2, version_default;
457115
457127
  var init_version = __esm(() => {
@@ -529841,7 +529853,7 @@ function WelcomeV2() {
529841
529853
  dimColor: true,
529842
529854
  children: [
529843
529855
  "v",
529844
- "0.1.3",
529856
+ "0.1.4",
529845
529857
  " "
529846
529858
  ]
529847
529859
  }, undefined, true, undefined, this)
@@ -530041,7 +530053,7 @@ function WelcomeV2() {
530041
530053
  dimColor: true,
530042
530054
  children: [
530043
530055
  "v",
530044
- "0.1.3",
530056
+ "0.1.4",
530045
530057
  " "
530046
530058
  ]
530047
530059
  }, undefined, true, undefined, this)
@@ -530267,7 +530279,7 @@ function AppleTerminalWelcomeV2(t0) {
530267
530279
  dimColor: true,
530268
530280
  children: [
530269
530281
  "v",
530270
- "0.1.3",
530282
+ "0.1.4",
530271
530283
  " "
530272
530284
  ]
530273
530285
  }, undefined, true, undefined, this);
@@ -530521,7 +530533,7 @@ function AppleTerminalWelcomeV2(t0) {
530521
530533
  dimColor: true,
530522
530534
  children: [
530523
530535
  "v",
530524
- "0.1.3",
530536
+ "0.1.4",
530525
530537
  " "
530526
530538
  ]
530527
530539
  }, undefined, true, undefined, this);
@@ -550564,7 +550576,7 @@ Usage: claude --remote "your task description"`, () => gracefulShutdown(1));
550564
550576
  pendingHookMessages
550565
550577
  }, renderAndRun);
550566
550578
  }
550567
- }).version("0.1.3 (Open Claude)", "-v, --version", "Output the version number");
550579
+ }).version("0.1.4 (Open Claude)", "-v, --version", "Output the version number");
550568
550580
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
550569
550581
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
550570
550582
  if (canUserConfigureAdvisor()) {
@@ -551124,7 +551136,7 @@ function validateProviderEnvOrExit() {
551124
551136
  async function main2() {
551125
551137
  const args = process.argv.slice(2);
551126
551138
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
551127
- console.log(`${"0.1.3"} (Open Claude)`);
551139
+ console.log(`${"0.1.4"} (Open Claude)`);
551128
551140
  return;
551129
551141
  }
551130
551142
  validateProviderEnvOrExit();
@@ -551211,4 +551223,4 @@ async function main2() {
551211
551223
  }
551212
551224
  main2();
551213
551225
 
551214
- //# debugId=2DFC707008E32F7064756E2164756E21
551226
+ //# debugId=D541B2BA827199FD64756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlawb/openclaude",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Claude Code opened to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {