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