Fix .gitignore file generation

This commit is contained in:
Jim Laurie 2017-12-13 14:23:07 +01:00
parent 348b4d1b27
commit f9126e5f0d
3 changed files with 3 additions and 108 deletions

View File

@ -1,101 +0,0 @@
############################
# OS X
############################
.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*
############################
# Linux
############################
*~
############################
# Windows
############################
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
############################
# Packages
############################
*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid
############################
# Logs and databases
############################
*.log
*.sql
############################
# Misc.
############################
*#
ssl
.idea
nbproject
############################
# Node.js
############################
lib-cov
lcov.info
pids
logs
results
node_modules
.node_history
package-lock.json
############################
# Tests
############################
testApp
coverage

View File

@ -36,6 +36,9 @@ module.exports = {
'.npmignore': {
copy: 'npmignore'
},
'.gitignore': {
copy: 'gitignore'
},
// Copy Markdown files with some information.
'README.md': {

View File

@ -102,10 +102,3 @@ node_modules
testApp
coverage
############################
# Front-end workflow
############################
bower_components