uilint 0.2.70 → 0.2.72

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.
@@ -252,8 +252,9 @@ function getMissingRules(configuredRuleIds, selectedRules) {
252
252
  const configuredSet = new Set(configuredRuleIds);
253
253
  return selectedRules.filter((rule) => !configuredSet.has(rule.id));
254
254
  }
255
+
255
256
  export {
256
257
  createPlan,
257
258
  getMissingRules
258
259
  };
259
- //# sourceMappingURL=plan-P2XKOXH5.js.map
260
+ //# sourceMappingURL=chunk-2BNEL5IX.js.map
package/dist/index.js CHANGED
@@ -4534,9 +4534,15 @@ program.command("update").description("Update existing style guide with new styl
4534
4534
  llm: options.llm
4535
4535
  });
4536
4536
  });
4537
- program.command("init").description("Initialize UILint integration").option("--force", "Overwrite existing configuration files").action(async (options) => {
4538
- const { initUI } = await import("./init-ui-ZDR65J2L.js");
4539
- await initUI({ force: options.force });
4537
+ 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)").action(async (options) => {
4538
+ const { initUI } = await import("./init-ui-VOLYNE5G.js");
4539
+ await initUI({
4540
+ force: options.force,
4541
+ react: options.react,
4542
+ eslint: options.eslint,
4543
+ genstyleguide: options.genstyleguide,
4544
+ skill: options.skill
4545
+ });
4540
4546
  });
4541
4547
  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) => {
4542
4548
  const { removeUI } = await import("./remove-ui-US2KVOKZ.js");