mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
These subdirectories are functionally equivalent, but obviously the packages/deprecated directory is a better home for deprecated packages.
12 lines
288 B
JavaScript
12 lines
288 B
JavaScript
Package.describe({
|
|
summary: 'DEPRECATED - Use github-oauth instead - GitHub OAuth flow',
|
|
version: '1.2.0'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('github-oauth');
|
|
api.use('github-config-ui', 'client');
|
|
api.imply('github-oauth');
|
|
api.addFiles('deprecation_notice.js');
|
|
});
|