marklogic-community / slush-marklogic-node

Slush generator for a MarkLogic/node project
https://github.com/marklogic-community/slush-marklogic-node/wiki
Other
40 stars 28 forks source link

.gitignore dist folder #114

Closed hunterwilliams closed 9 years ago

hunterwilliams commented 9 years ago

slush-marklogic-node/app/templates/_gitignore

As a developer, I generally do not commit the dist folder. It's built every run. Is there any reason to exclude it from the default gitignore file?

grtjn commented 9 years ago

+1, and while at it, these qualify as well I'd say:

deploy/local.properties
ui/styles/*.css
dist
*.pid
.idea
*.sublime-project
*.sublime-workspace
paxtonhare commented 9 years ago

Make sure to be careful when putting folders in there. If you only want the top level dist then do:

/dist

In some projects I had a dist folder under some other folders and they also got ignored. oopsie.