Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update registry by adding all known packages #69

Merged
merged 5 commits into from
Feb 18, 2024

Commits on Feb 18, 2024

  1. update the registry of known packages

    this uses the content of `index.nuon` and the following pipeline to
    automate the process:
    ```nushell
    open index.nuon
        | update package { str replace "github.com:" "https://raw.githubusercontent.com/" }
        | each {|it|
            let url = if $it.dir? != null {
                [$it.package, "main", $it.dir, "nupm.nuon" ] | str join "/"
            } else {
                [$it.package, "main", "nupm.nuon" ] | str join "/"
            }
    
            print $url
            http get $url
        }
        | to nuon --indent 4
    ```
    amtoine committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    cbca144 View commit details
    Browse the repository at this point in the history
  2. remove the old index.nuon

    amtoine committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    f6d1992 View commit details
    Browse the repository at this point in the history
  3. fix the urls in the registry

    amtoine committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    0b01d46 View commit details
    Browse the repository at this point in the history
  4. fix revisions of amtoine's packages

    some packages don't have a tag that's the same as the package version,
    they should use a branch name or a commit hash.
    amtoine committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    b1a704f View commit details
    Browse the repository at this point in the history
  5. fix revisions

    amtoine committed Feb 18, 2024
    Configuration menu
    Copy the full SHA
    0664f58 View commit details
    Browse the repository at this point in the history