r0gue-io/pop-cli

refactor(templates): replace `SupportedVersions` with `UnSupportedVersions`

Open

#400 opened on Jan 16, 2025

View on GitHub
 (0 comments) (0 reactions) (0 assignees)Rust (39 forks)github user discovery
good first issuemedium

Repository metrics

Stars
 (113 stars)
PR merge metrics
 (No merged PRs in 30d)

Description

The current template logic uses SupportedVersions to define explicitly supported versions (link to code). This approach requires code updates for every new version, which is less efficient.

This PR changes the logic to define UnsupportedVersions instead. By skipping unsupported versions, we reduce the need for frequent updates and streamline future version handling.

Contributor guide