@ramonclaudio/create-vexpo 0.1.1 → 0.1.3
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
|
@@ -11,7 +11,7 @@ import prompts from 'prompts';
|
|
|
11
11
|
|
|
12
12
|
// package.json
|
|
13
13
|
var package_default = {
|
|
14
|
-
version: "0.1.
|
|
14
|
+
version: "0.1.3"};
|
|
15
15
|
|
|
16
16
|
// src/index.ts
|
|
17
17
|
var here = dirname(fileURLToPath(import.meta.url));
|
|
@@ -71,6 +71,9 @@ Target ${target} already exists. Pick a different name.`));
|
|
|
71
71
|
var NAME_RE = /^[a-z0-9][a-z0-9-]*$/;
|
|
72
72
|
var NAME_HINT = "lowercase letters, numbers, dashes; must start alphanumeric";
|
|
73
73
|
function validateNameSegment(target) {
|
|
74
|
+
if (target.startsWith("@")) {
|
|
75
|
+
return { ok: false, reason: "npm scopes are not directories; use a plain directory name" };
|
|
76
|
+
}
|
|
74
77
|
const segment = basename(target);
|
|
75
78
|
if (!NAME_RE.test(segment)) return { ok: false, reason: NAME_HINT };
|
|
76
79
|
return { ok: true };
|
|
@@ -155,4 +155,4 @@ Every `expo-*` package tracks the same SDK 56 release. Mismatched versions cause
|
|
|
155
155
|
|
|
156
156
|
`@convex-dev/better-auth@0.12.0` is the minimum compatible with `better-auth@1.6.x` (peer-dep range is `>=1.6.9 <1.7.0`). Earlier versions peer-dep `better-auth <1.6.0` and reject the `mode` field newer better-auth adds to adapter queries, breaking signup. The template pins `better-auth@1.6.16` + `@convex-dev/better-auth@0.12.3`.
|
|
157
157
|
|
|
158
|
-
`convex`
|
|
158
|
+
`convex` is pinned `~1.40.0` for now: 1.41.0 adds a `transactionLimits` options param to `runMutation` that `@convex-dev/resend@0.2.4`'s ctx types reject, which breaks the `convex/http.ts` typecheck. Widen the range back to `^1.40.0` once resend's types accept 1.41.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vexpo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": true,
|
|
5
5
|
"main": "expo-router/entry",
|
|
6
6
|
"scripts": {
|
|
@@ -50,41 +50,41 @@
|
|
|
50
50
|
"@convex-dev/rate-limiter": "^0.3.2",
|
|
51
51
|
"@convex-dev/resend": "^0.2.4",
|
|
52
52
|
"@expo/app-integrity": "~56.0.3",
|
|
53
|
-
"@expo/ui": "~56.0.
|
|
53
|
+
"@expo/ui": "~56.0.17",
|
|
54
54
|
"better-auth": "1.6.16",
|
|
55
55
|
"cbor-x": "^1.6.4",
|
|
56
|
-
"convex": "
|
|
56
|
+
"convex": "~1.40.0",
|
|
57
57
|
"convex-helpers": "^0.1.118",
|
|
58
|
-
"expo": "~56.0.
|
|
58
|
+
"expo": "~56.0.11",
|
|
59
59
|
"expo-apple-authentication": "~56.0.4",
|
|
60
60
|
"expo-application": "~56.0.3",
|
|
61
61
|
"expo-asset": "~56.0.10",
|
|
62
62
|
"expo-blur": "~56.0.3",
|
|
63
|
-
"expo-build-properties": "~56.0.
|
|
63
|
+
"expo-build-properties": "~56.0.18",
|
|
64
64
|
"expo-clipboard": "~56.0.4",
|
|
65
65
|
"expo-constants": "~56.0.11",
|
|
66
|
-
"expo-dev-client": "~56.0.
|
|
66
|
+
"expo-dev-client": "~56.0.20",
|
|
67
67
|
"expo-device": "~56.0.4",
|
|
68
68
|
"expo-font": "~56.0.4",
|
|
69
69
|
"expo-glass-effect": "~56.0.4",
|
|
70
70
|
"expo-haptics": "~56.0.3",
|
|
71
|
-
"expo-image": "~56.0.
|
|
72
|
-
"expo-image-picker": "~56.0.
|
|
73
|
-
"expo-insights": "~56.0.
|
|
74
|
-
"expo-linking": "~56.0.
|
|
71
|
+
"expo-image": "~56.0.11",
|
|
72
|
+
"expo-image-picker": "~56.0.17",
|
|
73
|
+
"expo-insights": "~56.0.17",
|
|
74
|
+
"expo-linking": "~56.0.14",
|
|
75
75
|
"expo-local-authentication": "~56.0.4",
|
|
76
76
|
"expo-network": "~56.0.5",
|
|
77
|
-
"expo-notifications": "~56.0.
|
|
78
|
-
"expo-router": "~56.2.
|
|
77
|
+
"expo-notifications": "~56.0.17",
|
|
78
|
+
"expo-router": "~56.2.10",
|
|
79
79
|
"expo-secure-store": "~56.0.4",
|
|
80
|
-
"expo-sharing": "~56.0.
|
|
80
|
+
"expo-sharing": "~56.0.17",
|
|
81
81
|
"expo-splash-screen": "~56.0.10",
|
|
82
|
-
"expo-sqlite": "~56.0.
|
|
82
|
+
"expo-sqlite": "~56.0.5",
|
|
83
83
|
"expo-status-bar": "~56.0.4",
|
|
84
84
|
"expo-symbols": "~56.0.6",
|
|
85
85
|
"expo-system-ui": "~56.0.5",
|
|
86
|
-
"expo-task-manager": "~56.0.
|
|
87
|
-
"expo-updates": "~56.0.
|
|
86
|
+
"expo-task-manager": "~56.0.18",
|
|
87
|
+
"expo-updates": "~56.0.19",
|
|
88
88
|
"expo-web-browser": "~56.0.5",
|
|
89
89
|
"react": "19.2.3",
|
|
90
90
|
"react-dom": "19.2.3",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ramonclaudio/create-vexpo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Scaffold a new vexpo project. Expo SDK 56 + Convex + Better Auth + Resend, wired for iOS, real auth, real push, real OTA, real App Store submission.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"better-auth",
|