soccer-jersey-fork 1.0.52 → 1.0.53

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.
@@ -254,6 +254,12 @@ export const drawShortsSideStriped = (page, primaryColor, secondaryColor) => {
254
254
  });
255
255
  };
256
256
  export function addShoulderStriped(page, color) {
257
- page.path(`m 17 10, l 18 -9`).stroke({ width: 2, color, linecap: "butt" });
258
- page.path(`m 83 9, l -18 -9`).stroke({ width: 2, color, linecap: "butt" });
257
+ page
258
+ .path(`m 0 34, l 16.5 -26, 18 -8`)
259
+ .fill("none")
260
+ .stroke({ width: 2, color, linecap: "butt" });
261
+ page
262
+ .path(`m 100 34 l -16.5 -26, -18 -8`)
263
+ .fill("none")
264
+ .stroke({ width: 2, color, linecap: "butt" });
259
265
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soccer-jersey-fork",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "description": "Generate soccer jerseys in SVG format",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {