Comparing version 0.4.1 to 0.4.2
{ | ||
"name": "viralify", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"description": "Injects one or more browserify transforms into all dependencies of a package recursively.", | ||
@@ -33,2 +33,3 @@ "main": "index.js", | ||
"browserify", | ||
"browserify-transform", | ||
"recursive", | ||
@@ -35,0 +36,0 @@ "global", |
# viralify [![build status](https://secure.travis-ci.org/thlorenz/viralify.png)](http://travis-ci.org/thlorenz/viralify) | ||
Injects one or more browserify transforms into all dependencies of a package recursively. | ||
Injects browserify transforms into specified dependencies of a package recursively. | ||
@@ -12,5 +12,5 @@ ```sh | ||
viralify(root, [ 'foo', 'bar' ] 'browserify-swap', function (err) { | ||
viralify(root, [ 'foo', 'bar' ], 'browserify-swap', function (err) { | ||
if (err) return console.error(err); | ||
// package.json's of packages 'foo' and 'bar' found in root and below | ||
// package.json's of packages 'foo' and 'bar', found in root and below, | ||
// now have 'browserify-swap' added to the end of their 'browserify.transform' field | ||
@@ -29,3 +29,3 @@ }) | ||
Inject browserify transform(s) into the package.json files of all packages at and below the given path. | ||
Inject browserify transform(s) into the package.json files of specified packages at and below the given path. | ||
@@ -32,0 +32,0 @@ OPTIONS: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43978