This repository was archived by the owner on Jan 18, 2022. It is now read-only.
This repository was archived by the owner on Jan 18, 2022. It is now read-only.
Plugin options aren't applied #6
Closed
Description
Example Plugin Usage
rollup.rollup({
entry: 'index.js',
plugins: [
vue({
htmlMinifier: {
collapseBooleanAttributes: false
}
})
]
})
// ...
Expected Behaviour
Template string <element :disabled="disabled"></element>
won't be transformed to <element :disabled></element>
Actual Behaviour
Template string <element :disabled="disabled"></element>
gets transformed to <element :disabled></element>
since the options passed to the plugin (see example above) aren't actually applied.
Metadata
Metadata
Assignees
Labels
No labels