create-momentum-app 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/index.cjs +1 -1
  2. package/package.json +1 -1
package/index.cjs CHANGED
@@ -95,7 +95,7 @@ const pool = (dbAdapter as PostgresAdapterWithRaw).getPool();` : "",
95
95
  dbPackage: database === "postgres" ? '"pg": "^8.18.0"' : '"better-sqlite3": "^12.6.0"',
96
96
  dbDevPackage: database === "postgres" ? "" : '"@types/better-sqlite3": "^7.6.13",',
97
97
  envDbVar: database === "postgres" ? "DATABASE_URL=postgresql://postgres:postgres@localhost:5432/momentum" : "DATABASE_PATH=./data/momentum.db",
98
- defaultPort: flavor === "angular" ? "4000" : "4200",
98
+ defaultPort: "4200",
99
99
  externalDependencies: database === "postgres" ? '"pg", "pg-native"' : '"better-sqlite3"'
100
100
  };
101
101
  console.log();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-momentum-app",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Create a new Momentum CMS application",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",