mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
This reverts commit 080f6f60dd.
Unfortunately, this broke all packages that were published with
`api.versionsFrom('METEOR-CORE@0.9.0-atm')` that used one of these
packages.
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
Package.describe({
|
|
summary: "A minimalist client-side MVC framework",
|
|
version: "1.0.0"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
// XXX Backbone requires either jquery or zepto
|
|
api.use(["jquery", "json", "underscore"]);
|
|
|
|
api.add_files("backbone.js");
|
|
});
|