-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
46 lines (41 loc) · 1.27 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
Package.describe({
name: 'tooit:content-types',
summary: 'A Meteor package to easly define application document types like Drupal content types.',
version: '0.0.9',
git: 'https://github.com/tooit/meteor-content-types.git'
});
Package.onUse(function(api) {
api.use('kadira:[email protected]', ['client'], {weak: true});
api.use('kadira:[email protected]', ['client'], {weak: true});
api.use('iron:[email protected]', ['client'], {weak: true});
var dependencies = [
'templating',
'check',
'mongo',
'ejson',
'reactive-var',
'aldeed:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]',
'aldeed:[email protected]'
];
api.use(dependencies);
api.imply(dependencies);
api.addFiles([
'client/lib/ContentType.js',
'client/lib/ContentTypes.js',
'client/lib/UIHelpers.js',
'client/templates/default/_wrapper.html',
'client/templates/default/index.html',
'client/templates/default/create.html',
'client/templates/default/read.html',
'client/templates/default/update.html',
'client/templates/default/delete.html'
], 'client');
api.export([
'ContentType',
'ContentTypes',
], 'client');
});