mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
- allow `api.use(package, {options})` without where
- fix showdown to use a weak dependency
11 lines
240 B
JavaScript
11 lines
240 B
JavaScript
Package.describe({
|
|
summary: "A minimalist client-side MVC framework"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
// XXX Backbone requires either jquery or zepto
|
|
api.use(["jquery", "json", "underscore"]);
|
|
|
|
api.add_files("backbone.js");
|
|
});
|