create-vexcms 0.1.0-alpha.10 → 0.1.0-alpha.11
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 +22 -11
- package/package.json +1 -1
- package/templates/base-nextjs/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# create-vexcms
|
|
2
2
|
|
|
3
|
+
> [!WARNING]
|
|
4
|
+
> `create-vexcms` is pre-release software, published only under the `alpha` npm
|
|
5
|
+
> dist-tag (`0.1.0-alpha.x`) — the `latest` tag on npm still points at an old,
|
|
6
|
+
> unrelated `0.0.20` line, so always scaffold with an explicit tag:
|
|
7
|
+
> `pnpm create vexcms@alpha`. Use it for experiments and evaluation only; the
|
|
8
|
+
> projects it scaffolds should not carry production traffic or real user data.
|
|
9
|
+
> Breaking changes land between alpha releases without deprecation cycles, and
|
|
10
|
+
> there is no migration path between alphas. See the
|
|
11
|
+
> [roadmap](https://docs.vexcms.dev) for what is and is not shipped.
|
|
12
|
+
|
|
3
13
|
Scaffolding CLI for [VexCMS](https://github.com/ianyimi/vex) projects. Creates a complete
|
|
4
14
|
Next.js application with a Convex backend, Better Auth authentication, and a self-hosted admin
|
|
5
15
|
panel — ready to run.
|
|
@@ -7,19 +17,19 @@ panel — ready to run.
|
|
|
7
17
|
## Usage
|
|
8
18
|
|
|
9
19
|
```bash
|
|
10
|
-
pnpm create vexcms@
|
|
20
|
+
pnpm create vexcms@alpha
|
|
11
21
|
```
|
|
12
22
|
|
|
13
23
|
Or with a project name:
|
|
14
24
|
|
|
15
25
|
```bash
|
|
16
|
-
pnpm create vexcms@
|
|
26
|
+
pnpm create vexcms@alpha my-project
|
|
17
27
|
```
|
|
18
28
|
|
|
19
29
|
Supports relative paths, including scaffolding straight into a monorepo app directory:
|
|
20
30
|
|
|
21
31
|
```bash
|
|
22
|
-
pnpm create vexcms@
|
|
32
|
+
pnpm create vexcms@alpha apps/website
|
|
23
33
|
```
|
|
24
34
|
|
|
25
35
|
## Flags
|
|
@@ -33,16 +43,16 @@ pnpm create vexcms@latest apps/website
|
|
|
33
43
|
|
|
34
44
|
```bash
|
|
35
45
|
# Empty project, no pre-built collections
|
|
36
|
-
pnpm create vexcms@
|
|
46
|
+
pnpm create vexcms@alpha my-app --bare
|
|
37
47
|
|
|
38
48
|
# Project with multi-tenant organizations
|
|
39
|
-
pnpm create vexcms@
|
|
49
|
+
pnpm create vexcms@alpha my-app --orgs
|
|
40
50
|
|
|
41
51
|
# Non-interactive, defaults only
|
|
42
|
-
pnpm create vexcms@
|
|
52
|
+
pnpm create vexcms@alpha my-app --yes
|
|
43
53
|
|
|
44
54
|
# Inside a pnpm workspace, catalog-aware
|
|
45
|
-
pnpm create vexcms@
|
|
55
|
+
pnpm create vexcms@alpha my-app --monorepo --yes
|
|
46
56
|
```
|
|
47
57
|
|
|
48
58
|
## Interactive prompts
|
|
@@ -157,7 +167,7 @@ Run from inside an existing pnpm workspace to scaffold a new app under it instea
|
|
|
157
167
|
standalone project:
|
|
158
168
|
|
|
159
169
|
```bash
|
|
160
|
-
pnpm create vexcms@
|
|
170
|
+
pnpm create vexcms@alpha my-app --monorepo --yes
|
|
161
171
|
```
|
|
162
172
|
|
|
163
173
|
The installer walks up from the current directory for the nearest `pnpm-workspace.yaml`, targets
|
|
@@ -168,11 +178,12 @@ versions), and skips both `git init` and dependency install — the root workspa
|
|
|
168
178
|
## Versioning
|
|
169
179
|
|
|
170
180
|
`create-vexcms` is versioned alongside every `@vexcms/*` package. Running
|
|
171
|
-
`pnpm create vexcms@
|
|
172
|
-
|
|
181
|
+
`pnpm create vexcms@alpha` always scaffolds with the newest pre-release. The npm
|
|
182
|
+
`latest` tag still points at an old, unrelated `0.0.20` line, so `@alpha` — or an
|
|
183
|
+
exact version — is the only way to get the current API:
|
|
173
184
|
|
|
174
185
|
```bash
|
|
175
|
-
pnpm create vexcms@0.1.0
|
|
186
|
+
pnpm create vexcms@0.1.0-alpha.10
|
|
176
187
|
```
|
|
177
188
|
|
|
178
189
|
The scaffolded project's `@vexcms/*` dependencies match the version of `create-vexcms` used to
|
package/package.json
CHANGED
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"@t3-oss/env-nextjs": "0.13.11",
|
|
25
25
|
"@tanstack/react-form": "1.33.1",
|
|
26
26
|
"@tanstack/react-query": "5.101.2",
|
|
27
|
-
"@vexcms/better-auth": "~0.1.0-alpha.
|
|
28
|
-
"@vexcms/core": "~0.1.0-alpha.
|
|
29
|
-
"@vexcms/file-storage-convex": "~0.1.0-alpha.
|
|
30
|
-
"@vexcms/next": "~0.1.0-alpha.
|
|
31
|
-
"@vexcms/react": "~0.1.0-alpha.
|
|
27
|
+
"@vexcms/better-auth": "~0.1.0-alpha.11",
|
|
28
|
+
"@vexcms/core": "~0.1.0-alpha.11",
|
|
29
|
+
"@vexcms/file-storage-convex": "~0.1.0-alpha.11",
|
|
30
|
+
"@vexcms/next": "~0.1.0-alpha.11",
|
|
31
|
+
"@vexcms/react": "~0.1.0-alpha.11",
|
|
32
32
|
"better-auth": "1.6.23",
|
|
33
33
|
"class-variance-authority": "0.7.1",
|
|
34
34
|
"clsx": "2.1.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@types/node": "20.19.43",
|
|
53
53
|
"@types/react": "19.2.17",
|
|
54
54
|
"@types/react-dom": "19.2.3",
|
|
55
|
-
"@vexcms/cli": "~0.1.0-alpha.
|
|
55
|
+
"@vexcms/cli": "~0.1.0-alpha.11",
|
|
56
56
|
"babel-plugin-react-compiler": "1.0.0",
|
|
57
57
|
"eslint": "9.39.5",
|
|
58
58
|
"eslint-config-next": "15.5.9",
|