Commit 117a7739ec2904fb38c31314d842ea573ada87f0
1 parent
eea4ff94e1
Exists in
master
Remove cmather:handlebars-server package.
Add meteorhacks:ssr package. Update README.md to reflect package changes. Closes #39.
Showing
3 changed files
with
3 additions
and
4 deletions
Show diff stats
.meteor/packages
... | ... | @@ -11,7 +11,6 @@ jquery |
11 | 11 | check |
12 | 12 | audit-argument-checks |
13 | 13 | iron:router |
14 | -cmather:handlebars-server | |
15 | 14 | themeteorchef:jquery-validation |
16 | 15 | particle4dev:sass@0.3.0 |
17 | 16 | twbs:bootstrap |
... | ... | @@ -21,3 +20,4 @@ meteorhacks:npm |
21 | 20 | |
22 | 21 | npm-container |
23 | 22 | themeteorchef:bert |
23 | +meteorhacks:ssr | ... | ... |
.meteor/versions
... | ... | @@ -13,14 +13,12 @@ browser-policy-content@1.0.4 |
13 | 13 | browser-policy-framing@1.0.4 |
14 | 14 | callback-hook@1.0.3 |
15 | 15 | check@1.0.5 |
16 | -cmather:handlebars-server@2.0.0 | |
17 | 16 | ddp@1.1.0 |
18 | 17 | deps@1.0.7 |
19 | 18 | ejson@1.0.6 |
20 | 19 | email@1.0.6 |
21 | 20 | fastclick@1.0.3 |
22 | 21 | geojson-utils@1.0.3 |
23 | -handlebars@1.0.3 | |
24 | 22 | html-tools@1.0.4 |
25 | 23 | htmljs@1.0.4 |
26 | 24 | http@1.1.0 |
... | ... | @@ -43,6 +41,7 @@ meteor@1.1.5 |
43 | 41 | meteor-platform@1.2.2 |
44 | 42 | meteorhacks:async@1.0.0 |
45 | 43 | meteorhacks:npm@1.3.0 |
44 | +meteorhacks:ssr@2.1.2 | |
46 | 45 | minifiers@1.1.4 |
47 | 46 | minimongo@1.0.7 |
48 | 47 | mobile-status-bar@1.0.3 | ... | ... |
README.md
... | ... | @@ -13,12 +13,12 @@ For more detail on updates, [read the Changelog](https://github.com/themeteorche |
13 | 13 | - Bootstrap 3 - `meteor add twbs:bootstrap` |
14 | 14 | - Browser Policy - `meteor add browser-policy` |
15 | 15 | - Check - `meteor add check` |
16 | -- Handlebars Server - `meteor add cmather:handlebars-server` | |
17 | 16 | - Iron Router - `meteor add iron:router` |
18 | 17 | - jQuery - `meteor add jquery` |
19 | 18 | - jQuery Validation - `meteor add themeteorchef:jquery-validation` |
20 | 19 | - NPM - `meteor add meteorhacks:npm` |
21 | 20 | - Sass - `meteor add particle4dev:sass@0.3.0` |
21 | +- SSR - `meteor add meteorhacks:ssr` | |
22 | 22 | - Underscore - `meteor add underscore` |
23 | 23 | |
24 | 24 | **Note:** Base also supports loading NPM packages using the `meteorhacks:npm` package. To load NPM packages, add name and version information to `/packages.json` and inside of your file (server only), load the package with `var package = Meteor.npmRequire('package-name');`. For more information, see the [meteorhacks:npm documentation](https://github.com/meteorhacks/npm/). | ... | ... |