Skip to content

Instantly share code, notes, and snippets.

@HAKASHUN
Created September 23, 2014 14:28
Show Gist options
  • Select an option

  • Save HAKASHUN/582a39161de244c407be to your computer and use it in GitHub Desktop.

Select an option

Save HAKASHUN/582a39161de244c407be to your computer and use it in GitHub Desktop.
a sample grunt init config for grunt-file-exist
grunt.initConfig({
file_exist: {
options: {
output: 'reports/log.txt' //Where the log is output.
},
your_target: {
options: {
patterns: ['l.png', 'm.png', 's.png']
},
src: [
'img/thumbs/*/'
]
},
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment