forked from Meteor-Community-Packages/raix-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
70 lines (56 loc) · 1.97 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Package.describe({
name: 'raix:push',
version: '2.6.1',
summary: 'Isomorphic Push notifications for APN and GCM',
git: 'https://github.com/raix/push.git'
});
// Server-side push deps
Npm.depends({
'apn' : '1.6.2', // 1.3.8, 1.4.2
//'debug': '0.7.3', // DEBUG
'node-gcm' : '0.9.6' // 0.9.6
});
Cordova.depends({
// Fix ios 7 and ios in general
'com.phonegap.plugins.PushPlugin': 'https://github.com/raix/PushPlugin/tarball/c4e3aa69c66bde45472e81ac303a9e39020c9cc7'
// Fix issue 365 ios 7 missing badge updates
// 'com.phonegap.plugins.PushPlugin': 'https://github.com/raix/PushPlugin/tarball/ff4ade868488ef0fcb014da652681011cd95d8ea'
// 'com.clone.phonegap.plugins.pushplugin': '2.4.1' //with #354 fixed OK
//'com.phonegap.plugins.PushPlugin': 'http://github.com/rossmartin/PushPlugin/tarball/6cf2e1a107310e859839fb7a0dc2618a7a199430'
});
Package.registerBuildPlugin({
name: 'configuration',
use: [
'check'
],
sources: [
'plugin/push.configuration.js'
]
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use([
'tracker', // Push.id() is reactive
'random' // The push it is created with Random.id()
], 'client');
// Keep track of users in the appCollection
api.use('accounts-base', ['client', 'server'], { weak: true });
api.use('raix:cordova@0.2.3', 'client', { weak: true });
api.use(['raix:eventemitter@0.1.1', 'check', 'mongo'], ['client', 'server']);
api.use('mongo', 'server');
// Common api
api.addFiles([
'lib/common/main.js',
'lib/common/notifications.js'
], ['client', 'server']);
// API's
api.addFiles('lib/client/browser.js', 'web.browser');
api.addFiles('lib/client/cordova.js', 'web.cordova');
api.addFiles('lib/server/push.api.js', 'server');
// Unified api
api.addFiles('lib/client/client.js', 'client');
api.addFiles('lib/server/server.js', 'server');
api.export('Push');
api.export('onNotificationAPN', 'web.cordova');
api.export('onNotificationGCM', 'web.cordova');
});