wekan/packages/wekan-fullcalendar/package.js

22 lines
559 B
JavaScript
Raw Normal View History

2023-08-22 18:51:03 -03:00
Package.describe({
name: 'wekan-fullcalendar',
summary: "Full-sized drag & drop event calendar (jQuery plugin)",
version: "3.10.5",
git: "https://github.com/fullcalendar/fullcalendar.git"
});
Package.onUse(function(api) {
api.use([
2024-09-24 07:22:22 +03:00
'momentjs:moment',
2023-08-22 18:51:03 -03:00
'templating'
], 'client');
api.addFiles([
'template.html',
'template.js',
'fullcalendar/fullcalendar.js',
'fullcalendar/fullcalendar.css',
'fullcalendar/locale-all.js',
'fullcalendar/gcal.js',
], 'client');
});