myoperator-ui 0.0.36 → 0.0.38
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 +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1290,7 +1290,7 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
1290
1290
|
}
|
|
1291
1291
|
}
|
|
1292
1292
|
spinner.text = "Installing dependencies...";
|
|
1293
|
-
const deps = response.tailwindVersion === "v4" ? "clsx tailwind-merge class-variance-authority @radix-ui/react-slot lucide-react" : "clsx tailwind-merge class-variance-authority @radix-ui/react-slot lucide-react tailwindcss-animate";
|
|
1293
|
+
const deps = response.tailwindVersion === "v4" ? "clsx tailwind-merge class-variance-authority @radix-ui/react-slot lucide-react" : "clsx tailwind-merge class-variance-authority @radix-ui/react-slot lucide-react tailwindcss-animate tailwindcss@3 autoprefixer";
|
|
1294
1294
|
try {
|
|
1295
1295
|
execSync(`npm install ${deps}`, { cwd, stdio: "pipe" });
|
|
1296
1296
|
console.log(chalk2.green("\n \u2713 Installed dependencies"));
|
|
@@ -1327,6 +1327,8 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
1327
1327
|
console.log(chalk2.bold(" Next steps:\n"));
|
|
1328
1328
|
console.log(" 1. Add your first component:");
|
|
1329
1329
|
console.log(chalk2.cyan(" npx myoperator-ui add button\n"));
|
|
1330
|
+
console.log(" 2. Browse all components:");
|
|
1331
|
+
console.log(chalk2.cyan(" https://myoperator-ui.vercel.app\n"));
|
|
1330
1332
|
} catch (error) {
|
|
1331
1333
|
spinner.fail("Failed to initialize project");
|
|
1332
1334
|
console.error(error);
|