mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
The beta released with this commit (modules-beta.6) included everything on
the release-1.3 branch up to bdf64da339
("Avoid circular package.json resolution chains.").
Unfortunately, additional commits were pushed to the branch before this
commit was pushed, so the release tag release/METEOR@1.3-modules-beta.6
does not correspond to any commit in the branch history.
Rather than attempting to rewrite the branch history, I decided to amend
this commit with this explanation before pushing it.
To see exactly what was released with the sixth beta:
git fetch --tags
git log release/METEOR@1.3-modules-beta.6
30 lines
616 B
JavaScript
30 lines
616 B
JavaScript
Package.describe({
|
|
name: "modules-runtime",
|
|
version: "0.5.0-modules.6",
|
|
summary: "CommonJS module system",
|
|
git: "https://github.com/benjamn/install",
|
|
documentation: "README.md"
|
|
});
|
|
|
|
Npm.depends({
|
|
install: "0.4.2"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.addFiles(".npm/package/node_modules/install/install.js", [
|
|
"client",
|
|
"server"
|
|
], {
|
|
bare: true
|
|
});
|
|
|
|
api.addFiles("modules-runtime.js");
|
|
api.export("meteorInstall");
|
|
});
|
|
|
|
Package.onTest(function(api) {
|
|
api.use("tinytest");
|
|
api.use("modules"); // Test modules-runtime via modules.
|
|
api.addFiles("modules-runtime-tests.js");
|
|
});
|