create-momentum-app 0.4.1 → 0.5.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/README.md CHANGED
@@ -30,4 +30,5 @@ npx create-momentum-app my-app --flavor angular --database postgres
30
30
  - REST API at `/api`
31
31
  - Authentication via Better Auth
32
32
  - Drizzle ORM with PostgreSQL or SQLite
33
+ - Docker Compose setup for PostgreSQL (when using postgres)
33
34
  - Tailwind CSS with the Momentum admin theme
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-momentum-app",
3
- "version": "0.4.1",
3
+ "version": "0.5.1",
4
4
  "description": "Create a new Momentum CMS application",
5
5
  "license": "MIT",
6
6
  "author": "Momentum CMS Contributors",
@@ -35,27 +35,27 @@
35
35
  "README.md"
36
36
  ],
37
37
  "dependencies": {
38
- "@angular/aria": "21.1.2",
39
- "@angular/cdk": "21.1.2",
40
- "@angular/common": "21.1.2",
41
- "@angular/compiler": "21.1.2",
42
- "@angular/core": "21.1.2",
43
- "@angular/forms": "21.1.2",
44
- "@angular/platform-browser": "21.1.2",
45
- "@angular/platform-server": "21.1.2",
46
- "@angular/router": "21.1.2",
47
- "@angular/ssr": "21.1.2",
48
- "@aws-sdk/client-s3": "3.983.0",
49
- "@aws-sdk/s3-request-presigner": "3.983.0",
50
- "@ng-icons/core": "33.0.0",
51
- "@ng-icons/heroicons": "33.0.0",
52
- "@tiptap/core": "3.19.0",
53
- "@tiptap/extension-link": "3.19.0",
54
- "@tiptap/extension-placeholder": "3.19.0",
55
- "@tiptap/extension-underline": "3.19.0",
56
- "@tiptap/starter-kit": "3.19.0",
38
+ "@angular/aria": "21.2.0",
39
+ "@angular/cdk": "21.2.0",
40
+ "@angular/common": "21.2.0",
41
+ "@angular/compiler": "21.2.0",
42
+ "@angular/core": "21.2.0",
43
+ "@angular/forms": "21.2.0",
44
+ "@angular/platform-browser": "21.2.0",
45
+ "@angular/platform-server": "21.2.0",
46
+ "@angular/router": "21.2.0",
47
+ "@angular/ssr": "21.2.0",
48
+ "@aws-sdk/client-s3": "3.999.0",
49
+ "@aws-sdk/s3-request-presigner": "3.999.0",
50
+ "@ng-icons/core": "33.1.0",
51
+ "@ng-icons/heroicons": "33.1.0",
52
+ "@tiptap/core": "3.20.0",
53
+ "@tiptap/extension-link": "3.20.0",
54
+ "@tiptap/extension-placeholder": "3.20.0",
55
+ "@tiptap/extension-underline": "3.20.0",
56
+ "@tiptap/starter-kit": "3.20.0",
57
57
  "fs-extra": "^11.2.0",
58
- "graphql": "16.12.0",
58
+ "graphql": "16.13.0",
59
59
  "h3": "1.15.5",
60
60
  "picocolors": "^1.1.0",
61
61
  "prompts": "^2.4.2",
@@ -16,7 +16,9 @@ import momentumConfig, { authPlugin } from './momentum.config';
16
16
  const serverDistFolder = dirname(fileURLToPath(import.meta.url));
17
17
  const browserDistFolder = resolve(serverDistFolder, '../browser');
18
18
 
19
- const angularApp = new AngularNodeAppEngine();
19
+ const angularApp = new AngularNodeAppEngine({
20
+ allowedHosts: ['localhost'],
21
+ });
20
22
 
21
23
  /**
22
24
  * Create the Momentum CMS server.