rsm-hcd / spino

Spino is a build orchestration tool specifically for use within Deno Workspaces. It is designed to be a simple, fast, and reliable tool for managing the build process of Deno projects.
MIT License
1 stars 1 forks source link

feat:add `list` command to list all workspace tasks grouped by workspace #12

Open allenthich opened 1 week ago

allenthich commented 1 week ago

This will close feat: add command to list all tasks.

Current Behavior:

No command exists to list all the available workspace tasks

Expected Behavior:

Run spino list to display all available workspace tasks

Example output:

@rsm-hcd/spino:
    test:        deno task test:ci --watch
    test:ci:     deno test --allow-read

Related Notes/Future issues:

allenthich commented 3 days ago

@myty Thanks for taking the time to provide feedback! I will address the comments and add a test file this weekend.

allenthich commented 5 hours ago

@myty I've added a few changes in order to test the main.ts entry point and its handling of executing commands. Any feedback on the changes would very much be appreciated!