Releases: Vehmloewff/rollup-plugin-glob-files
Releases · Vehmloewff/rollup-plugin-glob-files
v2.0.2
- Remove extra console.log c3100bd
v2.0.1
- Add v2 docs 178d1fa
v2.0.0
Breaking Changes
-
The function exported at default is no longer allowed to be an array of
GlobOptions
. In other words, this...// ... plugins: [ globFiles([options, options]) ]
...becomes this:
// ... plugins: [ globFiles(options), globFiles(options), ]
-
GlobOptions.file
is nowGlobOptions.key
Improvements
GlobOptions.key
does not have to point to a specific file, it can be anything. Seetest/rollup.config.js
for an example.
Fixes
- Fixed this warning:
Sourcemap is likely to be incorrect
Commits
v1.0.3
- Fixed broken paths on windows
v1.0.3
- Fix the watcher so that is updates it's dependencies in watch mode
v1.0.1
- A small fix in the default behavior of
options.include
andoptions.exclude
to match the requirements in the docs
v1.0.0
- Everything