Skip to content

Verify that a package will be able to install after it is published.

Notifications You must be signed in to change notification settings

brandonocasey/pkg-can-install

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pkg-can-install

Build Status Greenkeeper badge

NPM

Tests if the package in the current working directory can be installed after it is published, that way you won't have to publish another version with a fix.

Table of Contents generated with DocToc

Installation

$ npm install --save-dev pkg-can-install

Then edit your package.json to have:

  "scripts": {
    "prepublishOnly": "pkg-can-install"
  }

Then pkg-can-install will be run right before a publish.

How it works

  1. We get a temporary directory
  2. We recursively copy the current package minus node_modules to that directory
  3. We run npm install --production and verify that it works

About

Verify that a package will be able to install after it is published.

Resources

Stars

Watchers

Forks

Packages