gitarsenal-cli 1.5.8 → 1.5.10

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.
@@ -0,0 +1,12 @@
1
+ ╭─────────────────────────────────────────────────────────────────────────────────────────────────────────╮
2
+ │ │
3
+ │ ██████╗ ██╗████████╗ █████╗ ██████╗ ███████╗███████╗███╗ ██╗ █████╗ ██╗ ██████╗██╗ ██╗ │
4
+ │ ██╔════╝ ██║╚══██╔══╝██╔══██╗██╔══██╗██╔════╝██╔════╝████╗ ██║██╔══██╗██║ ██╔════╝██║ ██║ │
5
+ │ ██║ ███╗██║ ██║ ███████║██████╔╝███████╗█████╗ ██╔██╗ ██║███████║██║ ██║ ██║ ██║ │
6
+ │ ██║ ██║██║ ██║ ██╔══██║██╔══██╗╚════██║██╔══╝ ██║╚██╗██║██╔══██║██║ ██║ ██║ ██║ │
7
+ │ ╚██████╔╝██║ ██║ ██║ ██║██║ ██║███████║███████╗██║ ╚████║██║ ██║███████╗ ╚██████╗███████╗██║ │
8
+ │ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝ ╚═════╝╚══════╝╚═╝ │
9
+ │ │
10
+ │ GPU-Accelerated Development Environments │
11
+ │ │
12
+ ╰─────────────────────────────────────────────────────────────────────────────────────────────────────────╯
package/bin/gitarsenal.js CHANGED
@@ -16,12 +16,21 @@ const boxen = require('boxen');
16
16
  updateNotifier({ pkg }).notify();
17
17
 
18
18
  // Display banner
19
- console.log(boxen(chalk.bold.green('GitArsenal CLI') + '\n' + chalk.blue('Create GPU-accelerated development environments'), {
20
- padding: 1,
21
- margin: 1,
22
- borderStyle: 'round',
23
- borderColor: 'green'
24
- }));
19
+ const fs = require('fs');
20
+
21
+ try {
22
+ const bannerPath = path.join(__dirname, '..', 'ascii_banner.txt');
23
+ const banner = fs.readFileSync(bannerPath, 'utf8');
24
+ console.log(chalk.green(banner));
25
+ } catch (error) {
26
+ // Fallback to simple banner if ASCII art file is not found
27
+ console.log(boxen(chalk.bold.green('GitArsenal CLI') + '\n' + chalk.blue('Create GPU-accelerated development environments'), {
28
+ padding: 1,
29
+ margin: 1,
30
+ borderStyle: 'round',
31
+ borderColor: 'green'
32
+ }));
33
+ }
25
34
 
26
35
  // Set up main command
27
36
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -26,7 +26,7 @@ try:
26
26
  print(f"✅ Using tokens from proxy server or defaults")
27
27
  except ImportError:
28
28
  # If the module is not available, use hardcoded tokens
29
- print(f"⚠️ Using default tokens")
29
+ # print(f"⚠️ Using default tokens")
30
30
 
31
31
  # Set environment variables
32
32
  os.environ["MODAL_TOKEN_ID"] = TOKEN_ID
@@ -29,7 +29,7 @@ try:
29
29
  print(f"✅ Using tokens from proxy server or defaults")
30
30
  except ImportError:
31
31
  # If the module is not available, use hardcoded tokens
32
- print(f"⚠️ Using default tokens")
32
+ # print(f"⚠️ Using default tokens")
33
33
 
34
34
  print("🔧 Modal Token Solution - Comprehensive Fix")
35
35