Some checks failed
continuous-integration/drone/push Build is failing
Improves the flexibility and clarity of file processing by introducing separate include and exclude lists. - Replace `ignore_list` with `exclude_list` and add `include_list` in `.code_preloader.yml`. - Update `cli.cr` to handle both `include_list` and `exclude_list` for file selection. - Add support for tracing exceptions with a new `trace` configuration option. - Modify `PackOptions` class to include `exclude_list` and `include_list` properties. - Adjust option parsing in `config.cr` to reflect new configuration options. Signed-off-by: Glenn <glenux@glenux.net>
24 lines
274 B
YAML
24 lines
274 B
YAML
---
|
|
|
|
include_list:
|
|
- .*cr$
|
|
|
|
exclude_list:
|
|
- ^\.git/.*
|
|
- ^\.vagrant/.*
|
|
- ^misc/.*
|
|
- ^bin/.*
|
|
- ^lib/.*
|
|
- ^misc/.*
|
|
- ^prompts/.*
|
|
- ^LICENSE
|
|
- ^Makefile
|
|
- .*\.svg$
|
|
|
|
output_path: null
|
|
|
|
prompt:
|
|
header_path: null
|
|
footer_path: null
|
|
template_path: null
|
|
#
|