2014-11-27 17:43:27 +09:00
|
|
|
Package.describe({
|
|
|
|
name: 'telescope-datetimepicker',
|
2014-12-03 09:04:15 +09:00
|
|
|
summary: 'Custom bootstrap-datetimepicker input type for AutoForm',
|
2014-11-27 17:43:27 +09:00
|
|
|
version: '1.0.3',
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.use('templating@1.0.0');
|
|
|
|
api.use('blaze@2.0.0');
|
2014-12-29 18:24:26 +09:00
|
|
|
api.use('aldeed:autoform');
|
2014-11-27 17:43:27 +09:00
|
|
|
api.use('fourseven:scss');
|
|
|
|
// api.use('jquery');
|
|
|
|
// api.use('tsega:bootstrap3-datetimepicker');
|
2014-12-03 09:04:15 +09:00
|
|
|
// api.use('chriswessels:glyphicons-halflings');
|
2014-11-27 17:43:27 +09:00
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'datetimepicker.scss',
|
2014-11-28 15:18:55 +09:00
|
|
|
'autoform-bs-datetimepicker.html',
|
|
|
|
'autoform-bs-datetimepicker.js',
|
2014-11-27 17:43:27 +09:00
|
|
|
'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');
|
|
|
|
});
|