diff options
author | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
commit | 09a33c4252242f5184522af9973940c5a4954431 (patch) | |
tree | 8a2f284b55b871ae02d0f3a59f09eef43f20abfa /webpack/webpack.manifest.js | |
parent | da364b49f01f4af913319f83d4adeef8a9312132 (diff) | |
download | SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.tar.gz SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.zip |
Added manifest building.
Diffstat (limited to 'webpack/webpack.manifest.js')
-rw-r--r-- | webpack/webpack.manifest.js | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/webpack/webpack.manifest.js b/webpack/webpack.manifest.js new file mode 100644 index 00000000..08e48b29 --- /dev/null +++ b/webpack/webpack.manifest.js @@ -0,0 +1,65 @@ +const webpack = require("webpack"); +const path = require('path'); +const CopyPlugin = require('copy-webpack-plugin'); +const validateOptions = require('schema-utils'); + +const fs = require('fs'); + +const manifest = require("../manifest/manifest.json"); +const firefoxManifestExtra = require("../manifest/firefox-manifest-extra.json"); +const chromeManifestExtra = require("../manifest/chrome-manifest-extra.json"); + +// schema for options object +const schema = { + type: 'object', + properties: { + browser: { + type: 'string' + }, + pretty: { + type: 'boolean' + } + } +}; + +class BuildManifest { + constructor (options = {}) { + validateOptions(schema, options, "Build Manifest Plugin"); + + this.options = options; + } + + apply(compiler) { + const distManifestFile = path.resolve(__dirname, "../dist/manifest.json"); + + // Add missing manifest elements + if (this.options.browser.toLowerCase() === "firefox") { + mergeObjects(manifest, firefoxManifestExtra); + } else if (this.options.browser.toLowerCase() === "chrome" || this.options.browser.toLowerCase() === "chromium") { + mergeObjects(manifest, chromeManifestExtra); + } + + let result = JSON.stringify(manifest); + if (this.options.pretty) result = JSON.stringify(manifest, null, 2); + + fs.writeFileSync(distManifestFile, result); + } +} + +function mergeObjects(object1, object2) { + for (const key in object2) { + if (key in object1) { + if (Array.isArray(object1[key])) { + object1[key] = object1[key].concat(object2[key]); + } else if (typeof object1[key] == 'object') { + mergeObjects(object1[key], object2[key]); + } else { + object1[key] = object2[key]; + } + } else { + object1[key] = object2[key]; + } + } +} + +module.exports = BuildManifest;
\ No newline at end of file |