constants.js (708B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 "use strict"; 6 7 // This file might be required from a node script (./bin/update.js), so don't use 8 // Chrome API here. 9 10 const TARGET_BROWSER_ID = [ 11 "firefox", 12 "firefox_android", 13 "chrome", 14 "chrome_android", 15 "safari", 16 "safari_ios", 17 "edge", 18 "ie", 19 ]; 20 const TARGET_BROWSER_STATUS = ["esr", "current", "beta", "nightly"]; 21 const TARGET_BROWSER_PREF = "devtools.inspector.compatibility.target-browsers"; 22 23 module.exports = { 24 TARGET_BROWSER_ID, 25 TARGET_BROWSER_PREF, 26 TARGET_BROWSER_STATUS, 27 };