Files
meteor/packages/handlebars/package.js
David Greenspan 1dedd89387 Eliminate UI from docs; add some API to Template!
By choosing names like Template.registerHelper(…) and Template.instance() (instead of Blaze), we can separate the “Templates” section and the “Blaze” section of the docs.
2014-08-28 04:11:25 -07:00

14 lines
354 B
JavaScript

Package.describe({
summary: "Deprecated",
version: '1.0.0'
});
Package.on_use(function (api) {
// XXX we unfortunately we can't do this since `meteor test-packages`
// tries to load all packages.
//
// throw new Error(
// "The 'handlebars' package is deprecated. "
// + "`Handlebars.registerHelper` is now `Template.registerHelper`.");
});