strongloop / strong-tools

Tools for packaging, releasing, and preparing npm modules
Other
8 stars 7 forks source link

Allow test folder to be published #52

Closed rmg closed 8 years ago

rmg commented 8 years ago

In the rare case that a package really wants to include its test folder in its published tarball, this can be done by adding a publishConfig.export-tests property in package.json:

{
  "name": "my-package",
  "publishConfig": {
    "export-tests": true
  }
}
raymondfeng commented 8 years ago

LGTM