Chore/build npm (#9)

Co-authored-by: DigHuang <114602213+DigHuang@users.noreply.github.com>
Co-authored-by: Felix <24791380+vcfgv@users.noreply.github.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Haze
2026-02-09 15:10:08 +08:00
committed by GitHub
Unverified
parent 0b7f1c700e
commit de445ae3d5
37 changed files with 7359 additions and 1586 deletions

View File

@@ -0,0 +1,85 @@
#!/usr/bin/env zx
import 'zx/globals';
import sharp from 'sharp';
import png2icons from 'png2icons';
import { fileURLToPath } from 'url';
// Calculate paths
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const PROJECT_ROOT = path.resolve(__dirname, '..');
const ICONS_DIR = path.join(PROJECT_ROOT, 'resources', 'icons');
const SVG_SOURCE = path.join(ICONS_DIR, 'icon.svg');
echo`🎨 Generating ClawX icons using Node.js...`;
// Check if SVG source exists
if (!fs.existsSync(SVG_SOURCE)) {
echo`❌ SVG source not found: ${SVG_SOURCE}`;
process.exit(1);
}
// Ensure icons directory exists
await fs.ensureDir(ICONS_DIR);
try {
// 1. Generate Master PNG Buffer (1024x1024)
echo` Processing SVG source...`;
const masterPngBuffer = await sharp(SVG_SOURCE)
.resize(1024, 1024)
.png() // Ensure it's PNG
.toBuffer();
// Save the main icon.png (typically 512x512 for Electron root icon)
await sharp(masterPngBuffer)
.resize(512, 512)
.toFile(path.join(ICONS_DIR, 'icon.png'));
echo` ✅ Created icon.png (512x512)`;
// 2. Generate Windows .ico
// png2icons expects a buffer. It returns a buffer (or null).
// createICO(buffer, scalingAlgorithm, withSize, useMath)
// scalingAlgorithm: 1 = Bilinear (better), 2 = Hermite (good), 3 = Bezier (best/slowest)
// Defaulting to Bezier (3) for quality or Hermite (2) for speed. Let's use 2 (Hermite) as it's balanced.
echo`🪟 Generating Windows .ico...`;
const icoBuffer = png2icons.createICO(masterPngBuffer, png2icons.HERMITE, 0, false);
if (icoBuffer) {
fs.writeFileSync(path.join(ICONS_DIR, 'icon.ico'), icoBuffer);
echo` ✅ Created icon.ico`;
} else {
echo(chalk.red` ❌ Failed to create icon.ico`);
// detailed error might not be available from png2icons simple API, often returns null on failure
}
// 3. Generate macOS .icns
echo`🍎 Generating macOS .icns...`;
const icnsBuffer = png2icons.createICNS(masterPngBuffer, png2icons.HERMITE, 0);
if (icnsBuffer) {
fs.writeFileSync(path.join(ICONS_DIR, 'icon.icns'), icnsBuffer);
echo` ✅ Created icon.icns`;
} else {
echo(chalk.red` ❌ Failed to create icon.icns`);
}
// 4. Generate Linux PNGs (various sizes)
echo`🐧 Generating Linux PNG icons...`;
const linuxSizes = [16, 32, 48, 64, 128, 256, 512];
let generatedCount = 0;
for (const size of linuxSizes) {
await sharp(masterPngBuffer)
.resize(size, size)
.toFile(path.join(ICONS_DIR, `${size}x${size}.png`));
generatedCount++;
}
echo` ✅ Created ${generatedCount} Linux PNG icons`;
echo`\n✨ Icon generation complete! Files located in: ${ICONS_DIR}`;
} catch (error) {
echo(chalk.red`\n❌ Fatal Error: ${error.message}`);
process.exit(1);
}