I know what to consider a bad practice by committing the generated files to the git repository. But how to deal with a gazebo?
Currently, my library is embedded in a directory dist/that is ignored by the file .gitignore. I do not want the generated files to fit in the repository. The problem is that the library is also distributed as a bower component.
How can I reference the generated assets to my bower component when releasing a new version? Should I create another repository to store these files? Should I transfer these files in a git tag?
source
share