Update install package used by modules-runtime to version 0.11.1.

This enables using index.* modules with non-.js file extensions to make
the containing directory importable (cc @justinanastos):
c417044421

Since this is a core package patch update, you can update to this version
of the modules-runtime package by running

  meteor update modules-runtime

This should give you modules-runtime@0.10.1.
This commit is contained in:
Ben Newman
2018-06-25 13:22:52 -04:00
parent fbea42ca7c
commit 445fd3714a
2 changed files with 5 additions and 5 deletions

View File

@@ -2,9 +2,9 @@
"lockfileVersion": 1,
"dependencies": {
"install": {
"version": "0.11.0",
"resolved": "https://registry.npmjs.org/install/-/install-0.11.0.tgz",
"integrity": "sha512-30UqvWKr/59SStU2/bRye4wT1S3mzjwa0oV+BxusB0neGqhxUrwLlnXDbt6QtIfBxCNWFqg+ARnGNjFj8XuV5A=="
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/install/-/install-0.11.1.tgz",
"integrity": "sha512-T562YLqjg/ixCFIcqxjFy2dWkulV5o6gDkKTUbUZU4O/JlrzpDMWqR8sR1BPVeb+SAXoQ6scv09MxY2XOzknQQ=="
}
}
}

View File

@@ -1,13 +1,13 @@
Package.describe({
name: "modules-runtime",
version: "0.10.0",
version: "0.10.1",
summary: "CommonJS module system",
git: "https://github.com/benjamn/install",
documentation: "README.md"
});
Npm.depends({
install: "0.11.0"
install: "0.11.1"
});
Package.onUse(function(api) {