UNPKG

@custom-elements-manifest/analyzer

Version:

<!-- [=> See Source <=](../../docs/analyzer/index.md) -->

12 lines (10 loc) 341 B
import { dasherize } from '@github/catalyst/lib/dasherize.js'; import { attrDecoratorPlugin } from '../decorators/attr.js'; import { controllerPlugin } from './controller.js'; export const catalystPlugin = () => [ attrDecoratorPlugin(attr => { attr.name = `data-${dasherize(attr.name)}`; return attr; }), controllerPlugin() ]