@jsx6/build
v0.2.4
Published
Build utility
Downloads
30
Readme
filters
During copy task you can transform the copied file content using filters.
config for filter contains
filter
- function taht transforms and returns new value, but can returnundefined
to say no changes happenedinclude
- list of include glob patternsexclude
- list of exclude glob patterns
example filter
const changeBg = {
include: ['index.html'],
exclude: [],
filter: str => {
let srch = 'background: #eee;'
if (str.includes(srch)) return str.replace(srch, 'background: blue;')
},
}