You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
const flowRemoveTypes = require('flow-remove-types')
|
|
const createFilter = require('rollup-pluginutils').createFilter
|
|
|
|
module.exports = options => {
|
|
options = options || {}
|
|
const filter = createFilter(options.include, options.exclude)
|
|
|
|
return {
|
|
name: 'flow-remove-types',
|
|
transform: (code, id) => {
|
|
if (filter(id)) {
|
|
return flowRemoveTypes(code)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|