We rename our *.js files for cache busting, e.g. the file my-file.js becomes my-file-<HASH>.js. Today, it's not possible to exclude files from gulp-inline without knowing their precise filename.
Hence, it would be great to allow regular expressions in the list of ignored files, e.g.:
inline({
base: 'dist/',
ignore: [
'my-file-.*.js'
]
})