Skip to content

v12.0.0

Compare
Choose a tag to compare
@sindresorhus sindresorhus released this 22 Jul 01:43
· 63 commits to main since this release

Breaking

  • Require Node.js 12.20 (#181) 5c32b4a
  • This package is now pure ESM. Please read this.
  • This package now uses named exports instead of a default export
    • globby{globby}
    • globby.sync{globbySync}
    • globby.stream{globbyStream}
    • globby.generateGlobTasks{generateGlobTasks}
    • globby.hasMagic{isDynamicPattern}
    • globby.gitignore{isGitIgnored}
    • globby.gitignore.sync{isGitIgnoredSync}
-const globby = require('globby');
+import {globby} from 'globby';

v11.0.4...v12.0.0