imagemagick-native
Advanced tools
Comparing version 1.8.0 to 1.9.0
@@ -8,6 +8,2 @@ module.exports = require(__dirname + '/build/Release/imagemagick.node'); | ||
// node v0.10+ use native Transform, else polyfill | ||
var Transform = stream.Transform || | ||
require('readable-stream').Transform; | ||
function Convert(options) { | ||
@@ -23,5 +19,5 @@ // allow use without new | ||
// init Transform | ||
Transform.call(this, options); | ||
stream.Transform.call(this, options); | ||
} | ||
util.inherits(Convert, Transform); | ||
util.inherits(Convert, stream.Transform); | ||
@@ -28,0 +24,0 @@ Convert.prototype._transform = function (chunk, enc, done) { |
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "1.8.0", | ||
"version": "1.9.0", | ||
"license": "MIT", | ||
@@ -25,7 +25,6 @@ "repository": { | ||
"engines": { | ||
"node": "*" | ||
"node": ">=0.10.0" | ||
}, | ||
"dependencies": { | ||
"nan": "~1.7.0", | ||
"readable-stream": "*" | ||
"nan": "2.x" | ||
}, | ||
@@ -32,0 +31,0 @@ "devDependencies": { |
@@ -11,3 +11,3 @@ # node-imagemagick-native | ||
[![Build Status](https://travis-ci.org/mash/node-imagemagick-native.png)](https://travis-ci.org/mash/node-imagemagick-native) | ||
[![Build Status](https://travis-ci.org/elad/node-imagemagick-native.png)](https://travis-ci.org/elad/node-imagemagick-native) | ||
@@ -33,2 +33,3 @@ Table of contents | ||
* [Performance](#performance) | ||
* [Contributing](#contributing) | ||
* [License](#license) | ||
@@ -434,2 +435,8 @@ | ||
<a name='contributing'></a> | ||
## Contributing | ||
This project follows the ["OPEN Open Source"](https://gist.github.com/substack/e205f5389890a1425233) philosophy. If you submit a pull request and it gets merged you will most likely be given commit access to this repository. | ||
<a name='license'></a> | ||
@@ -436,0 +443,0 @@ |
@@ -7,2 +7,4 @@ | ||
process.chdir(__dirname); | ||
console.log("image magick's version is: " + imagemagick.version()); | ||
@@ -60,2 +62,2 @@ var versions = imagemagick.version().split("."); | ||
}); | ||
}); | ||
}); |
@@ -6,2 +6,4 @@ var test = require('tap').test | ||
process.chdir(__dirname); | ||
console.log("image magick's version is: " + imagemagick.version()); | ||
@@ -8,0 +10,0 @@ var versions = imagemagick.version().split("."); |
@@ -8,2 +8,4 @@ | ||
process.chdir(__dirname); | ||
console.log("image magick's version is: " + imagemagick.version()); | ||
@@ -10,0 +12,0 @@ var versions = imagemagick.version().split("."); |
@@ -6,2 +6,4 @@ var test = require('tap').test | ||
process.chdir(__dirname); | ||
console.log("image magick's version is: " + imagemagick.version()); | ||
@@ -8,0 +10,0 @@ var versions = imagemagick.version().split("."); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
179658
1
910
1
462
+ Addednan@2.22.0(transitive)
- Removedreadable-stream@*
- Removedabort-controller@3.0.0(transitive)
- Removedbase64-js@1.5.1(transitive)
- Removedbuffer@6.0.3(transitive)
- Removedevent-target-shim@5.0.1(transitive)
- Removedevents@3.3.0(transitive)
- Removedieee754@1.2.1(transitive)
- Removednan@1.7.0(transitive)
- Removedprocess@0.11.10(transitive)
- Removedreadable-stream@4.7.0(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedstring_decoder@1.3.0(transitive)
Updatednan@2.x