-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
29 lines (23 loc) · 812 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
Package.describe({
name: "revbucket:zendesk",
summary: "Zendesk OAuth flow",
version: '1.1.6',
documentation: 'README.md',
git: 'https://github.com/revbucket/zendesk.git'
});
Package.onUse(function(api) {
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', 'client');
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', 'client');
api.use('[email protected]', 'server');
api.use('[email protected]', ['client', 'server']);
api.export('Zendesk');
api.addFiles(
['zendesk_configure.html', 'zendesk_configure.js'],
'client');
api.addFiles('zendesk_server.js', 'server');
api.addFiles('zendesk_client.js', 'client');
});