mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
26 lines
792 B
JavaScript
26 lines
792 B
JavaScript
Package.describe({
|
|
name: 'telescope-datetimepicker',
|
|
summary: 'Custom bootstrap-datetimepicker input type for AutoForm',
|
|
version: '1.0.3',
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use('templating@1.0.0');
|
|
api.use('blaze@2.0.0');
|
|
api.use('aldeed:autoform@4.0.0');
|
|
api.use('fourseven:scss');
|
|
// api.use('jquery');
|
|
// api.use('tsega:bootstrap3-datetimepicker');
|
|
// api.use('chriswessels:glyphicons-halflings');
|
|
|
|
api.addFiles([
|
|
'datetimepicker.scss',
|
|
'autoform-bs-datetimepicker.html',
|
|
'autoform-bs-datetimepicker.js',
|
|
'bootstrap-collapse-transitions.js',
|
|
'fonts/glyphicons-halflings-regular.eot',
|
|
'fonts/glyphicons-halflings-regular.svg',
|
|
'fonts/glyphicons-halflings-regular.ttf',
|
|
'fonts/glyphicons-halflings-regular.woff'
|
|
], 'client');
|
|
});
|