UNPKG

@thunderbirdops/webext-compat-data

Version:

Web-extension Compat Data provides a way to generate and reference web-extension compatibility data in your apps or web-extensions.

15 lines (11 loc) 485 B
/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ const bcd = require("@mdn/browser-compat-data"); const thunderbird_webextension = require("./thunderbird_mailextensions.json"); // Update the compat data. bcd.webextensions = thunderbird_webextension.webextensions; // Export the updated compat data. module.exports = bcd;