🚀 Feature: Skip "Cleaning up files" if options.skipInstall is true #706
Labels
good first issue
Good for newcomers, please hop on!
status: accepting prs
Please, send a pull request to resolve this!
type: feature
New enhancement or request
Bug Report Checklist
main
branch of the repository.Overview
Right now, after someone runs
npx template-typescript-node-package
, the setup scripts will run a few commands to autofix / clean up files locally:https://github.com/JoshuaKGoldberg/template-typescript-node-package/blob/a386c870f5bc53ce3b30a8d31108c5726487ba78/src/create/createWithOptions.ts#L35-L39
But those commands will generally fail if
options.skipInstall
is true (i.e. if the user specified--skip-install
). For example, linting will likely fail because the required ESLint plugins' packages wouldn't likely be installed.Let's not run those commands if
options.skipInstall
is true.Additional Info
See also #705 for some context on those cleanup commands.
The text was updated successfully, but these errors were encountered: