Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ jobs:
cargo build --bin andromeda-compile --release --target ${{ matrix.rust-target }} --manifest-path ./crates/cli/Cargo.toml
cargo build --bin andromeda-fmt --release --target ${{ matrix.rust-target }} --manifest-path ./crates/cli/Cargo.toml
cargo build --bin andromeda-lint --release --target ${{ matrix.rust-target }} --manifest-path ./crates/cli/Cargo.toml
cargo build --bin andromeda-check --release --target ${{ matrix.rust-target }} --manifest-path ./crates/cli/Cargo.toml
cargo build --bin andromeda-bundle --release --target ${{ matrix.rust-target }} --manifest-path ./crates/cli/Cargo.toml
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
Expand Down Expand Up @@ -188,7 +187,7 @@ jobs:
fi

# Prepare satellite binaries (only if they exist)
for satellite in run compile fmt lint check bundle; do
for satellite in run compile fmt lint bundle; do
if [ -f "andromeda-${satellite}.exe" ]; then
# Windows binaries
cp "andromeda-${satellite}.exe" "andromeda-${satellite}-${{ matrix.rust-target }}.exe"
Expand Down Expand Up @@ -222,7 +221,6 @@ jobs:
target/${{ matrix.rust-target }}/release/andromeda-compile-${{ matrix.rust-target }}*
target/${{ matrix.rust-target }}/release/andromeda-fmt-${{ matrix.rust-target }}*
target/${{ matrix.rust-target }}/release/andromeda-lint-${{ matrix.rust-target }}*
target/${{ matrix.rust-target }}/release/andromeda-check-${{ matrix.rust-target }}*
target/${{ matrix.rust-target }}/release/andromeda-bundle-${{ matrix.rust-target }}*

release:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["the Andromeda team"]
edition = "2024"
license = "Mozilla Public License 2.0"
repository = "https://github.com/tryandromeda/andromeda"
version = "0.1.9"
version = "0.1.10"

[workspace.dependencies]
andromeda-core = { path = "crates/core" }
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ keyboard-driven Breakout clone exercising the full window + canvas input/render
- **andromeda-compile** - Compile JS/TS to executables
- **andromeda-fmt** - Format code
- **andromeda-lint** - Lint code for quality issues
- **andromeda-check** - Type-check TypeScript
- **andromeda-bundle** - Bundle and minify code

## Crates
Expand Down
4 changes: 0 additions & 4 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ path = "src/bin/satellite_fmt.rs"
name = "andromeda-lint"
path = "src/bin/satellite_lint.rs"

[[bin]]
name = "andromeda-check"
path = "src/bin/satellite_check.rs"

[[bin]]
name = "andromeda-bundle"
path = "src/bin/satellite_bundle.rs"
Expand Down
9 changes: 4 additions & 5 deletions crates/cli/src/bin/installer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,15 @@ enum InstallerCommand {
/// - compile: Compile JS/TS into standalone executables
/// - fmt: Format JavaScript/TypeScript files
/// - lint: Lint JavaScript/TypeScript files
/// - check: Type-check TypeScript files
/// - bundle: Bundle and minify JS/TS files
/// - all: Install all satellites
///
/// Examples:
/// andromeda-installer satellite run
/// andromeda-installer satellite fmt lint check
/// andromeda-installer satellite fmt lint
/// andromeda-installer satellite all --force
Satellite {
/// Satellites to install (run, compile, fmt, lint, check, bundle, or 'all')
/// Satellites to install (run, compile, fmt, lint, bundle, or 'all')
#[arg(required = true)]
satellites: Vec<String>,

Expand Down Expand Up @@ -93,7 +92,7 @@ struct GitHubAsset {
const REPO_OWNER: &str = "tryandromeda";
const REPO_NAME: &str = "andromeda";

const AVAILABLE_SATELLITES: &[&str] = &["run", "compile", "fmt", "lint", "check", "bundle"];
const AVAILABLE_SATELLITES: &[&str] = &["run", "compile", "fmt", "lint", "bundle"];

fn main() -> CliResult<()> {
let cli = Cli::parse();
Expand Down Expand Up @@ -563,7 +562,7 @@ fn print_satellite_header() {
println!("══════════════════════════════════════════");
println!();
println!("Satellites are specialized, lightweight binaries for specific tasks.");
println!("Available: run, compile, fmt, lint, check, bundle");
println!("Available: run, compile, fmt, lint, bundle");
println!();
}

Expand Down
35 changes: 0 additions & 35 deletions crates/cli/src/bin/satellite_check.rs

This file was deleted.

5 changes: 3 additions & 2 deletions crates/cli/src/bundle.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

use oxc_allocator::Allocator;
use oxc_mangler::MangleOptions;
Expand Down
Loading
Loading