Binary for fixing filenames.
This commit is contained in:
parent
2277f8e580
commit
f7a79c0003
4 changed files with 79 additions and 1 deletions
|
@ -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: ['*']
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue