mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
What happened to beta.13, beta.14, and beta.15? All unfortunately suffered from problems that made it either impossible or unwise to upgrade to those versions.
14 lines
361 B
JavaScript
14 lines
361 B
JavaScript
Package.describe({
|
|
summary: "Deprecated",
|
|
version: '1.0.4-beta.16'
|
|
});
|
|
|
|
Package.onUse(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`.");
|
|
});
|