Files
meteor/packages/backbone/package.js
Nick Martin 2887771f4a Allow backbone on the server also.
Also, add json dependency.
2012-04-23 21:45:02 -07:00

12 lines
281 B
JavaScript

Package.describe({
summary: "A minimalist client-side MVC framework"
});
Package.on_use(function (api, where) {
// XXX Backbone requires either jquery or zepto
api.use(["jquery", "json"]);
where = where || ['client', 'server'];
api.add_files("backbone.js", where);
});