wapm-cli icon indicating copy to clipboard operation
wapm-cli copied to clipboard

wapm-cli "scan" CI that scans the registry for broken packages

Open fschutt opened this issue 3 years ago • 1 comments

Maybe this is more something for the backend, but it happens a lot that the registry contains broken packages (because wapm-cli evolves a lot). We could make a "scan" command, that regularly scans the registry and returns a list of packages that cannot be run, similar to a "fuzzer", then warns the user of the failing package.

fschutt avatar Sep 06 '22 14:09 fschutt

{
  search(kind:PACKAGE, query:"", first: 1000) {
    edges {
      node {
        ...on PackageVersion {
          package {
            name
          }
        }
      }
    }
  }
}

fschutt avatar Sep 27 '22 18:09 fschutt