mirror of
https://github.com/wekan/wekan.git
synced 2025-12-20 17:30:13 +01:00
24 lines
593 B
JavaScript
24 lines
593 B
JavaScript
|
|
Package.describe({
|
||
|
|
name: 'wekan-cfs-reactive-property',
|
||
|
|
version: '0.0.4',
|
||
|
|
summary: 'Reactive Property is a small, fast reative property class',
|
||
|
|
git: 'https://github.com/zcfs/Meteor-reactive-property.git'
|
||
|
|
});
|
||
|
|
|
||
|
|
Package.onUse(function (api) {
|
||
|
|
api.versionsFrom('1.0');
|
||
|
|
|
||
|
|
api.use('deps', ['client', 'server']);
|
||
|
|
|
||
|
|
api.export('ReactiveProperty');
|
||
|
|
api.addFiles(['reactive-property.js'], ['client', 'server']);
|
||
|
|
});
|
||
|
|
|
||
|
|
// Package.onTest(function (api) {
|
||
|
|
// api.use('power-queue');
|
||
|
|
// api.use('test-helpers', 'server');
|
||
|
|
// api.use('tinytest');
|
||
|
|
|
||
|
|
// api.add_files('tests.js');
|
||
|
|
// });
|