Skip to content

Commit

Permalink
Close GH-337: Remove unnecessary excludes and ignores.
Browse files Browse the repository at this point in the history
  • Loading branch information
Danmer authored and sindresorhus committed Apr 9, 2014
1 parent 2bad6da commit 9cd81d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@ module.exports = function (grunt) {
// Automatically inject Bower components into the HTML file
bowerInstall: {
app: {
src: ['<%%= config.app %>/index.html'],<% if (includeSass) { %>
src: ['<%%= config.app %>/index.html']<% if (includeBootstrap) { %>,<% if (includeSass) { %>
exclude: ['bower_components/bootstrap-sass-official/vendor/assets/javascripts/bootstrap.js']<% } else { %>
exclude: ['bower_components/bootstrap/dist/js/bootstrap.js']<% } %>
exclude: ['bower_components/bootstrap/dist/js/bootstrap.js']<% } } %>
}<% if (includeSass) { %>,
sass: {
src: ['<%%= config.app %>/styles/{,*/}*.{scss,sass}']
Expand Down
4 changes: 2 additions & 2 deletions app/templates/gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_modules
dist
.tmp
.sass-cache
.tmp<% if (includeSass) { %>
.sass-cache<% } %>
bower_components
test/bower_components

0 comments on commit 9cd81d9

Please sign in to comment.