Debug Finder
File Parser for CI/CD to serach for unnecessary Debugs/Console Log - Currently For Salesforce only with Package.xml
Requirements
- Rust
- Salesforce Project must contain Package.xml.
Usage
Dev Enviorment
bash
cargo install debug_finder
debug_finder main -d .
Prod Enviorment
bash
cargo install debug_finder
debug_finder main -r .
Dev Enviorment With Exact Path
bash
cargo install debug_finder
debug_finder main -d "C:\Project"
Prod Enviorment With Exact Path
bash
cargo install debug_finder
debug_finder main -r "C:\Project"
- . => is relative path.
- "{Your_Path}" => is exact path.
Last Changes - v. 0.3.0
- If Package.xml has asterisk in member it will take every File/Folder in Project and search for unnencessary Debugs/Console Logs.
Roadmap
- [ ] Support Salesforce Project w/o Package.xml.
- [X] Support for Package.xml with asterisk.
- [ ] Support Other types of Project like Angular/React/VueJS.
- [ ] Add Config which will be needed in Project to prepare best and fastest parsing of files inside.
- [X] Better final visualisation.