Skip to content

Commit

Permalink
Merge pull request RocketChat#4711 from ziedmahdi/fix-lib-package
Browse files Browse the repository at this point in the history
Fix lib package
  • Loading branch information
engelgabriel authored Oct 24, 2016
2 parents 2a99ce3 + 62dc0fe commit ad04371
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ accounts-meteor-developer@1.0.10
accounts-oauth@1.1.13
accounts-password@1.3.0
accounts-twitter@1.1.11
aldeed:moment-timezone@0.4.0
aldeed:simple-schema@1.5.3
allow-deny@1.0.5
autoupdate@1.2.11
Expand Down Expand Up @@ -92,8 +93,6 @@ monbro:mongodb-mapreduce-aggregation@1.0.1
mongo@1.1.12_5
mongo-id@1.0.5
mongo-livedata@1.0.12
mrt:moment@2.8.1
mrt:moment-timezone@0.2.1
mrt:reactive-store@0.0.1
mystor:device-detection@0.2.0
nimble:restivus@0.8.11
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-i18n/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ Package.onUse(function(api) {
}
});

api.use('tap:i18n');
api.use('tap:i18n@1.8.2');
});
2 changes: 1 addition & 1 deletion packages/rocketchat-importer-hipchat/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Package.onUse(function(api) {
'rocketchat:lib',
'rocketchat:importer'
]);
api.use(['mrt:moment-timezone@0.2.1'], 'server');
api.use(['aldeed:moment-timezone@0.4.0'], 'server');
api.use('rocketchat:logger', 'server');
api.addFiles('server.coffee', 'server');
api.addFiles('main.coffee', ['client', 'server']);
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-importer-slack/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Package.onUse(function(api) {
'rocketchat:lib',
'rocketchat:importer'
]);
api.use(['mrt:moment-timezone@0.2.1'], 'server');
api.use(['aldeed:moment-timezone@0.4.0'], 'server');
api.use('rocketchat:logger', 'server');
api.addFiles('server.coffee', 'server');
api.addFiles('main.coffee', ['client', 'server']);
Expand Down
1 change: 1 addition & 0 deletions packages/rocketchat-lib/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Package.onUse(function(api) {
api.use('matb33:collection-hooks');
api.use('service-configuration');
api.use('check');
api.use('momentjs:moment');
api.use('rocketchat:i18n');
api.use('rocketchat:streamer');
api.use('rocketchat:version');
Expand Down
3 changes: 1 addition & 2 deletions packages/rocketchat-smarsh-connector/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ Package.onUse(function(api) {
'ecmascript',
'rocketchat:lib',
'underscore',
'mrt:moment',
'mrt:moment-timezone'
'aldeed:moment-timezone'
]);

api.addFiles('lib/rocketchat.js', [ 'client', 'server' ]);
Expand Down

0 comments on commit ad04371

Please sign in to comment.