Skip to content

Commit c81598a

Browse files
committed
Fix underscore dependency on server. (aslagle#481)
1 parent bdf40f4 commit c81598a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
summary: "A reactive table designed for Meteor",
3-
version: "0.8.42",
3+
version: "0.8.43",
44
name: "aslagle:reactive-table",
55
git: "https://github.com/aslagle/reactive-table.git"
66
});
@@ -9,7 +9,7 @@ Package.on_use(function (api) {
99
api.versionsFrom("METEOR@0.9.0");
1010
api.use('templating', 'client');
1111
api.use('jquery', 'client');
12-
api.use('underscore', 'client');
12+
api.use('underscore', ['server', 'client']);
1313
api.use('tracker@1.0.9', 'client');
1414
api.use('reactive-var@1.0.3', 'client');
1515
api.use("anti:i18n@0.4.3", 'client');

0 commit comments

Comments
 (0)