forked from meteor-useraccounts/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
75 lines (67 loc) · 1.81 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
71
72
73
74
75
Package.describe({
summary: "Accounts Templates styled for Twitter Bootstrap.",
version: "1.3.2",
name: "useraccounts:bootstrap",
git: "https://github.com/meteor-useraccounts/bootstrap.git",
});
Package.on_use(function(api, where) {
api.versionsFrom("[email protected]");
api.use([
"less",
"templating",
], "client");
api.use([
"useraccounts:core",
], ["client", "server"]);
api.imply([
"useraccounts:[email protected]",
], ["client", "server"]);
api.add_files([
"lib/at_error.html",
"lib/at_error.js",
"lib/at_form.html",
"lib/at_form.js",
"lib/at_input.html",
"lib/at_input.js",
"lib/at_nav_button.html",
"lib/at_nav_button.js",
"lib/at_oauth.html",
"lib/at_oauth.js",
"lib/at_pwd_form.html",
"lib/at_pwd_form.js",
"lib/at_pwd_form_btn.html",
"lib/at_pwd_form_btn.js",
"lib/at_pwd_link.html",
"lib/at_pwd_link.js",
"lib/at_result.html",
"lib/at_result.js",
"lib/at_sep.html",
"lib/at_sep.js",
"lib/at_signin_link.html",
"lib/at_signin_link.js",
"lib/at_signup_link.html",
"lib/at_signup_link.js",
"lib/at_social.html",
"lib/at_social.js",
"lib/at_terms_link.html",
"lib/at_terms_link.js",
"lib/at_title.html",
"lib/at_title.js",
"lib/full_page_at_form.html",
"lib/at_bootstrap.less"
], ["client"]);
});
Package.on_test(function(api) {
api.use([
"useraccounts:bootstrap",
"useraccounts:[email protected]",
]);
api.use([
"accounts-password",
"tinytest",
"test-helpers"
], ["client", "server"]);
api.add_files([
"tests/tests.js"
], ["client", "server"]);
});