From f2e61cddd47fe3d7aab3a832d51ea9659138ec1f Mon Sep 17 00:00:00 2001 From: Mitar Date: Thu, 10 Mar 2016 00:40:58 -0800 Subject: [PATCH] Assure that `Package.templating.Template` exists. --- packages/templating/package.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/templating/package.js b/packages/templating/package.js index 0fc60dfe7..5702d5e1e 100644 --- a/packages/templating/package.js +++ b/packages/templating/package.js @@ -9,6 +9,9 @@ Package.describe({ // registry and a default templating system, ideally per-package. Package.onUse(function (api) { + api.use('templating-runtime'); + api.export('Template', 'client'); + api.imply('templating-compiler'); api.imply('templating-runtime'); });