From 988a18c2c90cb3f91fc1e5ff7e12910c3d967e8c Mon Sep 17 00:00:00 2001 From: Fabian Kromer Date: Fri, 3 Jan 2020 12:42:20 +0100 Subject: [PATCH] avoid bundling jQuery twice due to changes in Meteor 1.8.3. See https://github.com/meteor/meteor/blob/devel/History.md#v183-2019-12-19 for more details. --- package.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.js b/package.js index 8078520..6572409 100644 --- a/package.js +++ b/package.js @@ -2,18 +2,17 @@ Package.describe({ git: 'git://github.com/mouse0270/bootstrap-notify.git', name: 'mouse0270:bootstrap-notify', summary: 'Turns standard Bootstrap alerts into "Growl-like" notifications', - version: '3.1.5', + version: '3.1.6', }); Package.onUse(function (api) { api.versionsFrom('1.0'); - api.use('jquery', 'client'); + api.use('jquery@1.11.9 || 3.0.0', 'client', { weak: true }); api.addFiles('bootstrap-notify.js', 'client'); }); Package.onTest(function (api) { api.use('mouse0270:bootstrap-notify', 'client'); api.use('tinytest', 'client'); - api.addFiles('test_meteor.js', 'client'); });