-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
executable file
·32 lines (26 loc) · 973 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Package.describe({
summary: 'Github Enterprise OAuth flow',
version: '2.0.5',
name: 'ibmcloud:accounts-ghe',
documentation: null
});
Package.onUse(function(api) {
api.use('[email protected]', ['client', 'server']);
api.imply('accounts-base', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['server']);
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use('[email protected]', ['client', 'server']);
api.addFiles('ghe_login_button.css', 'client');
api.addFiles('ghe.js');
api.export('Ghe');
api.addFiles(
['ghe_configure.html', 'ghe_configure.js'],
'client');
api.addFiles('ghe_server.js', 'server');
api.addFiles('ghe_client.js', 'client');
});