mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
281 B
JavaScript
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);
|
|
});
|