Skip to content

Commit

Permalink
Add firefox-developer to darwin support list, fixes #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitchell Hentges committed Feb 29, 2016
1 parent 79fb2f5 commit 4762b67
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/darwin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ function browser(id, versionKey) {
};
}

exports.safari = browser('com.apple.Safari', 'CFBundleShortVersionString');
exports.firefox = browser('org.mozilla.firefox', 'CFBundleShortVersionString');
exports.chrome = exports[ 'google-chrome' ] = browser('com.google.Chrome', 'KSVersion');
exports.chromium = browser('org.chromium.Chromium', 'CFBundleShortVersionString');
exports.canary = exports[ 'chrome-canary' ] = exports[ 'google-chrome-canary' ] = browser('com.google.Chrome.canary', 'KSVersion');
exports.chromium = browser('org.chromium.Chromium', 'CFBundleShortVersionString');
exports.firefox = browser('org.mozilla.firefox', 'CFBundleShortVersionString');
exports['firefox-developer'] = browser('org.mozilla.firefoxdeveloperedition', 'CFBundleShortVersionString');
exports.safari = browser('com.apple.Safari', 'CFBundleShortVersionString');
exports.opera = browser('com.operasoftware.Opera', 'CFBundleVersion');

0 comments on commit 4762b67

Please sign in to comment.