mirror of
https://github.com/wekan/wekan.git
synced 2025-12-19 08:50:13 +01:00
23 lines
579 B
JavaScript
23 lines
579 B
JavaScript
Package.describe({
|
|
name: 'wekan-cfs-reactive-list',
|
|
version: '0.0.9',
|
|
summary: 'ReactiveList provides a small, fast queue/list built for Power-Queue',
|
|
git: 'https://github.com/zcfs/Meteor-reactive-list.git'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.versionsFrom('1.0');
|
|
|
|
api.use('deps', ['client', 'server']);
|
|
|
|
api.export('ReactiveList');
|
|
api.addFiles(['reactive-list.js'], ['client', 'server']);
|
|
});
|
|
|
|
Package.onTest(function (api) {
|
|
api.use('wekan-cfs-reactive-list');
|
|
api.use('test-helpers', 'server');
|
|
api.use('tinytest');
|
|
|
|
api.addFiles('tests.js');
|
|
});
|