I hereby claim:
- I am chrisui on github.
- I am chrisui (https://keybase.io/chrisui) on keybase.
- I have a public key ASAU3gLmS3BbBl6xAi_lMk0iFWHBN92EvlaF9DL6xhR82wo
To claim this, I am signing this object:
| /** | |
| * This module is a copy and extension of the better-auth drizzle-adapter which | |
| * allows for generation of id's to be handled by the schema and/or db | |
| * | |
| * @see https://github.com/better-auth/better-auth/blob/main/packages/better-auth/src/adapters/drizzle-adapter/drizzle-adapter.ts | |
| * @see https://github.com/better-auth/better-auth/issues/3445 | |
| * @see https://github.com/better-auth/better-auth/issues/2480 | |
| */ | |
| /** biome-ignore-all assist/source/organizeImports: tmp, copied from 3rd-party */ | |
| /** biome-ignore-all lint/style/useImportType: tmp, copied from 3rd-party */ |
| { | |
| "root": "project", | |
| "sourceRoot": "project/src", | |
| "projectType": "application", | |
| "targets": { | |
| "serve": { | |
| "executor": "..." | |
| }, | |
| "dev": { | |
| "executor": "my-executor-pkg:serve" |
I hereby claim:
To claim this, I am signing this object:
| const A = () => <div />; | |
| const B = ({children}) => children(); | |
| const C = () => <B>{() => <A />}</B>; |
| export const testComponent = ( | |
| Component: RC, | |
| defaultProps? | |
| : () => Object | |
| = () => ({}), | |
| ) => { | |
| return (otherProps: Object, hoc?: (RC) => RC) => { | |
| // our final props for the component merged from default | |
| // and per-test |
| function Text(props) { | |
| return <Span color="black" {...props} /> | |
| } | |
| const BlueText = withProps({ | |
| color: 'blue' | |
| })(Text) |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"/> | |
| <title>Webpack Bundle Analyzer</title> | |
| <!-- viewer.js --> | |
| <script> |
| export function Component({state, increment}) { | |
| return ( | |
| <div> | |
| {state.count} hits! | |
| <button onClick={increment}>Hit me!</button> | |
| </div> | |
| ); | |
| } |
| These stats were made available from https://github.com/lystable/recon | |
| Num modules parsed | |
| How many modules did we explore? | |
| 1243 | |
| --- | |
| Num components |