Skip to content

Commit

Permalink
Fix compressed dist directory (emberjs#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
teddyzeenny authored and cyril-sf committed Mar 30, 2022
1 parent 709cd6c commit 910226d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,17 @@ module.exports = function(grunt) {
},
expand: true,
pretty: true,
src: 'dist/chrome/**/*'
src: '**/*',
cwd: 'dist/chrome'
},
firefox: {
options: {
archive: 'dist/firefox/ember-inspector.zip'
},
expand: true,
pretty: true,
src: 'dist/firefox/**/*'
src: '**/*',
cwd: 'dist/firefox'
},
"chrome-pane": {
options: {
Expand Down

0 comments on commit 910226d

Please sign in to comment.