Skip to content

Commit

Permalink
v2.0.2
Browse files Browse the repository at this point in the history
 - Support running out of site subdirectory, see #3
  • Loading branch information
dr-dimitru committed Mar 14, 2016
1 parent 8466f80 commit 4b0ef0b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ Package.onUse(function(api) {
api.versionsFrom('1.0');
api.addFiles('cookies.coffee', ['client', 'server']);
api.use(['coffeescript', 'underscore'], ['client', 'server']);
api.use(['webapp'], 'server');
api.use('webapp', 'server');
api.use('http', 'client');

api.export('Cookies');
});

Package.onTest(function(api) {
api.use('tinytest');
api.use(['coffeescript', 'ostrio:cookies@2.0.1'], ['client', 'server']);
api.use(['coffeescript', 'ostrio:cookies'], ['client', 'server']);
api.use(['underscore', 'ejson', 'webapp'], 'server');
api.addFiles('cookies-tests.js', ['client', 'server']);
});

0 comments on commit 4b0ef0b

Please sign in to comment.