uilint 0.2.150 → 0.2.152

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
@@ -6043,7 +6043,7 @@ program.command("update").description("Update existing style guide with new styl
6043
6043
  llm: options.llm
6044
6044
  });
6045
6045
  });
6046
- var initCommand = program.command("init").description("Initialize UILint integration").option("--force", "Overwrite existing configuration files").option("--react", "Install React DevTool (non-interactive)").option("--eslint", "Install ESLint rules (non-interactive)").option("--genstyleguide", "Generate styleguide (non-interactive)").option("--skill", "Install Claude skill (non-interactive)").option("--vision", "Install Vision Analysis plugin").option("--semantic", "Install Semantic Analysis plugin").option("--duplicates", "Install Duplicates Detection plugin");
6046
+ var initCommand = program.command("init").description("Initialize UILint integration").option("--force", "Overwrite existing configuration files").option("--react", "Install React DevTool (non-interactive)").option("--eslint", "Install ESLint rules (non-interactive)").option("--genstyleguide", "Generate styleguide (non-interactive)").option("--skill", "Install Claude skill (non-interactive)").option("--vision", "Install Vision Analysis plugin").option("--semantic", "Install Semantic Analysis plugin").option("--duplicates", "Install Duplicates Detection plugin").option("--coverage", "Install test coverage rules");
6047
6047
  program.command("remove").description("Remove UILint components from your project").option("--dry-run", "Preview changes without removing anything").option("-y, --yes", "Skip confirmation prompt").action(async (options) => {
6048
6048
  const { removeUI } = await import("./remove-ui-GZRFA2AC.js");
6049
6049
  await removeUI({ dryRun: options.dryRun, yes: options.yes });
@@ -6113,7 +6113,7 @@ program.command("upgrade").description("Update installed ESLint rules to latest
6113
6113
  async function main() {
6114
6114
  const { discoverPlugins: discoverPlugins2 } = await import("./plugin-loader-V5CAMTYQ.js");
6115
6115
  const pluginManifests = await discoverPlugins2();
6116
- const KNOWN_PLUGIN_FLAGS = ["vision", "semantic", "duplicates"];
6116
+ const KNOWN_PLUGIN_FLAGS = ["vision", "semantic", "duplicates", "coverage"];
6117
6117
  for (const manifest of pluginManifests) {
6118
6118
  if (!KNOWN_PLUGIN_FLAGS.includes(manifest.cliFlag)) {
6119
6119
  initCommand.option(`--${manifest.cliFlag}`, manifest.cliDescription);