Add author info to extension manifest

This commit is contained in:
hensm
2019-03-12 11:25:59 +00:00
parent 8f942373e7
commit 98d0e7acce
3 changed files with 17 additions and 6 deletions

View File

@@ -50,7 +50,9 @@ module.exports = (env) => ({
.replace("MIRRORING_APP_ID", env.mirroringAppId)
.replace("APPLICATION_NAME", env.applicationName)
.replace("APPLICATION_VERSION", env.applicationVersion)
.replace("CONTENT_SECURITY_POLICY", env.contentSecurityPolicy));
.replace("CONTENT_SECURITY_POLICY", env.contentSecurityPolicy)
.replace("AUTHOR", env.author)
.replace("AUTHOR_HOMEPAGE", env.authorHomepage));
}
return content;