-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.safe.js
128 lines (97 loc) · 2.92 KB
/
package.safe.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
Package.describe({
summary: 'Impact (alpha)',
version: '0.1.0',
name: 'impact:impact',
});
Package.onUse(function (api, where) {
api.versionsFrom('0.9.3.1');
api.use([
'standard-app-packages',
'less',
'accounts-base',
'accounts-password',
'showdown',
'iron:router@1.0.0',
'mrt:moment@2.8.1',
// 'mrt:timestamp@0.1.1',
'anti:fake@0.4.1',
'anti:entry@0.2.0-impact',
'aldeed:collection2@2.2.0',
'aldeed:simple-schema@1.0.3',
'aldeed:autoform@4.0.0-rc6',
// 'anti:mark@0.6.0',
], ['client', 'server']);
api.imply([
'standard-app-packages',
'less',
'accounts-base',
'accounts-password',
'showdown',
'iron:router',
'mrt:moment',
// 'mrt:timestamp@0.1.1',
'anti:fake',
'anti:entry',
// 'anti:mark@0.6.0',
'aldeed:collection2',
'aldeed:simple-schema',
'aldeed:autoform',
]);
api.addFiles([
'both/index.js',
'both/model.js',
'both/moduleInstance.js',
'both/routeControllers.js',
'both/routes.js',
'both/utils/makeShallow.js',
], ['client', 'server']);
api.addFiles([
'client/helpers/_helpers.js',
'client/helpers/date.js',
'client/helpers/logic.js',
'client/helpers/mPathFor.js',
'client/helpers/closestData.js',
'client/layouts/_.lessimport',
'client/layouts/index.less',
'client/layouts/admin/adminLayout.html',
'client/layouts/admin/adminLayout.js',
'client/layouts/admin/adminHeader.less',
'client/layouts/admin/adminLayout.less',
'client/layouts/admin/adminMenu.less',
'client/layouts/admin/adminTable.less',
'client/layouts/enter/enterLayout.html',
'client/layouts/enter/enterLayout.js',
'client/layouts/enter/enterLayout.less',
'client/layouts/user/userLayout.html',
'client/layouts/user/userLayout.js',
'client/layouts/user/userLayout.less',
'client/views/content/_homeController.js',
'client/views/content/home.html',
'client/views/content/home.js',
'client/views/impact/_homeController.js',
'client/views/impact/home.html',
'client/views/impact/home.js',
'client/views/user/_homeController.js',
'client/views/user/_profileController.js',
'client/views/user/_accountController.js',
'client/views/user/home.html',
'client/views/user/profile.html',
'client/views/user/account.html',
'client/views/site/_homeController.js',
'client/views/site/_usersController.js',
'client/views/site/_inviteController.js',
'client/views/site/home.html',
'client/views/site/users.html',
'client/views/site/invite.html',
'client/index/index.html',
'client/index/subscribe.js',
], 'client');
api.addFiles([
'server/greet.js',
'server/widgets.js',
], 'server');
api.addFiles([
'files/impact128.png',
], ['client', 'server'], {isAsset: true});
api.export(['App', 'Modules', 'Widgets', 'Media', 'Panels', 'Impact', 'M', 'Helpers']);
});