weloop-kosign 1.0.7 → 1.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weloop-kosign",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "CLI tool for installing Weloop UI components",
5
5
  "keywords": [
6
6
  "weloop",
@@ -715,7 +715,7 @@ async function installCSSStyles(config, registryUrl, forceUpdate = false, silent
715
715
  function createUtilsFile(utilsPath) {
716
716
  if (fs.existsSync(utilsPath)) return;
717
717
 
718
- warn(`utils file not found at ${utilsPath}. Creating it...`);
718
+ // Silently create utils file (matching shadcn/ui behavior)
719
719
  ensureDirectoryExists(path.dirname(utilsPath));
720
720
 
721
721
  const utilsContent = `import { clsx, type ClassValue } from "clsx"
@@ -726,7 +726,6 @@ export function cn(...inputs: ClassValue[]) {
726
726
  }
727
727
  `;
728
728
  fs.writeFileSync(utilsPath, utilsContent);
729
- success(`Created ${path.relative(process.cwd(), utilsPath)}`);
730
729
  }
731
730
 
732
731
  async function installComponent(componentName, options = {}) {