mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
This will make it much easier to fix bugs and make improvements going forward, since they won't have to wait for the next release of Meteor. One functional change: when the parent process exits, it no longer forces all connected shell clients to disconnect, which is actually a more convenient behavior, because it gives the clients a chance to reconnect when/if the server starts up again, and it's easy enough to kill the clients if that's what you want.
12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
Package.describe({
|
|
name: "shell-server",
|
|
version: "0.2.1",
|
|
summary: "Server-side component of the `meteor shell` command.",
|
|
documentation: "README.md"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use("ecmascript@0.5.7", "server");
|
|
api.mainModule("main.js", "server");
|
|
});
|