buildx-cli 1.8.37 → 1.8.38
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 +12 -0
- package/dist/README.md +12 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -292,6 +292,12 @@ Next.js starter behavior (`--app next`):
|
|
|
292
292
|
- includes built-in theme mode setup (`light|dark|system`) with toggle.
|
|
293
293
|
- includes built-in locale setup (`en|th`) with selector.
|
|
294
294
|
- default web UI stack is HeroUI (`@heroui/react`) as primary component framework.
|
|
295
|
+
- generated provider wiring does not import/wrap `HeroUIProvider` (compatibility with current HeroUI export surface).
|
|
296
|
+
- generated auth wiring supports dual mode:
|
|
297
|
+
- `buildx` mode (root auth API, no project scope)
|
|
298
|
+
- `project` mode (project-scoped auth API with project id)
|
|
299
|
+
- `auto` mode (uses project id only when provided)
|
|
300
|
+
- starter card layout uses `CardContent` (not `CardBody`) for current HeroUI package compatibility.
|
|
295
301
|
- auth screens use shared UI pack components without forcing full-screen background, so page/layout background is controlled by the generated app.
|
|
296
302
|
|
|
297
303
|
Expo starter behavior (`--app expo`):
|
|
@@ -305,6 +311,7 @@ Expo starter behavior (`--app expo`):
|
|
|
305
311
|
- includes required `heroui-native` peer dependencies: `uniwind`, `tailwind-merge`, `tailwind-variants`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`.
|
|
306
312
|
- includes `react-native-worklets` dependency required by current `react-native-reanimated` chain.
|
|
307
313
|
- keeps auth state split (public/private view) and uses shared Buildx auth provider wiring.
|
|
314
|
+
- generated auth wiring supports dual mode (`buildx|project|auto`) with project-id forwarding on auth actions.
|
|
308
315
|
- includes starter auth flows on mobile:
|
|
309
316
|
- sign-in (username/password)
|
|
310
317
|
- sign-up (name/email/tel support)
|
|
@@ -350,6 +357,11 @@ Generated auth-aware structure:
|
|
|
350
357
|
- public screen tree for unauthenticated users
|
|
351
358
|
- private screen tree for authenticated users
|
|
352
359
|
- mobile-first baseline with `heroui-native` provider
|
|
360
|
+
- Generated auth mode env defaults:
|
|
361
|
+
- `NEXT_PUBLIC_BUILDX_AUTH_MODE` / `EXPO_PUBLIC_BUILDX_AUTH_MODE` / `VITE_BUILDX_AUTH_MODE` (default: `auto`)
|
|
362
|
+
- `NEXT_PUBLIC_BUILDX_PROJECT_ID` / `EXPO_PUBLIC_BUILDX_PROJECT_ID` / `VITE_BUILDX_PROJECT_ID` used as default project scope in `project` mode
|
|
363
|
+
- in `project` mode, generated auth forms pass `projectId` explicitly to auth actions
|
|
364
|
+
- in `buildx` mode, generated auth provider forces root scope (no project id)
|
|
353
365
|
- Scaffold layout is single-level:
|
|
354
366
|
- app package files are generated at workspace root (no `apps/web` nesting)
|
|
355
367
|
- `buildx/` artifacts are generated at root level alongside app files
|
package/dist/README.md
CHANGED
|
@@ -292,6 +292,12 @@ Next.js starter behavior (`--app next`):
|
|
|
292
292
|
- includes built-in theme mode setup (`light|dark|system`) with toggle.
|
|
293
293
|
- includes built-in locale setup (`en|th`) with selector.
|
|
294
294
|
- default web UI stack is HeroUI (`@heroui/react`) as primary component framework.
|
|
295
|
+
- generated provider wiring does not import/wrap `HeroUIProvider` (compatibility with current HeroUI export surface).
|
|
296
|
+
- generated auth wiring supports dual mode:
|
|
297
|
+
- `buildx` mode (root auth API, no project scope)
|
|
298
|
+
- `project` mode (project-scoped auth API with project id)
|
|
299
|
+
- `auto` mode (uses project id only when provided)
|
|
300
|
+
- starter card layout uses `CardContent` (not `CardBody`) for current HeroUI package compatibility.
|
|
295
301
|
- auth screens use shared UI pack components without forcing full-screen background, so page/layout background is controlled by the generated app.
|
|
296
302
|
|
|
297
303
|
Expo starter behavior (`--app expo`):
|
|
@@ -305,6 +311,7 @@ Expo starter behavior (`--app expo`):
|
|
|
305
311
|
- includes required `heroui-native` peer dependencies: `uniwind`, `tailwind-merge`, `tailwind-variants`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`.
|
|
306
312
|
- includes `react-native-worklets` dependency required by current `react-native-reanimated` chain.
|
|
307
313
|
- keeps auth state split (public/private view) and uses shared Buildx auth provider wiring.
|
|
314
|
+
- generated auth wiring supports dual mode (`buildx|project|auto`) with project-id forwarding on auth actions.
|
|
308
315
|
- includes starter auth flows on mobile:
|
|
309
316
|
- sign-in (username/password)
|
|
310
317
|
- sign-up (name/email/tel support)
|
|
@@ -350,6 +357,11 @@ Generated auth-aware structure:
|
|
|
350
357
|
- public screen tree for unauthenticated users
|
|
351
358
|
- private screen tree for authenticated users
|
|
352
359
|
- mobile-first baseline with `heroui-native` provider
|
|
360
|
+
- Generated auth mode env defaults:
|
|
361
|
+
- `NEXT_PUBLIC_BUILDX_AUTH_MODE` / `EXPO_PUBLIC_BUILDX_AUTH_MODE` / `VITE_BUILDX_AUTH_MODE` (default: `auto`)
|
|
362
|
+
- `NEXT_PUBLIC_BUILDX_PROJECT_ID` / `EXPO_PUBLIC_BUILDX_PROJECT_ID` / `VITE_BUILDX_PROJECT_ID` used as default project scope in `project` mode
|
|
363
|
+
- in `project` mode, generated auth forms pass `projectId` explicitly to auth actions
|
|
364
|
+
- in `buildx` mode, generated auth provider forces root scope (no project id)
|
|
353
365
|
- Scaffold layout is single-level:
|
|
354
366
|
- app package files are generated at workspace root (no `apps/web` nesting)
|
|
355
367
|
- `buildx/` artifacts are generated at root level alongside app files
|