@oxyhq/bloom 1.9.1 → 1.9.2
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/docs/getting-started.mdx +9 -2
- package/package.json +1 -1
package/docs/getting-started.mdx
CHANGED
|
@@ -107,8 +107,15 @@ return before the `require` is ever reached:
|
|
|
107
107
|
| `expo-haptics` | `useHaptics` returns on web (`hooks/use-haptics.tsx:47`) |
|
|
108
108
|
|
|
109
109
|
Note the two different reasons: a platform guard inside the file, and a whole
|
|
110
|
-
`.web` fork of the family.
|
|
111
|
-
|
|
110
|
+
`.web` fork of the family.
|
|
111
|
+
|
|
112
|
+
> **Before claiming what a consumer loses, check which platform variant their
|
|
113
|
+
> bundler resolves.** This guide named the connection toasts as a casualty
|
|
114
|
+
> because the `.tsx` was read and the `.web.tsx` beside it was not — and the
|
|
115
|
+
> `.web` one had solved the problem months earlier. Reading the source file is
|
|
116
|
+
> not reading the file that runs; the two differ on exactly the axis this
|
|
117
|
+
> section is about. Confirm it from the loaded page
|
|
118
|
+
> (`SomeComponent.toString()`) or from the chunks, not from the repository.
|
|
112
119
|
|
|
113
120
|
If scoped NativeWind presets are wrong in your web app, this is not the cause —
|
|
114
121
|
look at the CSS-variable pipeline instead.
|