-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.js
41 lines (34 loc) · 1.01 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
Package.describe({
name: 'iron:dynamic-template',
summary: 'Dynamically create and update templates and their data contexts.',
version: '1.0.12',
git: 'https://github.com/iron-meteor/iron-dynamic-template'
});
Package.on_use(function (api) {
api.versionsFrom('[email protected]');
api.use('blaze');
api.use('underscore');
api.use('ui');
api.use('jquery');
api.use('tracker');
api.use('reactive-var');
api.use('templating');
api.use('random');
api.use('iron:[email protected]');
api.imply('iron:core');
api.add_files('version_conflict_error.js');
api.add_files('dynamic_template.html');
api.add_files('dynamic_template.js');
api.add_files('blaze_overrides.js');
});
Package.on_test(function (api) {
api.versionsFrom('[email protected]');
api.use('iron:dynamic-template');
api.use('templating');
api.use('tinytest');
api.use('test-helpers');
api.use('blaze');
api.use('deps');
api.add_files('dynamic_template_test.html', 'client');
api.add_files('dynamic_template_test.js', 'client');
});