Skip to content

1.2.9

Compare
Choose a tag to compare
@matthewp matthewp released this 01 Mar 13:16
· 599 commits to master since this release

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.

Issues