Files
meteor/packages/accounts-github/notice.js
James Burgess 54c20dcb17 Modernize accounts-github package
- Bumped patch version number 1.4.1 -> 1.4.2
- ES6 syntax and shorthand applied
2018-02-02 09:30:09 +01:00

13 lines
397 B
JavaScript

if (Package['accounts-ui']
&& !Package['service-configuration']
&& !Object.prototype.hasOwnProperty.call(Package, 'github-config-ui')) {
console.warn(
"Note: You're using accounts-ui and accounts-github,\n" +
"but didn't install the configuration UI for the GitHub\n" +
"OAuth. You can install it with:\n" +
"\n" +
" meteor add github-config-ui" +
"\n"
);
}