1.2.9
This is a bug fix release that allows child packages to import devDependencies.
When you install a dependency that looks like:
{
"name": "child",
"devDependencies": {
"foo": "1.0.0"
}
}
And this child dependency tries to import its devDependency:
require("foo");
Previously this would fail, because npm does not install a child dependency's devDependencies. However, in some cases foo
might have been installed anyways; because it is installed by another package for example. Now steal will try to resolve the devDependency package.