benjamin
benjamin
easinit
easinit the project
did a copy pasta from the docs. Cost me 20 minutes hunting down the issue. Assuming other folks will find this helpful. Not really sure where exactly this belongs? Would...
update dimensions ```ts export type DimensionValue = null | number | string | `${number}%` | `${number}px` | `${number}vh` | `${number}vw` | `${number}vmin` | `${number}vmax` | `${number}ch`; export type EdgeInsetsValue =...
fixes: #6 and bumps expo to sdk 51. ## Repro - follow docs: https://docs.expo.dev/workflow/upgrading-expo-sdk-walkthrough/ for updating expo sdk. - when initially trying to run web, console warning comes up with...
vite config key needs to match `app.json` name to register the application. steps: - grepped project, found all `app.json` files using `one-example` name. Updated `vite.config.ts` - successfully built the fullstack...
I'm trying to add minting functionality to my one application. I need to add a couple of shims to add the minting functionality. After installing add adding the required files...
When building native application for the first time application doesn't register, and throws error. Current steps I take to build and run application. - `b ios` - `b clean` -...
general fixes to inconsistencies.
### Version Number current ### Codesandbox/Expo snack _No response_ ### Steps to reproduce 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error ###...
removing the require statement fixes the package for use in deno edge functions. my specific use case was for supabase edge functions. how to test: ```ts import 'jsr:@supabase/functions-js/edge-runtime.d.ts' import pkg...