mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
31 lines
782 B
JavaScript
31 lines
782 B
JavaScript
Package.describe({
|
|
name: "telescope:datetimepicker",
|
|
summary: "Custom bootstrap-datetimepicker input type for AutoForm",
|
|
version: "0.25.0",
|
|
git: "https://github.com/TelescopeJS/telescope-datetimepicker.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'telescope:core@0.25.0',
|
|
'tsega:bootstrap3-datetimepicker@4.14.30_4'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'datetimepicker.scss',
|
|
'autoform-bs-datetimepicker.html',
|
|
'autoform-bs-datetimepicker.js',
|
|
'bootstrap-collapse-transitions.js'
|
|
], 'client');
|
|
|
|
api.addAssets([
|
|
'fonts/glyphicons-halflings-regular.eot',
|
|
'fonts/glyphicons-halflings-regular.svg',
|
|
'fonts/glyphicons-halflings-regular.ttf',
|
|
'fonts/glyphicons-halflings-regular.woff'
|
|
], "client");
|
|
|
|
});
|