nextjs-cms-kit 0.5.25 → 0.5.26

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.
@@ -25,7 +25,7 @@ export const setupCommand = new Command('setup').description('Complete nextjs-cm
25
25
  note('Generating database schema...');
26
26
  // Use spawn to properly handle streams and prevent hanging
27
27
  await new Promise((resolve, reject) => {
28
- const child = spawn('pnpm', ['drizzle-kit', 'push --force', '--config=drizzle.config.js'], {
28
+ const child = spawn('pnpm', ['drizzle-kit', 'push --force', '--config=drizzle.config.ts'], {
29
29
  cwd: process.cwd(),
30
30
  env: { ...process.env },
31
31
  stdio: 'inherit', // Inherit stdio to prevent hanging and show output directly
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nextjs-cms-kit",
3
3
  "private": false,
4
- "version": "0.5.25",
4
+ "version": "0.5.26",
5
5
  "bin": {
6
6
  "nextjs-cms-kit": "./dist/index.js"
7
7
  },
@@ -27,15 +27,13 @@
27
27
  "mysql2": "^3.12.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "nextjs-cms": "0.5.25"
30
+ "nextjs-cms": "0.5.26"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/bcrypt": "^6.0.0",
34
34
  "drizzle-kit": "^0.31.5",
35
35
  "eslint": "^9.12.0",
36
36
  "prettier": "^3.3.3",
37
- "recast": "^0.23.11",
38
- "tsup": "^8.3.6",
39
37
  "tsx": "^4.20.6",
40
38
  "typescript": "^5.9.2",
41
39
  "@lzcms/eslint-config": "0.3.0",