Files
meteor/packages/ui/package.js
David Glasser 4daaa76b12 METEOR@1.0.4
2015-03-17 13:06:07 -07:00

17 lines
414 B
JavaScript

Package.describe({
summary: "Deprecated: Use the 'blaze' package",
version: '1.0.6'
});
Package.onUse(function (api) {
api.use('blaze');
api.imply('blaze');
// XXX COMPAT WITH PACKAGES BUILT FOR 0.9.0.
//
// (in particular, packages that have a weak dependency on this
// package, since then exported symbols live on the
// `Package.ui` object)
api.export(['Blaze', 'UI', 'Handlebars']);
});