diff --git a/Gruntfile.js b/Gruntfile.js index b6f172d..a97d18d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -74,6 +74,14 @@ module.exports = function (grunt) { ] } }, + removelogging: { + chrome: { + src: 'build/chrome/scripts/**/*.js' + }, + firefox: { + src: 'build/firefox/scripts/**/*.js' + } + }, replace: { chrome: { src: [ @@ -118,6 +126,7 @@ module.exports = function (grunt) { if((!grunt.option('chrome') && !grunt.option('firefox')) || grunt.option('chrome')) { grunt.task.run([ 'copy:chrome', + 'removelogging:chrome', 'replace:chrome', 'compress:chrome' ]); @@ -125,6 +134,7 @@ module.exports = function (grunt) { if((!grunt.option('chrome') && !grunt.option('firefox')) || grunt.option('firefox')) { grunt.task.run([ 'copy:firefox', + 'removelogging:firefox', 'replace:firefox', 'compress:firefox' ]); diff --git a/bower.json b/bower.json index aa846e1..629f674 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "news-feed-for-github", - "version": "1.1.4", + "version": "1.1.5", "description": "GitHub news feed notifications directly in the browser", "authors": [ { diff --git a/extension/manifest.json b/extension/manifest.json index f514222..6a50b94 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "News Feed for GitHub", "description": "GitHub news feed notifications directly in the browser", - "version": "1.1.4", + "version": "1.1.5", "homepage_url": "https://github.com/julmot/news-feed-for-github", "icons": { "48": "icons/icon-48.png", diff --git a/package.json b/package.json index bae79fe..3d8f693 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "news-feed-for-github", - "version": "1.1.4", + "version": "1.1.5", "description": "GitHub news feed notifications directly in the browser", "author": { "name": "Julian Motz", @@ -27,6 +27,7 @@ "grunt-contrib-clean": "~1", "grunt-contrib-compress": "~1", "grunt-contrib-copy": "~1", + "grunt-remove-logging": "^0.2.0", "grunt-text-replace": "~0.4", "matchdep": "~1" }