Skip to content

Commit

Permalink
fix(gitignore): mark some gitignore entries absolute
Browse files Browse the repository at this point in the history
To ensure git does not ignore files in subdirectory, this commit restricts some
entries to the root directory only.

Similar patch went into generator-angular:
yeoman/generator-angular@1f907d3
  • Loading branch information
huerlisi committed May 26, 2015
1 parent c31ca04 commit 25fc55d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions templates/common/_gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
node_modules
www
/node_modules
/www
.idea
.temp
.sass-cache
<%= appPath %>/bower_components
coverage
platforms
plugins
/.temp
/.sass-cache
/<%= appPath %>/bower_components
/coverage
/platforms
/plugins
*.swp
*.swo
*.log
*.DS_Store

app/scripts/configuration.js
/app/scripts/configuration.js

0 comments on commit 25fc55d

Please sign in to comment.