create-vexcms 0.0.5 → 0.0.7
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/index.js
CHANGED
|
@@ -2398,6 +2398,10 @@ async function main() {
|
|
|
2398
2398
|
message: "(4/8) Enable email/password authentication?",
|
|
2399
2399
|
default: true
|
|
2400
2400
|
});
|
|
2401
|
+
const orgs = opts.orgs ?? await confirm({
|
|
2402
|
+
message: "(5/8) Enable multi-tenant (organizations)?",
|
|
2403
|
+
default: false
|
|
2404
|
+
});
|
|
2401
2405
|
const popularProviders = getPopularProviders();
|
|
2402
2406
|
const additionalProviders = getAdditionalProviders();
|
|
2403
2407
|
const allProviderChoices = [
|
|
@@ -2412,13 +2416,9 @@ async function main() {
|
|
|
2412
2416
|
}))
|
|
2413
2417
|
];
|
|
2414
2418
|
const oauthProviders = await checkbox({
|
|
2415
|
-
message: "(
|
|
2419
|
+
message: "(6/8) Select OAuth providers (space to toggle, enter to confirm):",
|
|
2416
2420
|
choices: allProviderChoices
|
|
2417
2421
|
});
|
|
2418
|
-
const orgs = opts.orgs ?? await confirm({
|
|
2419
|
-
message: "(6/8) Enable multi-tenant (organizations)?",
|
|
2420
|
-
default: false
|
|
2421
|
-
});
|
|
2422
2422
|
const initGit = await confirm({
|
|
2423
2423
|
message: "(7/8) Initialize a Git repository?",
|
|
2424
2424
|
default: true
|
package/package.json
CHANGED
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"@t3-oss/env-nextjs": "^0.13.10",
|
|
23
23
|
"@tanstack/react-form": "^1.27.7",
|
|
24
24
|
"@tanstack/react-query": "^5.90.17",
|
|
25
|
-
"@vexcms/admin-next": "
|
|
26
|
-
"@vexcms/better-auth": "
|
|
27
|
-
"@vexcms/core": "
|
|
28
|
-
"@vexcms/richtext": "
|
|
29
|
-
"@vexcms/ui": "
|
|
30
|
-
"@vexcms/file-storage-convex": "
|
|
25
|
+
"@vexcms/admin-next": "~0.0.7",
|
|
26
|
+
"@vexcms/better-auth": "~0.0.7",
|
|
27
|
+
"@vexcms/core": "~0.0.7",
|
|
28
|
+
"@vexcms/richtext": "~0.0.7",
|
|
29
|
+
"@vexcms/ui": "~0.0.7",
|
|
30
|
+
"@vexcms/file-storage-convex": "~0.0.7",
|
|
31
31
|
"better-auth": ">=1.4.9 <1.5.0",
|
|
32
32
|
"class-variance-authority": "^0.7.1",
|
|
33
33
|
"clsx": "^2.1.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/node": "^20",
|
|
53
53
|
"@types/react": "^19",
|
|
54
54
|
"@types/react-dom": "^19",
|
|
55
|
-
"@vexcms/cli": "
|
|
55
|
+
"@vexcms/cli": "~0.0.7",
|
|
56
56
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
57
57
|
"eslint": "^9",
|
|
58
58
|
"eslint-config-next": "15.5.9",
|
|
@@ -28,21 +28,6 @@
|
|
|
28
28
|
],
|
|
29
29
|
"@convex/*": [
|
|
30
30
|
"./convex/*"
|
|
31
|
-
],
|
|
32
|
-
"@vexcms/core": [
|
|
33
|
-
"../../packages/core/src/index.ts"
|
|
34
|
-
],
|
|
35
|
-
"@vexcms/ui": [
|
|
36
|
-
"../../packages/ui/src/index.ts"
|
|
37
|
-
],
|
|
38
|
-
"@vexcms/admin-next": [
|
|
39
|
-
"../../packages/admin-next/src/index.ts"
|
|
40
|
-
],
|
|
41
|
-
"@vexcms/better-auth": [
|
|
42
|
-
"../../packages/better-auth/src/index.ts"
|
|
43
|
-
],
|
|
44
|
-
"@vexcms/file-storage-convex": [
|
|
45
|
-
"../../packages/file-storage-convex/src/index.ts"
|
|
46
31
|
]
|
|
47
32
|
}
|
|
48
33
|
},
|