2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:datetimepicker",
|
|
|
|
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
|
2015-12-11 17:04:23 +09:00
|
|
|
version: "0.25.6",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-datetimepicker.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2015-04-24 09:28:50 +09:00
|
|
|
api.use([
|
2015-12-11 17:04:23 +09:00
|
|
|
'telescope:core@0.25.6',
|
2015-10-13 10:43:59 +09:00
|
|
|
'tsega:bootstrap3-datetimepicker@4.17.37_1'
|
2015-04-24 09:28:50 +09:00
|
|
|
]);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'datetimepicker.scss',
|
|
|
|
'autoform-bs-datetimepicker.html',
|
|
|
|
'autoform-bs-datetimepicker.js',
|
2015-09-22 16:28:36 +09:00
|
|
|
'bootstrap-collapse-transitions.js'
|
|
|
|
], 'client');
|
|
|
|
|
|
|
|
api.addAssets([
|
2015-04-22 07:50:11 +09:00
|
|
|
'fonts/glyphicons-halflings-regular.eot',
|
|
|
|
'fonts/glyphicons-halflings-regular.svg',
|
|
|
|
'fonts/glyphicons-halflings-regular.ttf',
|
|
|
|
'fonts/glyphicons-halflings-regular.woff'
|
2015-09-22 16:28:36 +09:00
|
|
|
], "client");
|
|
|
|
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|