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