Skip to content

Commit

Permalink
exclude app folder from copy task
Browse files Browse the repository at this point in the history
  • Loading branch information
Vvv committed Jul 25, 2016
1 parent c4b6474 commit db358d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/config/copy.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function(grunt) {
files: [{
expand: true,
cwd: './assets',
src: ['**/*.!(coffee|less)'],
src: ['**/*.!(coffee|less)', '!app/*.*'],
dest: '.tmp/public'
}]
},
Expand Down
3 changes: 2 additions & 1 deletion views/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ html
h1 Sails + React + Webpack starter kit
div#app

script(src="/js/app.min.js")
// SCRIPTS
// SCRIPTS END

0 comments on commit db358d4

Please sign in to comment.