You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every time I run grunt bustr, it modifies a file named version.json next to my Gruntfile. This makes it a build artifact, and I'd like to treat it like my other build artifacts by not checking it into my repository and giving it a line in .gitignore. This prevents meaningless changes from being all over my git history (or, alternatively and still icky, just sitting around in my personal copy of the repo as a land mine to be avoided in all future commits).
But if I git-ignore version.json and do not check it in, bustr refuses to build from a clean repository.
The text was updated successfully, but these errors were encountered:
@twhaples experiencing the same thing. I think bustr should just create the file if it's not there, allowing the repo to not track a version.json. PR incoming
Every time I run
grunt bustr
, it modifies a file namedversion.json
next to my Gruntfile. This makes it a build artifact, and I'd like to treat it like my other build artifacts by not checking it into my repository and giving it a line in.gitignore
. This prevents meaningless changes from being all over my git history (or, alternatively and still icky, just sitting around in my personal copy of the repo as a land mine to be avoided in all future commits).But if I git-ignore version.json and do not check it in,
bustr
refuses to build from a clean repository.The text was updated successfully, but these errors were encountered: