forked from classcraft/azure-active-directory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.js
executable file
·23 lines (20 loc) · 955 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
Package.describe({
summary: "Azure Active Directory OAuth flow",
version: "1.0.3",
name: "jss:azure-active-directory",
git: "https://github.com/JSSolutions/azure-active-directory"
});
Package.onUse(function(api) {
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['server']);
api.use(['[email protected]', '[email protected]'], ['client', 'server']);
api.use(['[email protected]', '[email protected]'], 'client');
api.use('[email protected]', ['client', 'server']);
api.export('AzureAd');
api.addFiles(['lib/azureAd.js']);
api.addFiles(['lib/resources.js', 'lib/serverHttp.js', 'resources/graph.js', 'resources/microsoftGraph.js'], 'server');
api.addFiles(['azure_ad_configure.html', 'azure_ad_configure.js'], 'client');
api.addFiles('azure_ad_server.js', 'server');
api.addFiles('azure_ad_client.js', 'client');
});