mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
374 B
JavaScript
11 lines
374 B
JavaScript
Package.describe({
|
|
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. Run '
|
|
+ '`meteor remove absolute-url` to resolve this.');
|
|
});
|