mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
353 B
JavaScript
14 lines
353 B
JavaScript
Package.describe({
|
|
summary: 'DEPRECATED - Use github-oauth instead - GitHub OAuth flow',
|
|
version: '1.2.0',
|
|
deprecated: 'Use github-oauth instead',
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('github-oauth');
|
|
api.use('github-config-ui', 'client');
|
|
api.imply('github-oauth');
|
|
api.addFiles('deprecation_notice.js');
|
|
});
|