v0.1.19

yamadashy/repomixv0.1.19Aug 3, 2024by yamadashy

AI Summary

This release introduces a new `--include` option for specifying files via glob patterns and improves performance by switching to the `globby` library.

Key Highlights

  • Introduced `--include` CLI option and configuration support for glob patterns.
  • Replaced the `ignore` package with `globby` for more efficient file filtering.
  • Ability to pack specific files or directories using patterns like `src/**/*.ts`.

New Features

  • --include CLI option
  • Support for include patterns in the configuration file

Full Release Notes

It's focusing on improved file filtering capabilities and overall performance enhancements. 

## New Features

### Support `include` (#22, #30)
- Introduced the `--include` CLI option for specifying files to include using glob patterns. 
- Added support for `include` patterns in the configuration file.

To pack specific files or directories using glob patterns:
```bash
repopack --include "src/**/*.ts,**/*.md"
```

Special thanks to @IsaacSante for their contributions.

## Improvements

### Performance Optimization
- Replaced the `ignore` package with `globby` for more efficient file filtering.