Skip to content

Commit

Permalink
Fix underscore dependency on server. (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslagle committed Nov 19, 2017
1 parent bdf40f4 commit c81598a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
summary: "A reactive table designed for Meteor",
version: "0.8.42",
version: "0.8.43",
name: "aslagle:reactive-table",
git: "https://github.com/aslagle/reactive-table.git"
});
Expand All @@ -9,7 +9,7 @@ Package.on_use(function (api) {
api.versionsFrom("[email protected]");
api.use('templating', 'client');
api.use('jquery', 'client');
api.use('underscore', 'client');
api.use('underscore', ['server', 'client']);
api.use('[email protected]', 'client');
api.use('[email protected]', 'client');
api.use("anti:[email protected]", 'client');
Expand Down

0 comments on commit c81598a

Please sign in to comment.