mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
28 lines
846 B
JavaScript
28 lines
846 B
JavaScript
Package.describe({
|
|
name: "modules",
|
|
version: '0.20.3',
|
|
summary: "CommonJS module system",
|
|
documentation: "README.md"
|
|
});
|
|
|
|
Npm.depends({
|
|
"@meteorjs/reify": "0.25.4",
|
|
"meteor-babel-helpers": "0.0.3",
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use("modules-runtime");
|
|
api.use("modules-runtime-hot", { weak: true });
|
|
api.mainModule("client.js", "client");
|
|
api.mainModule("server.js", "server");
|
|
api.export("meteorInstall");
|
|
|
|
// When compiling legacy code, the babel-compiler and meteor-babel
|
|
// packages assume meteorBabelHelpers.sanitizeForInObject is defined.
|
|
// Since the modules package is responsible for code from node_modules,
|
|
// it must also be responsible for exposing this runtime helper, but
|
|
// only in the legacy bundle.
|
|
api.addFiles("legacy.js", "legacy");
|
|
api.export("meteorBabelHelpers", "legacy");
|
|
});
|