Reputation: 73221
I have some build and compile tasks that generate new files, e.g.
Now I need to upload those files to my server. I always upload the original file and forget about the compiled ones, as they aren't visible originally, but hidden behind the es6 file in this case.
Is there any way to make phpStorm auto upload the compiled files whenever I upload the original?
Upvotes: 0
Views: 81
Reputation: 93728
there is 'Upload external changes
' option in Settings/Build, Execution, Deployment/Deployment/Options
that allows updating files generated by external processes.
Upvotes: 2