mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
304 B
JavaScript
14 lines
304 B
JavaScript
Package.describe({
|
|
name: "client-only-ecmascript",
|
|
version: "0.0.1",
|
|
summary: "",
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use("ecmascript", "client");
|
|
api.mainModule("client.js", "client");
|
|
api.addFiles("server.js", "server");
|
|
api.export("ServerTypeof", "server");
|
|
});
|