ohif-viewer/Packages/ohif-studies/package.js
2017-10-25 22:09:08 -02:00

36 lines
750 B
JavaScript

Package.describe({
name: 'ohif:studies',
summary: 'OHIF Studies Library to deal with studies UI, retrieval and manipulation',
version: '0.0.1'
});
Package.onUse(function(api) {
api.versionsFrom('1.4');
api.use([
'ecmascript',
'templating',
'stylus',
'http'
]);
// Our custom packages
api.use([
'ohif:design',
'ohif:core',
'ohif:log',
'ohif:dicom-services',
'ohif:viewerbase',
'ohif:wadoproxy'
]);
// Client and server imports
api.addFiles('both/main.js', [ 'client', 'server' ]);
// Server imports
api.addFiles('server/main.js', 'server');
// Client imports
api.addFiles('client/main.js', 'client');
});