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.'); });