-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
38 lines (33 loc) · 1.13 KB
/
package.js
File metadata and controls
38 lines (33 loc) · 1.13 KB
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
Package.describe({
summary: "interactive e-mail/passoword sign-up / authentication using Mailgun validation API, Iron-Router, Parsley, and helpless-b3 ..."
});
Package.on_use(function (api) {
api.use(['standard-app-packages', 'http', 'parsley-b3', 'underscore', 'jquery', 'helpless-b3'], 'client');
api.imply('helpless-b3', 'client');
api.use(['coffeescript', 'accounts-base', 'accounts-password', 'iron-router'], ['client', 'server']);
api.imply(['accounts-base', 'accounts-password'],['client', 'server']);
api.add_files('mailgun-key.coffee', 'client');
api.add_files(['methods.coffee', 'configs.coffee'], ['client', 'server']);
/*
* api.add_files(
* 'dashboardModal.html', 'client'
* );
*
*/
api.add_files([
'parsley-defaults.coffee',
'throttle.coffee',
'nextStep.coffee',
'dynaSign.html',
'dynaAlert.html',
'routes.coffee',
'identityUnconfirmed.coffee',
'confirmIdentity.coffee',
'forgotPassword.coffee',
'resetPassword.coffee',
'signUpNew.coffee',
'signBack.coffee',
'dynaAlert.coffee',
'dynaButton.coffee'
], ['client']);
});