mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
23 lines
554 B
JavaScript
23 lines
554 B
JavaScript
Package.describe({
|
|
summary: "Weibo OAuth flow",
|
|
version: '1.1.9'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('oauth2', ['client', 'server']);
|
|
api.use('oauth', ['client', 'server']);
|
|
api.use('http', ['server']);
|
|
api.use('templating@1.2.13', 'client');
|
|
api.use('random', 'client');
|
|
api.use('service-configuration', ['client', 'server']);
|
|
|
|
api.export('Weibo');
|
|
|
|
api.addFiles(
|
|
['weibo_configure.html', 'weibo_configure.js'],
|
|
'client');
|
|
|
|
api.addFiles('weibo_server.js', 'server');
|
|
api.addFiles('weibo_client.js', 'client');
|
|
});
|