Files
meteor/packages/accounts-github/package.js
Jesse Rosenberger fd0bd1ec59 Bump package version of accounts-github in preparation for publishing.
Bumping this to make sure it brings in the correct dependency of
`github-oauth` and the fix included in the references below.

Ref: 4228dcbd03
Ref: https://github.com/meteor/meteor/pull/10899
2020-02-05 18:53:18 +02:00

24 lines
570 B
JavaScript

Package.describe({
summary: 'Login service for Github accounts',
version: '1.4.3',
});
Package.onUse(api => {
api.use('ecmascript');
api.use('accounts-base', ['client', 'server']);
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.use('github-oauth');
api.imply('github-oauth');
api.use(
['accounts-ui', 'github-config-ui'],
['client', 'server'],
{ weak: true }
);
api.addFiles('notice.js');
api.addFiles('github.js');
});