buildx-cli 1.8.26 → 1.8.27

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
@@ -279,10 +279,12 @@ Next.js starter behavior (`--app next`):
279
279
 
280
280
  Expo starter behavior (`--app expo`):
281
281
  - scaffold base runs `npx create-expo-app@latest` (TypeScript template) first.
282
+ - dependency install step now follows detected package manager from user agent/lockfile (`pnpm`, `yarn`, `bun`, `npm`) instead of forcing `npm install`.
282
283
  - mobile-first scaffold with HeroUI Native (`heroui-native`) provider and starter controls.
283
284
  - starter provider defaults disable animated-style helper noise for custom-style scaffolds:
284
285
  - `isAnimatedStyleActive={false}`
285
286
  - `config.devInfo.stylingPrinciples=false`
287
+ - starter uses `SafeAreaView` from `react-native-safe-area-context` (not deprecated `react-native` export).
286
288
  - includes required `heroui-native` peer dependencies: `uniwind`, `tailwind-merge`, `tailwind-variants`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`.
287
289
  - includes `react-native-worklets` dependency required by current `react-native-reanimated` chain.
288
290
  - keeps auth state split (public/private view) and uses shared Buildx auth provider wiring.
@@ -295,6 +297,7 @@ Expo starter behavior (`--app expo`):
295
297
  - after Buildx dependency rewiring, CLI runs install to ensure added packages are available immediately.
296
298
  - CLI also runs `expo install` for native compatibility packages (`react-native-reanimated`, `react-native-safe-area-context`, `react-native-screens`, `react-native-svg`, `react-native-worklets`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`) to align with Expo SDK expectations.
297
299
  - generated Expo app includes `global.css` setup for Uniwind + HeroUI Native styles and wraps app with `GestureHandlerRootView`.
300
+ - generated `global.css` includes fallback static theme tokens for HeroUI Native hover color variables to avoid Uniwind missing-variable warnings in minimal starter usage.
298
301
 
299
302
  #### `project:add-pack`
300
303
  Add Buildx pack dependencies into an existing project package.
package/dist/README.md CHANGED
@@ -279,10 +279,12 @@ Next.js starter behavior (`--app next`):
279
279
 
280
280
  Expo starter behavior (`--app expo`):
281
281
  - scaffold base runs `npx create-expo-app@latest` (TypeScript template) first.
282
+ - dependency install step now follows detected package manager from user agent/lockfile (`pnpm`, `yarn`, `bun`, `npm`) instead of forcing `npm install`.
282
283
  - mobile-first scaffold with HeroUI Native (`heroui-native`) provider and starter controls.
283
284
  - starter provider defaults disable animated-style helper noise for custom-style scaffolds:
284
285
  - `isAnimatedStyleActive={false}`
285
286
  - `config.devInfo.stylingPrinciples=false`
287
+ - starter uses `SafeAreaView` from `react-native-safe-area-context` (not deprecated `react-native` export).
286
288
  - includes required `heroui-native` peer dependencies: `uniwind`, `tailwind-merge`, `tailwind-variants`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`.
287
289
  - includes `react-native-worklets` dependency required by current `react-native-reanimated` chain.
288
290
  - keeps auth state split (public/private view) and uses shared Buildx auth provider wiring.
@@ -295,6 +297,7 @@ Expo starter behavior (`--app expo`):
295
297
  - after Buildx dependency rewiring, CLI runs install to ensure added packages are available immediately.
296
298
  - CLI also runs `expo install` for native compatibility packages (`react-native-reanimated`, `react-native-safe-area-context`, `react-native-screens`, `react-native-svg`, `react-native-worklets`, `react-native-gesture-handler`, `@gorhom/bottom-sheet`) to align with Expo SDK expectations.
297
299
  - generated Expo app includes `global.css` setup for Uniwind + HeroUI Native styles and wraps app with `GestureHandlerRootView`.
300
+ - generated `global.css` includes fallback static theme tokens for HeroUI Native hover color variables to avoid Uniwind missing-variable warnings in minimal starter usage.
298
301
 
299
302
  #### `project:add-pack`
300
303
  Add Buildx pack dependencies into an existing project package.