mirror of https://github.com/ColorlibHQ/gentelella
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
484 B
18 lines
484 B
Package.describe({
|
|
name: 'dangrossman:bootstrap-daterangepicker',
|
|
version: '3.0.3',
|
|
summary: 'Date range picker component',
|
|
git: 'https://github.com/dangrossman/daterangepicker',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.versionsFrom('METEOR@0.9.0.1');
|
|
|
|
api.use('momentjs:moment@2.22.1', ["client"]);
|
|
api.use('jquery@3.3.1', ["client"]);
|
|
|
|
api.addFiles('daterangepicker.js', ["client"]);
|
|
api.addFiles('daterangepicker.css', ["client"]);
|
|
});
|