diff --git a/History.md b/History.md index 6bb2fe51e5..925f6a5e94 100644 --- a/History.md +++ b/History.md @@ -30,9 +30,7 @@ apply the patch and will instead disable websockets. client code changes; server-only code changes will not cause the page to reload. -* New 'facts' package publishes internal statistics about Meteor. To - use, simply `meteor add facts` then add `{{> serverFacts}}` somewhere - in your interface. +* New 'facts' package publishes internal statistics about Meteor. * Add an explicit check that publish functions return a cursor, an array of cursors, or a falsey value. This is a safety check to to prevent diff --git a/packages/facts/package.js b/packages/facts/package.js index 1f835c15fe..f36b50d054 100644 --- a/packages/facts/package.js +++ b/packages/facts/package.js @@ -1,5 +1,6 @@ Package.describe({ - summary: "Publish internal app statistics" + summary: "Publish internal app statistics", + internal: true }); Package.on_use(function (api) {