Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into imports/wave-9-mai…
Browse files Browse the repository at this point in the history
…n-module-timesync
  • Loading branch information
rodrigok committed Nov 1, 2018
2 parents 657a22d + b871405 commit 95b30d1
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions packages/meteor-timesync/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,33 @@ Package.describe({
});

Package.onUse(function (api) {
api.use([
'check',
'tracker',
'http',
], 'client');

api.use([
'webapp',
], 'server');

api.use([
'ecmascript',
]);
api.mainModule('client/index.js', 'client');
api.mainModule('server/index.js', 'server');
api.mainModule('client/index.js', 'client');
api.mainModule('server/index.js', 'server');
});

Package.onTest(function (api) {
api.use([
'ecmascript',
'tinytest',
'test-helpers'
]);
api.use([
'ecmascript',
'tinytest',
'test-helpers'
]);

api.use(['tracker'], 'client');
api.use(['tracker'], 'client');

api.use('mizzao:timesync');
api.use('mizzao:timesync');

api.addFiles('tests/client.js', 'client');
api.addFiles('tests/client.js', 'client');
});

0 comments on commit 95b30d1

Please sign in to comment.