mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
packages/deprecated/README: ``` These packages are no longer actively maintained by MDG. Seek community alternatives instead. Note that these packages still exist in atmosphere, and you can still build a package that depends on one of them by specifying an explicit package version. ``` Nothing technically prevents us from publishing further versions of these packages (like the ones in packages/non-core).
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");
|
|
});
|