@travetto/image 3.0.3 → 3.1.0-rc.1

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/package.json +3 -3
  2. package/src/convert.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/image",
3
- "version": "3.0.3",
3
+ "version": "3.1.0-rc.1",
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.3",
27
- "@travetto/command": "^3.0.3"
26
+ "@travetto/base": "^3.1.0-rc.0",
27
+ "@travetto/command": "^3.1.0-rc.1"
28
28
  },
29
29
  "travetto": {
30
30
  "displayName": "Image"
package/src/convert.ts CHANGED
@@ -34,7 +34,7 @@ export class ImageConverter {
34
34
  * Resize/conversion util
35
35
  */
36
36
  static CONVERTER = new CommandOperation({
37
- containerImage: ' jameskyburz/graphicsmagick-alpine:v1.0.0',
37
+ containerImage: 'jameskyburz/graphicsmagick-alpine:v1.0.0',
38
38
  localCheck: ['gm', ['-version']]
39
39
  });
40
40