@shakil-dev/shakil-stack 2.0.2 → 2.1.1
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/bin/index.js +9 -2
- package/package.json +1 -1
package/bin/index.js
CHANGED
|
@@ -115,7 +115,15 @@ const initProject = async (name) => {
|
|
|
115
115
|
cwd: path.join(projectPath, 'frontend'),
|
|
116
116
|
stdio: 'inherit'
|
|
117
117
|
});
|
|
118
|
-
|
|
118
|
+
|
|
119
|
+
console.log(chalk.cyan('📦 Adding common shadcn/ui components...'));
|
|
120
|
+
const commonComponents = ['button', 'card', 'input', 'label', 'textarea', 'dialog', 'dropdown-menu', 'table', 'tabs', 'checkbox'];
|
|
121
|
+
execSync(`npx shadcn@latest add ${commonComponents.join(' ')} -y`, {
|
|
122
|
+
cwd: path.join(projectPath, 'frontend'),
|
|
123
|
+
stdio: 'inherit'
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
console.log(chalk.green('✅ shadcn/ui and common components initialized successfully!✨'));
|
|
119
127
|
} catch (err) {
|
|
120
128
|
console.log(chalk.yellow('\n⚠️ Warning: Failed to automate shadcn/ui init. You can run "npx shadcn@latest init" in the frontend folder.'));
|
|
121
129
|
}
|
|
@@ -341,7 +349,6 @@ export const sanitizeRequest = (req: Request, res: Response, next: NextFunction)
|
|
|
341
349
|
|
|
342
350
|
datasource db {
|
|
343
351
|
provider = "postgresql"
|
|
344
|
-
url = env("DATABASE_URL")
|
|
345
352
|
}
|
|
346
353
|
|
|
347
354
|
model User {
|