mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
22 lines
703 B
JavaScript
22 lines
703 B
JavaScript
Package.describe({
|
|
summary: "Meteor developer accounts OAuth flow",
|
|
version: "1.0.0",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('oauth2', ['client', 'server']);
|
|
api.use('oauth', ['client', 'server']);
|
|
api.use('http', ['server']);
|
|
api.use(['underscore', 'service-configuration'], ['client', 'server']);
|
|
api.use(['random', 'templating'], 'client');
|
|
|
|
api.export('MeteorDeveloperAccounts');
|
|
|
|
api.add_files('meteor_developer_common.js');
|
|
api.add_files(['meteor_developer_configure.html',
|
|
'meteor_developer_configure.js'], 'client');
|
|
api.add_files('meteor_developer_server.js', 'server');
|
|
api.add_files('meteor_developer_client.js', 'client');
|
|
});
|