sharp 0.33.5-rc.0 → 0.33.5
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/index.d.ts +1 -1
- package/lib/sharp.js +0 -1
- package/package.json +12 -12
package/lib/index.d.ts
CHANGED
|
@@ -1069,7 +1069,7 @@ declare namespace sharp {
|
|
|
1069
1069
|
/** Number of pixels per inch (DPI), if present */
|
|
1070
1070
|
density?: number | undefined;
|
|
1071
1071
|
/** String containing JPEG chroma subsampling, 4:2:0 or 4:4:4 for RGB, 4:2:0:4 or 4:4:4:4 for CMYK */
|
|
1072
|
-
chromaSubsampling
|
|
1072
|
+
chromaSubsampling?: string | undefined;
|
|
1073
1073
|
/** Boolean indicating whether the image is interlaced using a progressive scan */
|
|
1074
1074
|
isProgressive?: boolean | undefined;
|
|
1075
1075
|
/** Number of pages/frames contained within the image, with support for TIFF, HEIF, PDF, animated GIF and animated WebP */
|
package/lib/sharp.js
CHANGED
|
@@ -57,7 +57,6 @@ if (sharp) {
|
|
|
57
57
|
help.push(
|
|
58
58
|
'- Ensure optional dependencies can be installed:',
|
|
59
59
|
' npm install --include=optional sharp',
|
|
60
|
-
' yarn add sharp --ignore-engines',
|
|
61
60
|
'- Ensure your package manager supports multi-platform installation:',
|
|
62
61
|
' See https://sharp.pixelplumbing.com/install#cross-platform',
|
|
63
62
|
'- Add platform-specific dependencies:',
|
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.5
|
|
4
|
+
"version": "0.33.5",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
|
7
7
|
"contributors": [
|
|
@@ -142,8 +142,8 @@
|
|
|
142
142
|
"semver": "^7.6.3"
|
|
143
143
|
},
|
|
144
144
|
"optionalDependencies": {
|
|
145
|
-
"@img/sharp-darwin-arm64": "0.33.5
|
|
146
|
-
"@img/sharp-darwin-x64": "0.33.5
|
|
145
|
+
"@img/sharp-darwin-arm64": "0.33.5",
|
|
146
|
+
"@img/sharp-darwin-x64": "0.33.5",
|
|
147
147
|
"@img/sharp-libvips-darwin-arm64": "1.0.4",
|
|
148
148
|
"@img/sharp-libvips-darwin-x64": "1.0.4",
|
|
149
149
|
"@img/sharp-libvips-linux-arm": "1.0.5",
|
|
@@ -152,15 +152,15 @@
|
|
|
152
152
|
"@img/sharp-libvips-linux-x64": "1.0.4",
|
|
153
153
|
"@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
|
|
154
154
|
"@img/sharp-libvips-linuxmusl-x64": "1.0.4",
|
|
155
|
-
"@img/sharp-linux-arm": "0.33.5
|
|
156
|
-
"@img/sharp-linux-arm64": "0.33.5
|
|
157
|
-
"@img/sharp-linux-s390x": "0.33.5
|
|
158
|
-
"@img/sharp-linux-x64": "0.33.5
|
|
159
|
-
"@img/sharp-linuxmusl-arm64": "0.33.5
|
|
160
|
-
"@img/sharp-linuxmusl-x64": "0.33.5
|
|
161
|
-
"@img/sharp-wasm32": "0.33.5
|
|
162
|
-
"@img/sharp-win32-ia32": "0.33.5
|
|
163
|
-
"@img/sharp-win32-x64": "0.33.5
|
|
155
|
+
"@img/sharp-linux-arm": "0.33.5",
|
|
156
|
+
"@img/sharp-linux-arm64": "0.33.5",
|
|
157
|
+
"@img/sharp-linux-s390x": "0.33.5",
|
|
158
|
+
"@img/sharp-linux-x64": "0.33.5",
|
|
159
|
+
"@img/sharp-linuxmusl-arm64": "0.33.5",
|
|
160
|
+
"@img/sharp-linuxmusl-x64": "0.33.5",
|
|
161
|
+
"@img/sharp-wasm32": "0.33.5",
|
|
162
|
+
"@img/sharp-win32-ia32": "0.33.5",
|
|
163
|
+
"@img/sharp-win32-x64": "0.33.5"
|
|
164
164
|
},
|
|
165
165
|
"devDependencies": {
|
|
166
166
|
"@emnapi/runtime": "^1.2.0",
|