feat(wave3): add @mosaic/cli — unified mosaic CLI entry point

- Root Commander program with version + description
- Subcommand groups: coord, prdy, queue, quality-rails
- Single `mosaic` binary entry point
- Depends on all @mosaic/* workspace packages
This commit is contained in:
2026-03-06 20:22:37 -06:00
parent 7f7109fc09
commit 0193861784
13 changed files with 859 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import tsParser from '@typescript-eslint/parser';
export default [
{
files: ['src/**/*.ts', 'bin/**/*.ts', 'tests/**/*.ts'],
languageOptions: {
parser: tsParser,
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
},
rules: {},
},
];