Skip to content

Commit

Permalink
fixed a bug which was adding background script in distribution package
Browse files Browse the repository at this point in the history
  • Loading branch information
HemantPawar committed Mar 26, 2017
1 parent 3865ab1 commit 9bb55e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "1.0.0",
"version": "1.0.1",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
Expand Down
9 changes: 2 additions & 7 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,8 @@ gulp.task('html', () => gulp.src('app/*.html')

gulp.task('chromeManifest', () => gulp.src('app/manifest.json')
.pipe($.chromeManifest({
buildnumber: true,
background: {
target: 'scripts/background.js',
exclude: [
'scripts/chromereload.js',
],
},
buildnumber: false,
exclude: ['background'],
}))
.pipe($.if('*.css', $.cleanCss({ compatibility: '*' })))
.pipe($.if('*.js', $.sourcemaps.init()))
Expand Down

0 comments on commit 9bb55e2

Please sign in to comment.