gitarsenal-cli 1.9.99 → 1.9.100

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/.venv_status.json CHANGED
@@ -1 +1 @@
1
- {"created":"2025-09-14T10:44:37.356Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
1
+ {"created":"2025-09-14T10:47:53.598Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
@@ -62,7 +62,6 @@ async function fetchE2BApiKey() {
62
62
  const e2bKeyMatch = stdout.match(/E2B_API_KEY=(e2b_[a-zA-Z0-9]+)/);
63
63
  if (e2bKeyMatch && e2bKeyMatch[1]) {
64
64
  const e2bApiKey = e2bKeyMatch[1];
65
- console.log(chalk.green(`✅ Successfully fetched E2B API key from server (format: ${e2bApiKey.substring(0, 5)}...)`));
66
65
  return e2bApiKey;
67
66
  }
68
67
 
@@ -143,9 +142,6 @@ async function runE2BSandbox(options) {
143
142
  return { success: false, error: 'E2B API key not found' };
144
143
  }
145
144
 
146
- // Log a masked version of the API key for debugging
147
- console.log(chalk.green(`✅ E2B API key found (${e2bApiKey.substring(0, 5)}...)`));
148
-
149
145
  // Set up the environment for the Python process
150
146
  const pythonExecutable = getPythonExecutable();
151
147
  if (!pythonExecutable) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.9.99",
3
+ "version": "1.9.100",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {