mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
920 B
28 lines
920 B
|
5 years ago
|
Package.describe({
|
||
|
|
name: 'wekan-cfs-power-queue',
|
||
|
|
version: '0.9.11',
|
||
|
|
summary: "PowerQueue is a powerful tool for handling async tasks, throtling etc.",
|
||
|
|
git: 'https://github.com/zcfs/Meteor-power-queue.git'
|
||
|
|
});
|
||
|
|
|
||
|
|
Package.onUse(function (api) {
|
||
|
|
api.versionsFrom('1.0');
|
||
|
|
|
||
|
|
api.use(['deps', 'wekan-cfs-reactive-property@0.0.4'], ['client', 'server']);
|
||
|
|
|
||
|
|
// We let the user decide what spinal queue to use - We support both
|
||
|
|
// reactive-list and micro-queue they obey the spinal-queue spec
|
||
|
|
api.use(['wekan-cfs-reactive-list@0.0.9', 'wekan-cfs-micro-queue@0.0.6'], ['client', 'server'], { weak: true });
|
||
|
|
|
||
|
|
api.export && api.export('PowerQueue');
|
||
|
|
api.addFiles(['power-queue.js'], ['client', 'server']);
|
||
|
|
});
|
||
|
|
|
||
|
|
Package.onTest(function (api) {
|
||
|
|
api.use(['wekan-cfs-power-queue', 'wekan-cfs-reactive-list']);
|
||
|
|
api.use('test-helpers', ['server', 'client']);
|
||
|
|
api.use('tinytest');
|
||
|
|
|
||
|
|
api.addFiles('tests.js');
|
||
|
|
});
|