diff --git a/docs/client/concepts.html b/docs/client/concepts.html index 06568f0f4d..5e91b50b08 100644 --- a/docs/client/concepts.html +++ b/docs/client/concepts.html @@ -29,7 +29,7 @@ Meteor is two things: * A _library of packages_: pre-written, self-contained modules that you might need in your app.
There are about a dozen core Meteor -packages that most any app will use (for example `webapp`, which +packages that most any app will use (for example [`webapp`](#webapp), which handles incoming HTTP connections, and `templating`, which lets you make HTML templates that automatically update live as data changes). Then there are optional packages like `email`, which lets your app diff --git a/docs/client/docs.js b/docs/client/docs.js index 82b65f30a9..2963477ea4 100644 --- a/docs/client/docs.js +++ b/docs/client/docs.js @@ -402,7 +402,8 @@ var toc = [ "spiderable", "stylus", "showdown", - "underscore" + "underscore", + "webapp" ] ], "Command line", [ [ diff --git a/docs/client/packages.html b/docs/client/packages.html index 9a903657e1..d835975ee6 100644 --- a/docs/client/packages.html +++ b/docs/client/packages.html @@ -36,6 +36,7 @@ Meteor Development Group maintains the following packages: {{> pkg_stylus}} {{> pkg_showdown}} {{> pkg_underscore}} +{{> pkg_webapp}} {{/markdown}} diff --git a/docs/client/packages/webapp.html b/docs/client/packages/webapp.html new file mode 100644 index 0000000000..b18c440693 --- /dev/null +++ b/docs/client/packages/webapp.html @@ -0,0 +1,47 @@ + \ No newline at end of file diff --git a/meteor b/meteor index 6a0ce87e63..4e1f16d457 100755 --- a/meteor +++ b/meteor @@ -1,6 +1,6 @@ #!/bin/bash -BUNDLE_VERSION=0.3.50 +BUNDLE_VERSION=0.3.51 # OS Check. Put here because here is where we download the precompiled # bundles that are arch specific.