diff --git a/packages/hugo/config/config.js b/packages/hugo/config/index.js similarity index 99% rename from packages/hugo/config/config.js rename to packages/hugo/config/index.js index c8b59b9b10e..3c8aea5c278 100644 --- a/packages/hugo/config/config.js +++ b/packages/hugo/config/index.js @@ -68,8 +68,6 @@ export default { sleevecapQ4Spread2: 0.05, sleeveWidthGuarantee: 1, - // Millimeter - // Percentages acrossBackFactor: { pct: 97, min: 93, max: 100 }, backNeckCutout: { pct: 5, min: 2, max: 8 }, diff --git a/packages/hugo/package-lock.json b/packages/hugo/package-lock.json index 22770a5f919..6513ff45c3c 100644 --- a/packages/hugo/package-lock.json +++ b/packages/hugo/package-lock.json @@ -917,12 +917,12 @@ "dev": true }, "@freesewing/brian": { - "version": "0.22.1", - "resolved": "https://registry.npmjs.org/@freesewing/brian/-/brian-0.22.1.tgz", - "integrity": "sha512-sud2S0mJExsqQT0raJeWnWSAHa4bSTYp9BHBivSuh5RjtgXMtFBnhOvZLBgAbulHeKt4P3UI8jSTLWZdRIWkzQ==", + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/@freesewing/brian/-/brian-0.22.2.tgz", + "integrity": "sha512-oJggWuWfZVOujpimxGFEr/LpLYGDYkEIxKj9lYdnR8oTWFpv0VTKinIeZF+FztULtIhAhWgvQR/9a2uR3BLHcw==", "requires": { - "@freesewing/plugin-bundle": "0.7.1", - "freesewing": "^0.26.1" + "@freesewing/plugin-bundle": "^0.7.1", + "freesewing": "^0.27" } }, "@freesewing/models": { @@ -2771,9 +2771,9 @@ } }, "freesewing": { - "version": "0.26.1", - "resolved": "https://registry.npmjs.org/freesewing/-/freesewing-0.26.1.tgz", - "integrity": "sha512-j6y7JuM+n3vyKwBPkEYOjpXc4QoU0cBcHDQTaWBi/YXITrIvi2zYcbTW6xwGnQcohBjNDb3feqZSgGhf4dB/xw==", + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/freesewing/-/freesewing-0.27.0.tgz", + "integrity": "sha512-oR7E0MteQ8D/oyq33i6RRlSErYc7t6hqWcAjtIDqv52qjxelLDVQjV0Q6mrd3dqaJmo+nOlyuWldsGUhLr0J1g==", "requires": { "bezier-js": "^2.2.15", "bin-pack": "1.0.2" diff --git a/packages/hugo/package.json b/packages/hugo/package.json index 71a76e9b2e9..544d4b15575 100644 --- a/packages/hugo/package.json +++ b/packages/hugo/package.json @@ -47,8 +47,8 @@ ] }, "dependencies": { - "freesewing": "^0.26.1", - "@freesewing/brian": "^0.22.1", + "freesewing": "^0.27", + "@freesewing/brian": "^0.22.2", "@freesewing/plugin-bundle": "^0.7.1" }, "devDependencies": { diff --git a/packages/hugo/src/index.js b/packages/hugo/src/index.js index 1df0c88d40d..b5387991597 100644 --- a/packages/hugo/src/index.js +++ b/packages/hugo/src/index.js @@ -1,7 +1,7 @@ import freesewing from "freesewing"; import Brian from "@freesewing/brian"; import plugins from "@freesewing/plugin-bundle"; -import config from "../config/config"; +import config from "../config"; // Parts import draftBack from "./back"; import draftFront from "./front";