style: fix formatting with Prettier

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
SuperComboGamer
2025-12-21 20:31:57 -05:00
parent 584f5a3426
commit 8d578558ff
295 changed files with 9088 additions and 10546 deletions

View File

@@ -13,19 +13,13 @@ const lockfilePath = join(process.cwd(), 'package-lock.json');
try {
let content = readFileSync(lockfilePath, 'utf8');
const originalContent = content;
// Convert git+ssh://git@github.com/ to git+https://github.com/
content = content.replace(
/git\+ssh:\/\/git@github\.com\//g,
'git+https://github.com/'
);
content = content.replace(/git\+ssh:\/\/git@github\.com\//g, 'git+https://github.com/');
// Also handle other potential git+ssh patterns (e.g., git+ssh://git@gitlab.com/)
content = content.replace(
/git\+ssh:\/\/git@([^/]+)\//g,
'git+https://$1/'
);
content = content.replace(/git\+ssh:\/\/git@([^/]+)\//g, 'git+https://$1/');
if (content !== originalContent) {
writeFileSync(lockfilePath, content, 'utf8');
console.log('✓ Fixed git+ssh:// URLs in package-lock.json');
@@ -38,4 +32,3 @@ try {
console.error('Error fixing package-lock.json:', error.message);
process.exit(1);
}