(source: string)
| 288 | source.includes('from "tinybase/ui-solid"'); |
| 289 | |
| 290 | const isOtherUiSource = (source: string): boolean => |
| 291 | source.includes(`from 'react'`) || |
| 292 | source.includes('from "react"') || |
| 293 | source.includes(`from 'react-dom`) || |
| 294 | source.includes('from "react-dom') || |
| 295 | source.includes(`from 'tinybase/ui-react`) || |
| 296 | source.includes('from "tinybase/ui-react') || |
| 297 | source.includes(`from 'svelte`) || |
| 298 | source.includes('from "svelte') || |
| 299 | source.includes(`from 'tinybase/ui-svelte`) || |
| 300 | source.includes('from "tinybase/ui-svelte'); |
| 301 | |
| 302 | const transformSolidJsx = (source: string, loader: 'jsx' | 'tsx'): string => |
| 303 | babelTransformSync( |
no outgoing calls
no test coverage detected
searching dependent graphs…