Skip to content

Commit

Permalink
Fixed: compatibility with Meteor 0.9.X
Browse files Browse the repository at this point in the history
  • Loading branch information
pascoual committed Oct 20, 2014
1 parent 172677e commit a1028d6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Package.describe({
summary: "PDFKit, the PDF generation library"
summary: "PDFKit, the PDF generation library",
version: "1.0.3",
git: "https://github.com/pascoual/meteor-pdfkit"
});

Npm.depends({
pdfkit: "0.4.3"
pdfkit: "0.7.0"
});

Package.on_use(function (api) {
api.versionsFrom("[email protected]");
api.use(['underscore'], 'server');

api.export('PDFDocument');

api.add_files(['pdfkitWrapper.js'], 'server');
});
});

0 comments on commit a1028d6

Please sign in to comment.