(node)
| 182 | }; |
| 183 | |
| 184 | const hidePrivateSvelteComponentChildren: NodeTransform = (node) => { |
| 185 | if (SVELTE_PRIVATE_PROPERTY.test(node.url)) { |
| 186 | node.hide = true; |
| 187 | node.publish = false; |
| 188 | return; |
| 189 | } |
| 190 | if ( |
| 191 | SVELTE_API_PREFIX.test(node.url) && |
| 192 | node.reflection == null && |
| 193 | node.url.includes('/properties/') && |
| 194 | !hasMarkdown(node.body) && |
| 195 | !hasMarkdown(node.summary) && |
| 196 | getSkippedChildren(node).length == 0 |
| 197 | ) { |
| 198 | node.hide = true; |
| 199 | node.publish = false; |
| 200 | } |
| 201 | }; |
| 202 | |
| 203 | export const build = async ( |
| 204 | esbuild: any, |
nothing calls this directly
no test coverage detected
searching dependent graphs…