@travetto/image 3.0.0-rc.8 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,6 +6,10 @@
6
6
  **Install: @travetto/image**
7
7
  ```bash
8
8
  npm install @travetto/image
9
+
10
+ # or
11
+
12
+ yarn add @travetto/image
9
13
  ```
10
14
 
11
15
  This module provides functionality for image resizing, and png optimization. This is primarily meant to be used in conjunction with other modules, like the [Asset](https://github.com/travetto/travetto/tree/main/module/asset#readme "Modular library for storing and retrieving binary assets") module or the [Email Templating](https://github.com/travetto/travetto/tree/main/module/email-template#readme "Email templating module") module. It can also be invoked directly as needed (as it can be very handy for batch processing images on the command line).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/image",
3
- "version": "3.0.0-rc.8",
3
+ "version": "3.0.0",
4
4
  "description": "Image support, resizing, and optimization",
5
5
  "keywords": [
6
6
  "images",
@@ -23,8 +23,8 @@
23
23
  "directory": "module/image"
24
24
  },
25
25
  "dependencies": {
26
- "@travetto/base": "^3.0.0-rc.8",
27
- "@travetto/command": "^3.0.0-rc.8"
26
+ "@travetto/base": "^3.0.0",
27
+ "@travetto/command": "^3.0.0"
28
28
  },
29
29
  "travetto": {
30
30
  "displayName": "Image"