-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.js
31 lines (28 loc) · 944 Bytes
/
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
Package.describe({
name: "meteortoys:allthings",
summary: "Insanely Handy Development Tools",
version: "3.0.0",
git: "https://github.com/MeteorToys/allthings.git",
documentation: "README.md",
debugOnly: true
});
Package.onUse(function(api) {
api.add_files(["main.js"], ["client","server"]);
// these are debugOnly packages
// you can remove the one's you'd wish
api.use("msavin:[email protected]");
api.use("msavin:[email protected]");
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
api.use('meteortoys:[email protected]');
});