Files
meteor/packages/deprecated/github/package.js
Ben Newman e2cf76f8da Move deprecated packages from packages/non-core to packages/deprecated.
These subdirectories are functionally equivalent, but obviously the
packages/deprecated directory is a better home for deprecated packages.
2017-02-08 16:20:23 -05:00

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');
});