I want to run
firebase deploy --only functions
command but it gives me many error what can i do?
I want to run
firebase deploy --only functions
command but it gives me many error what can i do?
reading through the error info shared it looks like the deployment is trying to run one of the package.json scripts for eslint and failing, to quickly see if that's the case simply disable that based on what's in the package.json
if you want the linting to happen just finish setting it up, otherwise remove the related dependencies and configuration, linting can be useful, however it can also become quite onerous without auto-fixing (I can't remember that unrelated detail at the moment... possibly --fix
) so it's a good thing to work out along with whatever automation relates to the work and team