From e1a7c2ff465aed7216651586f83aa38fd0155f10 Mon Sep 17 00:00:00 2001 From: Avital Oliver Date: Thu, 20 Sep 2012 07:33:08 -0700 Subject: [PATCH] Minor changes to deprecated absolute-url package based on code review comments --- packages/absolute-url/package.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/absolute-url/package.js b/packages/absolute-url/package.js index 6c93f33226..b84536203d 100644 --- a/packages/absolute-url/package.js +++ b/packages/absolute-url/package.js @@ -1,8 +1,10 @@ Package.describe({ - summary: "DEPRECATED: Generate absolute URLs pointing to the application" + summary: "DEPRECATED: Generate absolute URLs pointing to the application", + internal: true }); Package.on_use(function (api) { console.log('DEPRECATED. The `absolute-url` package has been folded into ' - + 'the `meteor` package and should not be used directly.'); + + 'the `meteor` package and should not be used directly. Run ' + + '`meteor remove absolute-url` to resolve this.'); });