Skip to content

Releases: Vehmloewff/rollup-plugin-glob-files

v2.0.2

11 Jan 03:30
Compare
Choose a tag to compare

v2.0.1...v2.0.2

v2.0.1

11 Jan 03:10
Compare
Choose a tag to compare

v2.0.0

11 Jan 03:04
Compare
Choose a tag to compare

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 now GlobOptions.key

Improvements

  • GlobOptions.key does not have to point to a specific file, it can be anything. See test/rollup.config.js for an example.

Fixes

  • Fixed this warning:
     Sourcemap is likely to be incorrect
    

Commits

v1.0.3...v2.0.0

v1.0.3

18 Dec 19:50
Compare
Choose a tag to compare
  • Fixed broken paths on windows

v1.0.3

14 Nov 15:52
Compare
Choose a tag to compare
  • Fix the watcher so that is updates it's dependencies in watch mode

v1.0.1

13 Nov 18:22
Compare
Choose a tag to compare
  • A small fix in the default behavior of options.include and options.exclude to match the requirements in the docs

v1.0.0

13 Nov 17:56
Compare
Choose a tag to compare
  • Everything