Skip to content

Commit

Permalink
fix(gruntfile): Plugins bundled with release now
Browse files Browse the repository at this point in the history
Grunt refactoring as part of the 0.7.0 release caused the plugins to
no longer be included in the tgz. This change makes sure plugins are
included by changing the globs to capture **/* instead of just *.
  • Loading branch information
jakobo committed Mar 4, 2014
1 parent 03b9f28 commit 30886a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gruntfile.js
Expand Up @@ -177,7 +177,7 @@ module.exports = function (grunt) {
recent_to_release: {
expand: true,
cwd: 'dist/recent',
src: '*',
src: '**/*',
dest: '<%= output_files.release %>'
},
uglify_to_final: {
Expand Down Expand Up @@ -346,7 +346,7 @@ module.exports = function (grunt) {
},
files: [
{
src: '**',
src: '**/*',
dest: '/',
expand: true,
filter: 'isFile',
Expand Down

0 comments on commit 30886a6

Please sign in to comment.