Binary for fixing filenames.

This commit is contained in:
Your Name 2014-05-30 19:58:07 +02:00
parent 2277f8e580
commit f7a79c0003
4 changed files with 79 additions and 1 deletions

View file

@ -304,6 +304,9 @@ module.exports = function (grunt) {
// Copies remaining files to places other tasks can use
copy: {
dist: {
options: {
mode: true
},
files: [
{
expand: true,
@ -342,6 +345,12 @@ module.exports = function (grunt) {
cwd: '.',
dest: '<%= yeoman.dist %>/',
src: ['package.json']
},
{
expand: true,
cwd: 'bin',
dest: '<%= yeoman.dist %>/bin',
src: ['*']
}
]
},