Change ohif-study-list to use HammerJS from NPM

This commit is contained in:
Erik Ziegler 2017-02-09 14:22:08 +01:00
parent 24d829cb72
commit 4107ed1dfa

View File

@ -4,6 +4,10 @@ Package.describe({
version: '0.0.1'
});
Npm.depends({
hammerjs: '2.0.6'
});
Package.onUse(function(api) {
api.versionsFrom('1.4');
@ -31,9 +35,6 @@ Package.onUse(function(api) {
api.use('ohif:viewerbase');
api.use('ohif:wadoproxy');
// TODO: Replace with NPM dependency
api.use('ohif:cornerstone'); // Only for HammerJS
// Client and server imports
api.addFiles('both/index.js', [ 'client', 'server' ]);