create-inox-app 0.2.0 → 0.2.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/dist/cli.js CHANGED
@@ -22117,7 +22117,7 @@ const printPostInstall = (config) => {
22117
22117
  steps.push("cp apps/web/.env.example apps/web/.env");
22118
22118
  if (config.database !== "none") {
22119
22119
  steps.push("docker compose --profile dev up -d postgres" + (config.cache === "redis" ? " redis" : ""));
22120
- steps.push("cd apps/web && bun run db:migrate");
22120
+ steps.push("bun setup");
22121
22121
  } else if (config.cache === "redis") steps.push("docker compose --profile dev up -d redis");
22122
22122
  steps.push("bun run dev");
22123
22123
  consola.box({
@@ -16,6 +16,9 @@
16
16
  "check-types": {
17
17
  "dependsOn": ["^build"]
18
18
  },
19
+ "setup": {
20
+ "cache": false
21
+ },
19
22
  "db:generate": {},
20
23
  "db:migrate": {},
21
24
  "db:push": {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-inox-app",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Scaffold production-ready monorepo projects with one command",
5
5
  "type": "module",
6
6
  "license": "MIT",