mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
271 B
JavaScript
12 lines
271 B
JavaScript
Package.describe({
|
|
summary: "Ordered traversable dictionary with a mutable ordering",
|
|
version: '1.2.0-beta300.6',
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('ecmascript');
|
|
api.mainModule('ordered_dict.js');
|
|
api.export('OrderedDict');
|
|
});
|