Skip to content
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

Update cordova-plugin-camera to v7 & versions to Meteor 3 #160

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/mdg:camera/package.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Package.describe({
name: "mdg:camera",
summary: "Photos with one function call on desktop and mobile.",
version: "1.8.0",
version: "1.9.0",
git: "https://github.com/meteor/mobile-packages"
});

Cordova.depends({
"cordova-plugin-camera": "6.0.0"
"cordova-plugin-camera": "7.0.0"
});

Package.onUse(function(api) {

api.versionsFrom("2.5");
api.versionsFrom(["2.5", "3.0"]);
api.export('MeteorCamera');
api.use(["templating@1.4.1", "session@1.2.0", "blaze@2.5.0", "less@4.0.0", "reactive-var@1.0.11"]);
api.use(["templating", "session", "blaze", "less", "reactive-var"]);
api.use("isobuild:[email protected]");

api.addFiles('photo.html');
Expand Down