From 91af8850b83460360b52536da6d78d3cb0e527a2 Mon Sep 17 00:00:00 2001 From: Serraniel Date: Sun, 6 Sep 2020 20:31:00 +0200 Subject: [PATCH] #35 Fixed developer key in manifest --- gulpfile.js | 2 +- src/manifests/firefox.manifest.json | 2 +- src/manifests/opera.manifest.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index e52020e..9d77ac7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -155,7 +155,7 @@ gulp.task('manifests', () => { .pipe($.replace('$semanticVersion', template.version_name)) .pipe($.replace('$description', template.description)) .pipe($.replace('$author', template.author)) - .pipe($.replace('$developer', template.developer)) + .pipe($.replace('$developer', JSON.stringify(template.developer))) .pipe($.replace('$homepageURL', template.homepage_url)) .pipe($.size({ showFiles: true, diff --git a/src/manifests/firefox.manifest.json b/src/manifests/firefox.manifest.json index dd64cb5..d2d8ef7 100644 --- a/src/manifests/firefox.manifest.json +++ b/src/manifests/firefox.manifest.json @@ -5,7 +5,7 @@ "description": "$description", "manifest_version": 2, "author": "$author", - "developer": "$developer", + "developer": $developer, "homepage_url": "$homepageURL", "icons": { "48": "images/icon/icon_48.png", diff --git a/src/manifests/opera.manifest.json b/src/manifests/opera.manifest.json index c1fe79c..af4d166 100644 --- a/src/manifests/opera.manifest.json +++ b/src/manifests/opera.manifest.json @@ -6,7 +6,7 @@ "description": "$description", "manifest_version": 2, "author": "$author", - "developer": "$developer", + "developer": $developer, "homepage_url": "$homepageURL", "icons": { "48": "images/icon/icon_48.png",