-
Notifications
You must be signed in to change notification settings - Fork 310
Clean task does not remove dot files #37
Comments
This is deliberate to allow the dist folder to be its own git repository
|
Could this be made more explicit, with a comment maybe? Or even better a rule to exclude just the .git dir/files? Also what I will need to change in Gruntfile to remove the dotfiles? Thanks. |
You could change the @sindresorhus Do you think a comment would be helpful here? |
@passy I would rather find a way to clean out everything except for |
.gitignore would also be useful.
|
yup |
This works. clean: {
dist: {
files: [{
dot: true,
src: [
'dist/*',
'!dist/.git*'
]
}]
}
} |
@kevva feel free to do that update directly ;) |
Yep, done :)))))). |
@kevva awesome, thanks for doing this. Keep em coming :D Tip: use Fixed in yeoman/generator-webapp@7616dc4 |
@kevva could you do the same on generator-angular? |
@sindresorhus, I'm on it. |
.htaccess
, from my app folder and Gruntfile copy task config.htaccess
is still in the dist forderThe text was updated successfully, but these errors were encountered: