-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.js
54 lines (49 loc) · 1.26 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
Package.describe({
name: 'aldeed:template-extension',
summary: 'Adds template features currently missing from the templating package',
version: '4.1.0',
git: 'https://github.com/aldeed/meteor-template-extension.git'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'ecmascript',
'templating',
'blaze',
'tracker',
], 'client');
api.addFiles([
'lib/hooks.js',
'lib/template-for-each.js',
'lib/template-hooks.js',
'lib/template-global-hooks.js',
'lib/template-for-each-instance.js',
'lib/template-inherits-events-from.js',
'lib/template-inherits-helpers-from.js',
'lib/template-inherits-hooks-from.js',
'lib/template-register-helpers.js',
'lib/template-replaces.js',
'lib/template-clear-event-maps.js',
'lib/template-copy-as.js',
'lib/template-instance-parent.js',
'lib/template-instance-get.js',
'lib/template-instance-set.js',
'lib/template-parent-data-function.js'
], 'client');
});
Package.onTest(function(api) {
api.use([
'aldeed:template-extension',
'jquery',
'templating',
'tinytest',
'tracker',
'ejson',
'underscore',
'reactive-var',
], 'client');
api.addFiles([
'tests.html',
'tests.js'
], 'client');
});