mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
284 B
JavaScript
11 lines
284 B
JavaScript
Package.describe({
|
|
summary: "Default control program for an application",
|
|
internal: true
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['underscore', 'livedata', 'mongo-livedata', 'ctl-helper'], 'server');
|
|
api.export('main', 'server');
|
|
api.add_files('ctl.js', 'server');
|
|
});
|