mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
384 B
JavaScript
16 lines
384 B
JavaScript
Package.describe({
|
|
summary: "Binary Heap datastructure implementation",
|
|
version: '1.0.12-beta300.0'
|
|
});
|
|
|
|
Package.onUse(api => {
|
|
api.export(['MaxHeap', 'MinHeap', 'MinMaxHeap']);
|
|
api.use(['id-map', 'ecmascript']);
|
|
api.mainModule('binary-heap.js');
|
|
});
|
|
|
|
Package.onTest(api => {
|
|
api.use(['tinytest', 'binary-heap', 'ecmascript']);
|
|
api.addFiles('binary-heap-tests.js');
|
|
});
|