bluedither 1.0.5 → 1.0.6

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.
@@ -55,9 +55,13 @@ export default async function login(args) {
55
55
 
56
56
  // Open browser
57
57
  import('child_process').then(({ exec }) => {
58
- const cmd = process.platform === 'win32' ? 'start' :
59
- process.platform === 'darwin' ? 'open' : 'xdg-open';
60
- exec(`${cmd} "${loginUrl}"`);
58
+ if (process.platform === 'win32') {
59
+ exec(`start "" "${loginUrl}"`);
60
+ } else if (process.platform === 'darwin') {
61
+ exec(`open "${loginUrl}"`);
62
+ } else {
63
+ exec(`xdg-open "${loginUrl}"`);
64
+ }
61
65
  });
62
66
 
63
67
  // Timeout after 5 minutes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bluedither",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "A bold, dithered-shader hero theme for Claude Code — skill + fine-tuner",
5
5
  "type": "module",
6
6
  "bin": {