mirror of
https://github.com/wekan/wekan.git
synced 2025-12-20 01:10:12 +01:00
23 lines
596 B
JavaScript
23 lines
596 B
JavaScript
|
|
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.versionsFrom('2.13');
|
||
|
|
api.use([
|
||
|
|
'momentjs:moment@2.29.3',
|
||
|
|
'templating'
|
||
|
|
], 'client');
|
||
|
|
api.addFiles([
|
||
|
|
'template.html',
|
||
|
|
'template.js',
|
||
|
|
'fullcalendar/fullcalendar.js',
|
||
|
|
'fullcalendar/fullcalendar.css',
|
||
|
|
'fullcalendar/locale-all.js',
|
||
|
|
'fullcalendar/gcal.js',
|
||
|
|
], 'client');
|
||
|
|
});
|