diff --git a/.gitignore b/.gitignore index 32e348e..e7340cf 100644 --- a/.gitignore +++ b/.gitignore @@ -18,4 +18,8 @@ npm-debug.log* .DS_Store Thumbs.db -.nogit/ \ No newline at end of file +.nogit/ + +# Deno +.deno/ +deno.lock \ No newline at end of file diff --git a/scripts/compile-all.sh b/scripts/compile-all.sh new file mode 100755 index 0000000..b53caec --- /dev/null +++ b/scripts/compile-all.sh @@ -0,0 +1,63 @@ +#!/bin/bash +set -e + +# Get version from deno.json +VERSION=$(cat deno.json | grep -o '"version": *"[^"]*"' | cut -d'"' -f4) +BINARY_DIR="dist/binaries" + +echo "================================================" +echo " NUPST Compilation Script" +echo " Version: ${VERSION}" +echo "================================================" +echo "" +echo "Compiling for all supported platforms..." +echo "" + +# Create binary directory +mkdir -p "$BINARY_DIR" + +# Linux x86_64 +echo "→ Compiling for Linux x86_64..." +deno compile --allow-all --no-check --output "$BINARY_DIR/nupst-linux-x64" \ + --target x86_64-unknown-linux-gnu mod.ts +echo " ✓ Linux x86_64 complete" +echo "" + +# Linux ARM64 +echo "→ Compiling for Linux ARM64..." +deno compile --allow-all --no-check --output "$BINARY_DIR/nupst-linux-arm64" \ + --target aarch64-unknown-linux-gnu mod.ts +echo " ✓ Linux ARM64 complete" +echo "" + +# macOS x86_64 +echo "→ Compiling for macOS x86_64..." +deno compile --allow-all --no-check --output "$BINARY_DIR/nupst-macos-x64" \ + --target x86_64-apple-darwin mod.ts +echo " ✓ macOS x86_64 complete" +echo "" + +# macOS ARM64 +echo "→ Compiling for macOS ARM64..." +deno compile --allow-all --no-check --output "$BINARY_DIR/nupst-macos-arm64" \ + --target aarch64-apple-darwin mod.ts +echo " ✓ macOS ARM64 complete" +echo "" + +# Windows x86_64 +echo "→ Compiling for Windows x86_64..." +deno compile --allow-all --no-check --output "$BINARY_DIR/nupst-windows-x64.exe" \ + --target x86_64-pc-windows-msvc mod.ts +echo " ✓ Windows x86_64 complete" +echo "" + +echo "================================================" +echo " Compilation Summary" +echo "================================================" +echo "" +ls -lh "$BINARY_DIR/" | tail -n +2 +echo "" +echo "✓ All binaries compiled successfully!" +echo "" +echo "Binary location: $BINARY_DIR/" +echo ""