@principal-ai/principal-view-cli 0.1.27 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -13,8 +13,9 @@ import { createDoctorCommand } from './commands/doctor.js';
13
13
  import { createHooksCommand } from './commands/hooks.js';
14
14
  import { createCreateCommand } from './commands/create.js';
15
15
  import { createLintCommand } from './commands/lint.js';
16
+ import { createCoverageCommand } from './commands/coverage.js';
16
17
  // Version is injected at build time via package.json
17
- const VERSION = '0.1.13';
18
+ const VERSION = '0.1.28';
18
19
  const program = new Command();
19
20
  program
20
21
  .name('privu')
@@ -29,6 +30,7 @@ program.addCommand(createListCommand());
29
30
  program.addCommand(createSchemaCommand());
30
31
  program.addCommand(createDoctorCommand());
31
32
  program.addCommand(createHooksCommand());
33
+ program.addCommand(createCoverageCommand());
32
34
  // Parse command line arguments
33
35
  program.parse(process.argv);
34
36
  // Show help if no command provided
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@principal-ai/principal-view-cli",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Principal View CLI - Validate and manage .canvas configuration files",
5
5
  "main": "dist/index.cjs",
6
6
  "types": "dist/index.d.ts",