(options: PluginOptions)
| 76 | * } |
| 77 | */ |
| 78 | export function create(options: PluginOptions): PluginConfig { |
| 79 | return { |
| 80 | slug: pluginSlug, |
| 81 | title: 'File Size', |
| 82 | icon: 'folder-javascript', |
| 83 | description: 'A plugin to measure and assert size of files in a directory.', |
| 84 | runner: () => runnerFunction(options), |
| 85 | audits, |
| 86 | }; |
| 87 | } |
| 88 | |
| 89 | export async function runnerFunction( |
| 90 | options: RunnerOptions, |
nothing calls this directly
no test coverage detected