Files
meteor/packages/deprecated/amplify/package.js
David Greenspan 32f6edc624 Deprecate amplify,backbone,bootstrap,d3
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).
2014-09-25 11:02:34 -07:00

10 lines
212 B
JavaScript

Package.describe({
summary: "API for Persistent Storage, PubSub and Request",
version: "1.0.0"
});
Package.on_use(function (api) {
api.use('jquery', 'client');
api.add_files('amplify.js', 'client');
});