Joseph Lewkovich
Joseph Lewkovich
I have a very simple clean task. ``` javascript clean: { temp: { src: ['tmp', 'dist/app-tmp.js'] } } ``` I then run this watch task. ``` javascript watch: { dev:...
This is in my Gruntfile.js: ``` javascript watch: { dev: { files: [ 'Gruntfile.js' ], tasks: [ 'jshint' ] } } ``` Yet when I run `grunt watch:dev -v`, it...
## Description For iterative LLM workflows, there's no way to confirm from the output file alone (e.g., `prompt.md`) whether a re-run captured recent code changes. After generating once, editing a...
## Description I've hit a performance issue with large excluded directories like `node_modules`. When using `--exclude "node_modules/**"`, the tool still recurses *into* the directory and skips files individually (visible with...