LT-55: Adding jsPDF to measurements package

This commit is contained in:
Bruno Alves de Faria 2017-01-23 15:52:37 -02:00
parent 0271d5895f
commit fc3eb30f8b
4 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@ -6,5 +6,6 @@ docs/
*/.meteor/dev_bundle
node_modules
.npm
npm-debug.log
Packages/active-entry/helloworld/
LesionTracker/tests/nightwatch/reports/

View File

@ -0,0 +1,4 @@
import { OHIF } from 'meteor/ohif:core';
import * as jsPDF from 'jspdf';
window.jsPDF = jsPDF;

View File

@ -1,6 +1,7 @@
import './jumpToRowItem.js';
import './activateMeasurements.js';
import './deactivateAllToolData.js';
import './exportPdf.js';
import './getTimepointName.js';
import './hangingProtocolCustomizations.js';
import './MeasurementHandlers.js';

View File

@ -1,5 +1,6 @@
Npm.depends({
ajv: '4.10.4'
ajv: '4.10.4',
jspdf: '1.3.2'
});
Package.describe({