Files
meteor/packages/deprecated/twitter/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
292 B
JavaScript

Package.describe({
summary: "DEPRECATED - Use twitter-oauth instead - Twitter OAuth flow",
version: '1.2.0'
});
Package.onUse(function(api) {
api.use('twitter-oauth');
api.use('twitter-config-ui', 'client');
api.imply('twitter-oauth');
api.addFiles('deprecation_notice.js');
});