sharp 0.33.0-rc.2 → 0.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/constructor.js +4 -0
- package/package.json +12 -12
package/lib/constructor.js
CHANGED
|
@@ -22,6 +22,10 @@ const debuglog = util.debuglog('sharp');
|
|
|
22
22
|
*
|
|
23
23
|
* Implements the [stream.Duplex](http://nodejs.org/api/stream.html#stream_class_stream_duplex) class.
|
|
24
24
|
*
|
|
25
|
+
* When loading more than one page/frame of an animated image,
|
|
26
|
+
* these are combined as a vertically-stacked "toilet roll" image
|
|
27
|
+
* where the overall height is the `pageHeight` multiplied by the number of `pages`.
|
|
28
|
+
*
|
|
25
29
|
* @constructs Sharp
|
|
26
30
|
*
|
|
27
31
|
* @emits Sharp#info
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sharp",
|
|
3
3
|
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
|
|
4
|
-
"version": "0.33.0
|
|
4
|
+
"version": "0.33.0",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://github.com/lovell/sharp",
|
|
7
7
|
"contributors": [
|
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"semver": "^7.5.4"
|
|
142
142
|
},
|
|
143
143
|
"optionalDependencies": {
|
|
144
|
-
"@img/sharp-darwin-arm64": "0.33.0
|
|
145
|
-
"@img/sharp-darwin-x64": "0.33.0
|
|
144
|
+
"@img/sharp-darwin-arm64": "0.33.0",
|
|
145
|
+
"@img/sharp-darwin-x64": "0.33.0",
|
|
146
146
|
"@img/sharp-libvips-darwin-arm64": "1.0.0",
|
|
147
147
|
"@img/sharp-libvips-darwin-x64": "1.0.0",
|
|
148
148
|
"@img/sharp-libvips-linux-arm": "1.0.0",
|
|
@@ -151,15 +151,15 @@
|
|
|
151
151
|
"@img/sharp-libvips-linux-x64": "1.0.0",
|
|
152
152
|
"@img/sharp-libvips-linuxmusl-arm64": "1.0.0",
|
|
153
153
|
"@img/sharp-libvips-linuxmusl-x64": "1.0.0",
|
|
154
|
-
"@img/sharp-linux-arm": "0.33.0
|
|
155
|
-
"@img/sharp-linux-arm64": "0.33.0
|
|
156
|
-
"@img/sharp-linux-s390x": "0.33.0
|
|
157
|
-
"@img/sharp-linux-x64": "0.33.0
|
|
158
|
-
"@img/sharp-linuxmusl-arm64": "0.33.0
|
|
159
|
-
"@img/sharp-linuxmusl-x64": "0.33.0
|
|
160
|
-
"@img/sharp-wasm32": "0.33.0
|
|
161
|
-
"@img/sharp-win32-ia32": "0.33.0
|
|
162
|
-
"@img/sharp-win32-x64": "0.33.0
|
|
154
|
+
"@img/sharp-linux-arm": "0.33.0",
|
|
155
|
+
"@img/sharp-linux-arm64": "0.33.0",
|
|
156
|
+
"@img/sharp-linux-s390x": "0.33.0",
|
|
157
|
+
"@img/sharp-linux-x64": "0.33.0",
|
|
158
|
+
"@img/sharp-linuxmusl-arm64": "0.33.0",
|
|
159
|
+
"@img/sharp-linuxmusl-x64": "0.33.0",
|
|
160
|
+
"@img/sharp-wasm32": "0.33.0",
|
|
161
|
+
"@img/sharp-win32-ia32": "0.33.0",
|
|
162
|
+
"@img/sharp-win32-x64": "0.33.0"
|
|
163
163
|
},
|
|
164
164
|
"devDependencies": {
|
|
165
165
|
"@emnapi/runtime": "^0.44.0",
|