mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
367 B
JavaScript
14 lines
367 B
JavaScript
Package.describe({
|
|
summary: "Interaction with the configuration sources for your apps",
|
|
version: '1.0.0'
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['logging', 'underscore', 'livedata', 'ejson', 'follower-livedata']);
|
|
api.use(['mongo-livedata'], {
|
|
unordered: true
|
|
});
|
|
api.add_files(['config.js'], 'server');
|
|
api.export('AppConfig', 'server');
|
|
});
|