create-sonicjs 2.3.1 → 2.3.2

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": "create-sonicjs",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Create a new SonicJS application with zero configuration",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.js CHANGED
@@ -418,7 +418,7 @@ async function copyTemplate(templateName, targetDir, options) {
418
418
 
419
419
  // Add @sonicjs-cms/core dependency
420
420
  packageJson.dependencies = {
421
- '@sonicjs-cms/core': '^2.3.1',
421
+ '@sonicjs-cms/core': '^2.3.2',
422
422
  ...packageJson.dependencies
423
423
  }
424
424
 
@@ -9,6 +9,7 @@
9
9
  "deploy": "wrangler deploy",
10
10
  "db:migrate": "wrangler d1 migrations apply DB",
11
11
  "db:migrate:local": "wrangler d1 migrations apply DB --local",
12
+ "db:reset": "sonicjs-db-reset",
12
13
  "db:studio": "drizzle-kit studio",
13
14
  "type-check": "tsc --noEmit",
14
15
  "test": "vitest --run",