From d0170f57baf0d5688fed19d05fecfd018fff2bbe Mon Sep 17 00:00:00 2001 From: Charlie Zhang Date: Sun, 16 Apr 2017 11:51:55 +0800 Subject: [PATCH] replaced aldeed:collection2 with aldeed:collection2-core and upgraded other dependencies to the latest version --- lib/smart-publications.js | 1 + package.js | 11 +++++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/smart-publications.js b/lib/smart-publications.js index 83fcc36..c9dbb6f 100644 --- a/lib/smart-publications.js +++ b/lib/smart-publications.js @@ -1,4 +1,5 @@ import PublicationUtils from "./utils.js"; +import SimpleSchema from 'simpl-schema'; SimpleSchema.extendOptions({ publish: Match.Optional(Match.Any), // public: true means the field is published freely diff --git a/package.js b/package.js index e76a7fc..ab2c8bd 100644 --- a/package.js +++ b/package.js @@ -1,13 +1,13 @@ Package.describe({ name: "utilities:smart-publications", summary: "Smart publications", - version: "0.1.4", + version: "0.2.0", git: "https://github.com/meteor-utilities/smart-publications.git" }); Package.onUse(function (api) { - api.versionsFrom("METEOR@1.3-beta.11"); + api.versionsFrom("METEOR@1.4.4.1"); api.use([ 'mongo', @@ -15,10 +15,9 @@ Package.onUse(function (api) { 'check', 'modules', 'underscore', - 'aldeed:simple-schema@1.5.3', - 'aldeed:collection2@2.8.0', - 'tmeasday:publish-counts@0.7.3', - 'peerlibrary:reactive-publish@0.2.0' + 'aldeed:collection2-core@2.0.0', + 'tmeasday:publish-counts@0.8.0', + 'peerlibrary:reactive-publish@0.3.0' ]); api.addFiles([