hxtree/galaxyops

rush coverage

Closed this issue · 2 comments

hxtree commented

Is your feature request related to a problem? Please describe.
Rush coverage must match the version of the rush used in the repo.
This does not help with package reuse.

It would probably make more sense to dependent on another abstraction layer than rush for projects, as to prevent need to use exact version.

Describe the solution you'd like
e.g. pnpm could be used, although the following includes /dist/, cdk.out/ etc.

pnpm m ls --json | jq -r '.[].path

jq -r '.[].username'

Describe alternatives you've considered
glob files

// glob.js file

const glob = require('glob');
glob('**/coverage.final', (err, files) => {
    if (err) {
        console.log(err);
        return;
    }

    console.log(files);
});

find -name -- maybe performant?

Additional context
Add any other context or screenshots about the feature request here.

Not a road blocker but would make package much more user friendly for other monorepos.

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 30 days.

This issue was closed because it has been stalled for 30 days with no activity. Please open a new issue if the issue is still relevant, linking to this one.