mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
Package.describe({
|
|
summary: "Meteor's latency-compensated distributed data framework",
|
|
version: '1.4.0'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use(['ddp-client'], ['client', 'server']);
|
|
api.use(['ddp-server'], 'server');
|
|
|
|
api.export('DDP');
|
|
api.export('DDPServer', 'server');
|
|
|
|
api.imply('ddp-client');
|
|
api.imply('ddp-server');
|
|
});
|