Skip to content
Open
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
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ sudo mv amber amber-lsp /usr/local/bin/
**Windows:**
Use WSL2 or a virtual machine. Native Windows support is not currently available.

### Package Manager Compatibility

Amber CLI is designed to work with upstream `crystal-lang/shards`, and we also
validate it against the additive fork currently distributed as `shards-alpha`.
The goal is straightforward: standard Amber workflows should continue to work
with plain `shards` commands, while compatible forks can add tooling without
changing how a new Amber project gets started.

### Create Your First App

```bash
Expand Down
2 changes: 1 addition & 1 deletion src/amber_cli/generators/native_app.cr
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ all: macos
# --- First-time setup ---

setup:
shards-alpha install || shards install || true
shards install || shards-alpha install || true
@# crystal-audio shard name has a hyphen but source uses underscore
@# Crystal's require resolution needs the underscore directory
@if [ ! -e lib/crystal_audio ]; then \\
Expand Down
Loading