wasm-vips 0.0.2 → 0.0.3
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/README.md +1 -1
- package/lib/node-commonjs/vips.js +199 -203
- package/lib/node-commonjs/vips.worker.js +1 -1
- package/lib/node-es6/vips.mjs +199 -203
- package/lib/node-es6/vips.worker.mjs +1 -1
- package/lib/vips-es6.js +203 -202
- package/lib/vips-es6.worker.js +1 -1
- package/lib/vips.d.ts +549 -121
- package/lib/vips.js +203 -202
- package/lib/vips.wasm +0 -0
- package/lib/vips.worker.js +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ pipeline executes at once, streaming the image in parallel from source to
|
|
|
10
10
|
destination a section at a time. Because wasm-vips is parallel, it's quick,
|
|
11
11
|
and because it doesn't need to keep entire images in memory, it's light.
|
|
12
12
|
|
|
13
|
-
> Note
|
|
13
|
+
> **Note**: This library is still under early development. See: [#1](https://github.com/kleisauke/wasm-vips/issues/1).
|
|
14
14
|
|
|
15
15
|
## Engine support
|
|
16
16
|
|