Globby Versions Save

User-friendly glob matching

v13.0.0

2 years ago

Breaking

  • Rename generateGlobTasks to generateGlobTasksSync (#221) 51c8f68
  • Remove ignore option for isGitIgnored and isGitIgnoredSync (#225) 2e43cc4
    • This option never worked correctly.

Improvements

  • Improve performance with mutiple patterns (#222) 04fbd5b
  • Add async generateGlobTasks method (#221) 51c8f68

Fixes

  • Fix bug with objectMode option (#210) 1852fc5

https://github.com/sindresorhus/globby/compare/v12.2.0...v13.0.0

v12.2.0

2 years ago
  • Work around TypeScript type problem with URL global (#206) 1224230
  • Accept URL in function returned by isGitIgnored (#207) a9fc794

https://github.com/sindresorhus/globby/compare/v12.1.0...v12.2.0

v12.1.0

2 years ago
  • Support URL for the cwd option (#201) 73c0aca

https://github.com/sindresorhus/globby/compare/v12.0.2...v12.1.0

v11.1.0

2 years ago
  • Update dependencies to fix some npm audit notices

https://github.com/sindresorhus/globby/compare/v11.0.4...v11.1.0

v12.0.2

2 years ago
  • Ensure async method is completely async e167725

https://github.com/sindresorhus/globby/compare/v12.0.1...v12.0.2

v12.0.1

2 years ago

v12.0.0

2 years ago

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';

https://github.com/sindresorhus/globby/compare/v11.0.4...v12.0.0

v11.0.4

2 years ago
  • Support objectMode option in the TypeScript types (#178) a08264f

https://github.com/sindresorhus/globby/compare/v11.0.3...v11.0.4

v11.0.3

3 years ago
  • Fix Windows compatibility for gitignore option (#171) f67edfe

https://github.com/sindresorhus/globby/compare/v11.0.2...v11.0.3

v11.0.2

3 years ago
  • Fix gitignore option compatibility with objectMode option (#157) f9fc476

https://github.com/sindresorhus/globby/compare/v11.0.1...v11.0.2