forked from copleykj/meteor-shower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
26 lines (21 loc) · 1.04 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
Package.describe({
summary: "A form-data validation and transformation package for Meteor",
version: "0.0.2",
git: "https://github.com/Konecty/Mesosphere.git"
});
Package.on_use(function (api, where) {
api.versionsFrom("[email protected]");
api.use(['templating','jquery', 'underscore', "mrt:[email protected]"], ['client', 'server']);
api.addFiles(['js/pre.js','js/mesosphere.js','js/post.js'], ['client', 'server']);
api.addFiles('css/mesosphere.css', 'client');
api.export('Mesosphere');
});
Package.on_test(function (api) {
api.use(['jquery', 'underscore', 'test-helpers', 'tinytest', 'mrt:[email protected]']);
api.addFiles('js/mesosphere.js', ['client', 'server']);
api.addFiles('tests/required_tests.js', ['client', 'server']);
api.addFiles('tests/format_tests.js', ['client', 'server']);
api.addFiles('tests/rules_tests.js', ['client', 'server']);
api.addFiles('tests/transforms_tests.js', ['client', 'server']);
api.addFiles('tests/aggregate_tests.js', ['client', 'server']);
});