Actualización

This commit is contained in:
Xes
2025-04-10 12:53:50 +02:00
parent f7a0ba2b2f
commit 2001ceddea
39284 changed files with 991962 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
Package.describe({
name: 'dangrossman:bootstrap-daterangepicker',
version: '2.1.27',
summary: 'Date range picker component for Bootstrap',
git: 'https://github.com/dangrossman/bootstrap-daterangepicker',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('METEOR@0.9.0.1');
api.use('twbs:bootstrap@3.3.4', ["client"], {weak: true});
api.use('momentjs:moment@2.10.3', ["client"]);
api.use('jquery@1.11.3_2', ["client"]);
api.addFiles('daterangepicker.js', ["client"]);
api.addFiles('daterangepicker.css', ["client"]);
});