Skip to content

Commit

Permalink
0.9.0.0 compatibility changes
Browse files Browse the repository at this point in the history
  • Loading branch information
artwells committed Sep 4, 2014
1 parent 2f3085f commit 1cf5321
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 2 deletions.
5 changes: 4 additions & 1 deletion package.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
Package.describe({
summary: "Automatically add visitor as anonymous guest with userId"
summary: "Automatically add visitor as anonymous guest with userId",
version: "0.0.6",
git: "https://github.com/artwells/meteor-accounts-guest.git"
});

Package.on_use(function (api) {
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password'], 'client');
api.use(['accounts-base'], 'server');
api.add_files('accounts-guest-server.js', 'server');
Expand Down
2 changes: 1 addition & 1 deletion smart.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"description": "Automatically add visitor as anonymous guest with userId",
"homepage": "https://github.com/artwells/meteor-accounts-guest",
"author": "artwells (http://artwells.com)",
"version": "0.0.1",
"version": "0.0.6",
"git": "https://github.com/artwells/meteor-accounts-guest.git"
}
115 changes: 115 additions & 0 deletions versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
{
"dependencies": [
[
"accounts-base",
"1.0.0"
],
[
"accounts-password",
"1.0.0"
],
[
"application-configuration",
"1.0.0"
],
[
"binary-heap",
"1.0.0"
],
[
"callback-hook",
"1.0.0"
],
[
"check",
"1.0.0"
],
[
"deps",
"1.0.1"
],
[
"ejson",
"1.0.0"
],
[
"email",
"1.0.0"
],
[
"follower-livedata",
"1.0.0"
],
[
"geojson-utils",
"1.0.0"
],
[
"id-map",
"1.0.0"
],
[
"json",
"1.0.0"
],
[
"livedata",
"1.0.7"
],
[
"localstorage",
"1.0.0"
],
[
"logging",
"1.0.2"
],
[
"meteor",
"1.0.2"
],
[
"minimongo",
"1.0.1"
],
[
"mongo-livedata",
"1.0.3"
],
[
"npm-bcrypt",
"0.7.7"
],
[
"ordered-dict",
"1.0.0"
],
[
"random",
"1.0.0"
],
[
"retry",
"1.0.0"
],
[
"service-configuration",
"1.0.0"
],
[
"sha",
"1.0.0"
],
[
"srp",
"1.0.0"
],
[
"underscore",
"1.0.0"
]
],
"pluginDependencies": [],
"toolVersion": "meteor-tool@1.0.26",
"format": "1.0"
}

0 comments on commit 1cf5321

Please sign in to comment.