mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
397 B
JavaScript
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"
|
|
);
|
|
}
|