|
1 | 1 | Package.describe({ |
2 | | - summary: "Accounts Templates styled for Semantic UI.", |
3 | | - version: "1.8.1", |
4 | | - name: "useraccounts:semantic-ui", |
5 | | - git: "https://github.com/meteor-useraccounts/semantic-ui.git", |
| 2 | + summary: 'Accounts Templates styled for Semantic UI.', |
| 3 | + version: '1.8.1', |
| 4 | + name: 'useraccounts:semantic-ui', |
| 5 | + git: 'https://github.com/meteor-useraccounts/semantic-ui.git', |
6 | 6 | }); |
7 | 7 |
|
8 | 8 | Package.on_use(function(api, where) { |
9 | | - api.versionsFrom("[email protected]"); |
| 9 | + api.versionsFrom('[email protected]'); |
10 | 10 |
|
11 | | - api.use([ |
12 | | - "less", |
13 | | - "templating", |
14 | | - ], "client"); |
| 11 | + api.use([ |
| 12 | + 'less', |
| 13 | + 'templating', |
| 14 | + ], 'client'); |
15 | 15 |
|
16 | | - api.use([ |
17 | | - "useraccounts:core", |
18 | | - ], ["client", "server"]); |
| 16 | + api.use([ |
| 17 | + 'useraccounts:core', |
| 18 | + ], ['client', 'server']); |
19 | 19 |
|
20 | | - api.imply([ |
21 | | - |
22 | | - ], ["client", "server"]); |
| 20 | + api.imply([ |
| 21 | + |
| 22 | + ], ['client', 'server']); |
23 | 23 |
|
24 | | - api.add_files([ |
25 | | - "lib/at_error.html", |
26 | | - "lib/at_error.js", |
27 | | - "lib/at_form.html", |
28 | | - "lib/at_form.js", |
29 | | - "lib/at_input.html", |
30 | | - "lib/at_input.js", |
31 | | - "lib/at_nav_button.html", |
32 | | - "lib/at_nav_button.js", |
33 | | - "lib/at_oauth.html", |
34 | | - "lib/at_oauth.js", |
35 | | - "lib/at_pwd_form.html", |
36 | | - "lib/at_pwd_form.js", |
37 | | - "lib/at_pwd_form_btn.html", |
38 | | - "lib/at_pwd_form_btn.js", |
39 | | - "lib/at_pwd_link.html", |
40 | | - "lib/at_pwd_link.js", |
41 | | - "lib/at_reCaptcha.html", |
42 | | - "lib/at_reCaptcha.js", |
43 | | - "lib/at_result.html", |
44 | | - "lib/at_result.js", |
45 | | - "lib/at_sep.html", |
46 | | - "lib/at_sep.js", |
47 | | - "lib/at_signin_link.html", |
48 | | - "lib/at_signin_link.js", |
49 | | - "lib/at_signup_link.html", |
50 | | - "lib/at_signup_link.js", |
51 | | - "lib/at_social.html", |
52 | | - "lib/at_social.js", |
53 | | - "lib/at_terms_link.html", |
54 | | - "lib/at_terms_link.js", |
55 | | - "lib/at_resend_verification_email_link.html", |
56 | | - "lib/at_resend_verification_email_link.js", |
57 | | - "lib/at_title.html", |
58 | | - "lib/at_title.js", |
59 | | - "lib/full_page_at_form.html", |
60 | | - "lib/at_semantic-ui.less", |
61 | | - "lib/at_message.html", |
62 | | - "lib/at_message.js" |
63 | | - ], ["client"]); |
| 24 | + api.add_files([ |
| 25 | + 'lib/at_error.html', |
| 26 | + 'lib/at_error.js', |
| 27 | + 'lib/at_form.html', |
| 28 | + 'lib/at_form.js', |
| 29 | + 'lib/at_input.html', |
| 30 | + 'lib/at_input.js', |
| 31 | + 'lib/at_nav_button.html', |
| 32 | + 'lib/at_nav_button.js', |
| 33 | + 'lib/at_oauth.html', |
| 34 | + 'lib/at_oauth.js', |
| 35 | + 'lib/at_pwd_form.html', |
| 36 | + 'lib/at_pwd_form.js', |
| 37 | + 'lib/at_pwd_form_btn.html', |
| 38 | + 'lib/at_pwd_form_btn.js', |
| 39 | + 'lib/at_pwd_link.html', |
| 40 | + 'lib/at_pwd_link.js', |
| 41 | + 'lib/at_reCaptcha.html', |
| 42 | + 'lib/at_reCaptcha.js', |
| 43 | + 'lib/at_result.html', |
| 44 | + 'lib/at_result.js', |
| 45 | + 'lib/at_sep.html', |
| 46 | + 'lib/at_sep.js', |
| 47 | + 'lib/at_signin_link.html', |
| 48 | + 'lib/at_signin_link.js', |
| 49 | + 'lib/at_signup_link.html', |
| 50 | + 'lib/at_signup_link.js', |
| 51 | + 'lib/at_social.html', |
| 52 | + 'lib/at_social.js', |
| 53 | + 'lib/at_terms_link.html', |
| 54 | + 'lib/at_terms_link.js', |
| 55 | + 'lib/at_resend_verification_email_link.html', |
| 56 | + 'lib/at_resend_verification_email_link.js', |
| 57 | + 'lib/at_title.html', |
| 58 | + 'lib/at_title.js', |
| 59 | + 'lib/full_page_at_form.html', |
| 60 | + 'lib/at_semantic-ui.less', |
| 61 | + 'lib/at_message.html', |
| 62 | + 'lib/at_message.js' |
| 63 | + ], ['client']); |
64 | 64 | }); |
65 | 65 |
|
66 | 66 | Package.on_test(function(api) { |
67 | | - api.use([ |
68 | | - "useraccounts:semantic-ui", |
69 | | - |
70 | | - ]); |
| 67 | + api.use([ |
| 68 | + 'useraccounts:semantic-ui', |
| 69 | + |
| 70 | + ]); |
71 | 71 |
|
72 | | - api.use([ |
73 | | - "accounts-password", |
74 | | - "tinytest", |
75 | | - "test-helpers" |
76 | | - ], ["client", "server"]); |
| 72 | + api.use([ |
| 73 | + 'accounts-password', |
| 74 | + 'tinytest', |
| 75 | + 'test-helpers' |
| 76 | + ], ['client', 'server']); |
77 | 77 |
|
78 | | - api.add_files([ |
79 | | - "tests/tests.js" |
80 | | - ], ["client", "server"]); |
| 78 | + api.add_files([ |
| 79 | + 'tests/tests.js' |
| 80 | + ], ['client', 'server']); |
81 | 81 | }); |
0 commit comments