mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
The 1.6-beta.7 release had a version conflict because of the webapp@1.3.17 constraint in server-render/package.js. I noticed the problem before publishing the release, so we will just skip to 1.6-beta.8.
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
Package.describe({
|
|
name: "shell-server",
|
|
version: "0.3.0-beta.8",
|
|
summary: "Server-side component of the `meteor shell` command.",
|
|
documentation: "README.md"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use("ecmascript", "server");
|
|
api.mainModule("main.js", "server");
|
|
});
|