Skip to content

Upgrading to be compatible with the newest version of Meteor #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
50 changes: 50 additions & 0 deletions .versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
allow-deny@1.0.5
babel-compiler@6.8.5
babel-runtime@0.1.9_1
base64@1.0.9
binary-heap@1.0.9
blaze@2.1.8
blaze-tools@1.0.9
boilerplate-generator@1.0.9
callback-hook@1.0.9
check@1.2.3
ddp@1.2.5
ddp-client@1.2.5
ddp-common@1.2.5
ddp-server@1.2.6
deps@1.0.12
diff-sequence@1.0.6
ecmascript@0.4.6_1
ecmascript-runtime@0.2.12
ejson@1.0.12
geojson-utils@1.0.9
hazio:counter-cache@0.0.5
html-tools@1.0.10
htmljs@1.0.10
id-map@1.0.8
jquery@1.11.9
local-test:hazio:counter-cache@0.0.5
logging@1.0.13_1
matb33:collection-hooks@0.8.3
meteor@1.1.16
minimongo@1.0.17
modules@0.6.5
modules-runtime@0.6.5
mongo@1.1.9_1
mongo-id@1.0.5
npm-mongo@1.4.44_1
observe-sequence@1.0.12
ordered-dict@1.0.8
promise@0.7.3
random@1.0.10
reactive-var@1.0.10
retry@1.0.7
routepolicy@1.0.11
spacebars@1.0.12
spacebars-compiler@1.0.12
tinytest@1.0.6
tracker@1.0.15
ui@1.0.11
underscore@1.0.9
webapp@1.2.9_1
webapp-hashing@1.0.9
13 changes: 7 additions & 6 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
Package.describe({
summary: "Cache the counts of an associated collection",
version: "0.2.1",
git: "https://github.com/percolatestudio/meteor-counter-cache.git"
version: "0.0.5",
git: "https://github.com/hazio/meteor-counter-cache.git"
});

Package.onUse(function(api) {
api.use([
'mrt:collection-hooks@0.6.3',
'underscore@1.0.0',
'mongo@1.0.6'
'matb33:collection-hooks@0.8.3',
'underscore@1.0.9',
'mongo@1.1.9_1'
]);
api.add_files('counter-cache.js', ['client', 'server']);
});

Package.onTest(function(api) {
api.use(['tinytest', 'dburles:counter-cache']);
api.use(['tinytest', 'underscore', 'mongo', 'matb33:collection-hooks@0.8.3']);
api.add_files('counter-cache_tests.js', 'server');
api.add_files('counter-cache.js', ['client', 'server']);
});
1 change: 1 addition & 0 deletions packages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
10 changes: 5 additions & 5 deletions smart.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "counter-cache",
"description": "Cache the counts of an associated collection",
"homepage": "https://github.com/percolatestudio/meteor-counter-cache",
"author": "David Burles (http://twitter.com/dburles)",
"version": "0.1.3",
"git": "https://github.com/percolatestudio/meteor-counter-cache.git",
"homepage": "https://github.com/hazio/meteor-counter-cache",
"author": "Jani Halmetoja (http://twitter.com/halmetoja)",
"version": "0.0.5",
"git": "https://github.com/hazio/meteor-counter-cache.git",
"packages": {
"collection-hooks": "0.6.3"
"collection-hooks": "0.8.3"
}
}