diff --git a/sites/shared/components/workbench/exporting/index.mjs b/sites/shared/components/workbench/exporting/index.mjs
index 10267cf1cb6..2a8eec354fd 100644
--- a/sites/shared/components/workbench/exporting/index.mjs
+++ b/sites/shared/components/workbench/exporting/index.mjs
@@ -9,7 +9,7 @@ export const ExportDraft = ({ gist, design, app }) => {
const [error, setError] = useState(false)
const [format, setFormat] = useState(false)
- const { t } = useTranslation(['app', , 'plugin'])
+ const { t } = useTranslation(['app', 'plugin'])
const doExport = (format) => {
setLink(false)
setError(false)
diff --git a/sites/shared/components/workbench/layout/cut/index.mjs b/sites/shared/components/workbench/layout/cut/index.mjs
index 0fe476cb89c..a3ada1d56f2 100644
--- a/sites/shared/components/workbench/layout/cut/index.mjs
+++ b/sites/shared/components/workbench/layout/cut/index.mjs
@@ -5,7 +5,6 @@ import { fabricPlugin } from '../plugin-layout-part.mjs'
import { cutLayoutPlugin } from './plugin-cut-layout.mjs'
import { pluginCutlist } from '@freesewing/plugin-cutlist'
import { pluginFlip } from '@freesewing/plugin-flip'
-import { pluginI18n } from '@freesewing/plugin-i18n'
import { measurementAsMm } from 'shared/utils.mjs'
import { useEffect } from 'react'
import get from 'lodash.get'
@@ -23,7 +22,7 @@ const useFabricSettings = (gist) => {
return { activeFabric, sheetWidth, grainDirection, sheetHeight }
}
-const useFabricDraft = (gist, design, fabricSettings, t) => {
+const useFabricDraft = (gist, design, fabricSettings) => {
// get the appropriate layout for the view
const layout =
get(gist, ['layouts', gist._state.view, fabricSettings.activeFabric]) || gist.layout || true
@@ -44,8 +43,6 @@ const useFabricDraft = (gist, design, fabricSettings, t) => {
// also, pluginCutlist and pluginFlip are needed
draft.use(pluginCutlist)
draft.use(pluginFlip)
- // add translation
- // draft.use(pluginI18n, { t })
// draft the pattern
draft.draft()
@@ -80,7 +77,7 @@ export const CutLayout = (props) => {
})
const fabricSettings = useFabricSettings(gist)
- const { draft, patternProps } = useFabricDraft(gist, design, fabricSettings, t)
+ const { draft, patternProps } = useFabricDraft(gist, design, fabricSettings)
const fabricList = useFabricList(draft)
const setCutFabric = (newFabric) => {
diff --git a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
index 0e1c06c4f1e..4a8a7b503ff 100644
--- a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
+++ b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
@@ -1,52 +1,71 @@
const prefix = 'mirroredOnFold'
+// types of path operations
const opTypes = ['to', 'cp1', 'cp2']
-const getRotationAngle = (grainAngle, partGrain) => {
- let toRotate = Math.abs(grainAngle - partGrain)
- if (toRotate >= 180) toRotate -= 180
- return toRotate
-}
+
+/**
+ * The plugin to handle all business related to mirroring, rotating, and duplicating parts for the cutting layout
+ * @param {string} material the material to generate a cutting layout for
+ * @param {number} grainAngle the angle of the material's grain
+ * @return {Object} the plugin
+ */
export const cutLayoutPlugin = function (material, grainAngle) {
return {
hooks: {
+ // after each part
postPartDraft: (pattern) => {
+ // get the part that's just been drafted
const part = pattern.parts[pattern.activeSet][pattern.activePart]
+ // if it's a duplicated cut part, the fabric part, or it's hidden, leave it alone
if (pattern.activePart.startsWith('cut.') || pattern.activePart === 'fabric' || part.hidden)
return
+ // get this part's cutlist configuration
let partCutlist = pattern.setStores[pattern.activeSet].get(['cutlist', pattern.activePart])
+ // if there isn't one, we're done here
if (!partCutlist) return
+ // if the cutlist has materials but this isn't one of them
+ // or it has no materials but this isn't the main fabric
if (partCutlist.materials ? !partCutlist.materials[material] : material !== 'fabric') {
+ // hide the part because it shouldn't be shown on this fabric
part.hide()
return
}
- const handleFoldAndGrain = (macro, grainSpec, ignoreOnFold) => {
- if (!ignoreOnFold && partCutlist.cutOnFold)
- macro('mirrorOnFold', { fold: partCutlist.cutOnFold })
-
- if (grainSpec !== undefined) macro('rotateToGrain', { grainAngle, partGrain: grainSpec })
- }
-
+ // get the cutlist configuration for this material
const matCutConfig = partCutlist.materials?.[material]
+ // if there's specific instructions for this material
if (matCutConfig) {
- const activePart = pattern.config.parts[pattern.activePart]
+ // get the config of the active part to be inherited by all duplicates
+ const activePartConfig = pattern.config.parts[pattern.activePart]
- // hide the part so that all others can inherit from it and be manipulated separately
+ // hide the active part so that all others can inherit from it and be manipulated separately
part.hide()
+ // for each set of cutting instructions for this material
matCutConfig.forEach(({ cut, identical, bias, ignoreOnFold }, i) => {
+ // get the grain angle for the part for this set of instructions
const cGrain = partCutlist.grain ? partCutlist.grain + (bias ? 45 : 0) : undefined
+
+ // for each piece that should be cut
for (let c = 0; c < cut; c++) {
const dupPartName = `cut.${pattern.activePart}.${material}_${c + i + 1}`
+ // make a new part that will follow these cutting instructions
pattern.addPart({
name: dupPartName,
- from: activePart,
+ from: activePartConfig,
draft: ({ part, macro }) => {
- handleFoldAndGrain(macro, cGrain, ignoreOnFold)
+ // handle fold and grain for these cutting instructions
+ macro('handleFoldAndGrain', {
+ partCutlist,
+ grainSpec: cGrain,
+ ignoreOnFold,
+ bias,
+ })
+ // if they shouldn't be identical, flip every other piece
if (!identical && c % 2 === 1) macro('flip')
return part
@@ -54,39 +73,72 @@ export const cutLayoutPlugin = function (material, grainAngle) {
})
}
})
- } else {
+ }
+ // if there wasn't a specific configuration, still make sure to handle fold and grain
+ else {
const { macro } = part.shorthand()
- handleFoldAndGrain(partCutlist.grain)
+ macro('handleFoldAndGrain', { partCutlist, grainSpec: partCutlist.grain })
}
},
},
macros: {
- mirrorOnFold: ({ fold }, { paths, snippets, utils, macro, points }) => {
- const mirrorPaths = []
- for (const p in paths) {
- if (!paths[p].hidden && !p.startsWith(prefix)) mirrorPaths.push(paths[p])
+ // handle mirroring on the fold and rotating to sit along the grain or bias
+ handleFoldAndGrain: ({ partCutlist, grainSpec, ignoreOnFold, bias }, { points, macro }) => {
+ // if the part has cutonfold instructions
+ if (partCutlist.cutOnFold) {
+ // if we're not meant to igore those instructions, mirror on the fold
+ if (!ignoreOnFold) macro('mirrorOnFold', { fold: partCutlist.cutOnFold })
+ // if we are meant to ignore those instructions, but there's a grainline
+ else if (grainSpec !== undefined) {
+ // replace the cutonfold with a grainline
+ macro('grainline', { from: points.cutonfoldVia1, to: points.cutonfoldVia2 })
+ macro('cutonfold', false)
+ }
}
+ // if there's a grain angle, rotate the part to be along it
+ if (grainSpec !== undefined)
+ macro('rotateToGrain', { grainAngle, bias, partGrain: grainSpec })
+ },
+ // mirror the part across the line indicated by cutonfold
+ mirrorOnFold: ({ fold }, { paths, snippets, utils, macro, points }) => {
+ // get all the paths to mirror
+ const mirrorPaths = []
+ for (const p in paths) {
+ // skip ones that are hidden
+ if (!paths[p].hidden) mirrorPaths.push(paths[p])
+ }
+
+ // store all the points to mirror
const mirrorPoints = []
+ // store snippets by type so we can re-sprinkle later
const snippetsByType = {}
+ // for each snippet
for (var s in snippets) {
const snip = snippets[s]
+ // don't mirror these ones
if (['logo'].indexOf(snip.def) > -1) continue
+ // get or make an array for this type of snippet
snippetsByType[snip.def] = snippetsByType[snip.def] || []
+ // put the anchor on the list to mirror
mirrorPoints.push(snip.anchor)
+
+ // then we have to find the name of that point so we can apply the snippet to its mirror
for (var pName in points) {
if (points[pName] === snip.anchor) {
+ // add the name-to-be of the mirrored anchor to the list for resprinkling
snippetsByType[snip.def].push(prefix + utils.capitalize(pName))
break
}
}
}
+ // mirror
let unnamed = 0
macro('mirror', {
- paths: Object.values(mirrorPaths),
+ paths: mirrorPaths,
points: mirrorPoints,
mirror: fold,
prefix,
@@ -96,6 +148,7 @@ export const cutLayoutPlugin = function (material, grainAngle) {
},
})
+ // sprinkle the snippets
for (var def in snippetsByType) {
macro('sprinkle', {
snippet: def,
@@ -103,34 +156,63 @@ export const cutLayoutPlugin = function (material, grainAngle) {
})
}
},
- rotateToGrain: ({ partGrain, grainAngle }, { paths, snippets, Point, points }) => {
+ /**
+ * rotate the part so that it is oriented properly with regard to the fabric grain
+ * if the part should be on the bias, this rotates the part to lie on the bias
+ * while keeping the grainline annotation along the grain
+ */
+ rotateToGrain: ({ partGrain, grainAngle, bias }, { paths, snippets, Point, points }) => {
+ // if this part doesn't have a grain recorded, bail
if (partGrain === undefined) return
- const toRotate = getRotationAngle(grainAngle, partGrain)
+ // the amount to rotate is the difference between this part's grain angle (as drafted) and the fabric's grain angle
+ let toRotate = Math.abs(grainAngle - partGrain)
+ // don't over rotate
+ if (toRotate >= 180) toRotate -= 180
+ // if there's no difference, don't rotate
if (toRotate === 0) return
- const pivot = new Point(0, 0)
+ // we'll pivot rotations along the grainline to point, with a fallback
+ const pivot = points.grainlineTo || new Point(0, 0)
+ // go through all the paths
for (const pathName in paths) {
const path = paths[pathName]
+ // don't rotate hidden paths
if (paths[pathName].hidden) continue
+ // we want the grainline indicator to always go in the fabric grain direction
+ // so if this part is on the bias and this path is the grainline indicator
+ // we'll rotate it 45 degrees less than necessary
+ let thisRotation = toRotate
+ if (pathName === 'grainline' && bias) thisRotation -= 45
+
+ // replace all the points in all the ops of this path with ones that have been rotated
path.ops.forEach((op) => {
opTypes.forEach((t) => {
- if (op[t]) op[t] = op[t].rotate(toRotate, pivot)
+ if (op[t]) op[t] = op[t].rotate(thisRotation, pivot)
})
})
}
+ // replace all snippet anchors with ones that have been rotated
for (const snippetName in snippets) {
snippets[snippetName].anchor = snippets[snippetName].anchor.rotate(toRotate, pivot)
}
+ // go through all the points
for (const pointName in points) {
const point = points[pointName]
const pointAttrs = point.attributes
+ // if it has attributes, we want to rotate it
if (Object.keys(pointAttrs.list).length) {
points[pointName] = point.rotate(toRotate, pivot)
+
+ // title points need to be re-rotated around the top title point to avoid text collisions
+ if (pointName.match(/_(title|exportDate)(?!Nr)/))
+ points[pointName] = points[pointName].rotate(-toRotate, points.__titleNr)
+
+ // put the attributes back onto the new point
points[pointName].attributes = pointAttrs.clone()
}
}
From deb5bb8407d639a56a1f96fe40503b9ecbbef763 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Thu, 9 Mar 2023 17:56:29 -0600
Subject: [PATCH 0090/1524] lint fixes
---
plugins/plugin-bundle/src/index.mjs | 6 +++---
sites/shared/components/wrappers/workbench.mjs | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/plugin-bundle/src/index.mjs b/plugins/plugin-bundle/src/index.mjs
index d7466568b35..0a4f63ea1f2 100644
--- a/plugins/plugin-bundle/src/index.mjs
+++ b/plugins/plugin-bundle/src/index.mjs
@@ -57,9 +57,9 @@ function bundleStore(plugin) {
}
for (const plugin of bundledPlugins) {
- bundleHooks(plugin, hooks)
- bundleMacros(plugin, macros)
- bundleStore(plugin, store)
+ bundleHooks(plugin)
+ bundleMacros(plugin)
+ bundleStore(plugin)
}
export const plugin = {
diff --git a/sites/shared/components/wrappers/workbench.mjs b/sites/shared/components/wrappers/workbench.mjs
index c66fb9ae818..bb1f9f8b54a 100644
--- a/sites/shared/components/wrappers/workbench.mjs
+++ b/sites/shared/components/wrappers/workbench.mjs
@@ -4,7 +4,7 @@ import { useGist } from 'shared/hooks/useGist'
import { useTranslation } from 'next-i18next'
// Dependencies
import { pluginTheme } from '@freesewing/plugin-theme'
-import { pluginI18n } from '@freeSewing/plugin-i18n'
+import { pluginI18n } from '@freesewing/plugin-i18n'
import { preloaders } from 'shared/components/workbench/preloaders.mjs'
// Components
import { WorkbenchMenu } from 'shared/components/workbench/menu/index.mjs'
From 6ca62fb986aded2eb8cf931ee5e40ec777c0e24b Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Thu, 9 Mar 2023 18:20:43 -0600
Subject: [PATCH 0091/1524] don't mirror certain macro paths
---
.../components/workbench/layout/cut/plugin-cut-layout.mjs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
index 4a8a7b503ff..686f56dacc7 100644
--- a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
+++ b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
@@ -106,7 +106,8 @@ export const cutLayoutPlugin = function (material, grainAngle) {
const mirrorPaths = []
for (const p in paths) {
// skip ones that are hidden
- if (!paths[p].hidden) mirrorPaths.push(paths[p])
+ if (!paths[p].hidden && !p.match(/^(cutonfold|grainline|__scalebox|__miniscale)/))
+ mirrorPaths.push(paths[p])
}
// store all the points to mirror
From 2930e130d040c21a923c8f5d3ead9b73303e6cc4 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 10 Mar 2023 05:01:20 +0000
Subject: [PATCH 0092/1524] chore(deps): bump execa from 6.1.0 to 7.0.0
Bumps [execa](https://github.com/sindresorhus/execa) from 6.1.0 to 7.0.0.
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](https://github.com/sindresorhus/execa/compare/v6.1.0...v7.0.0)
---
updated-dependencies:
- dependency-name: execa
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot]
---
packages/new-design/package.json | 2 +-
yarn.lock | 30 +++++++++++++++++++++++++-----
2 files changed, 26 insertions(+), 6 deletions(-)
diff --git a/packages/new-design/package.json b/packages/new-design/package.json
index ef311a798e1..50a47930d5f 100644
--- a/packages/new-design/package.json
+++ b/packages/new-design/package.json
@@ -34,7 +34,7 @@
"dependencies": {
"axios": "1.3.3",
"chalk": "5.0.1",
- "execa": "6.1.0",
+ "execa": "7.0.0",
"mustache": "4.2.0",
"ora": "6.1.0",
"prompts": "2.4.2",
diff --git a/yarn.lock b/yarn.lock
index ee7a51b74f1..748be12bae2 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -8626,14 +8626,14 @@ execa@5.0.0:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
-execa@6.1.0, execa@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20"
- integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==
+execa@7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-7.0.0.tgz#2a44e20e73797f6c2df23889927972386157d7e4"
+ integrity sha512-tQbH0pH/8LHTnwTrsKWideqi6rFB/QNUawEwrn+WHyz7PX1Tuz2u7wfTvbaNBdP5JD5LVWxNo8/A8CHNZ3bV6g==
dependencies:
cross-spawn "^7.0.3"
get-stream "^6.0.1"
- human-signals "^3.0.1"
+ human-signals "^4.3.0"
is-stream "^3.0.0"
merge-stream "^2.0.0"
npm-run-path "^5.1.0"
@@ -8686,6 +8686,21 @@ execa@^5.0.0:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
+execa@^6.1.0:
+ version "6.1.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20"
+ integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==
+ dependencies:
+ cross-spawn "^7.0.3"
+ get-stream "^6.0.1"
+ human-signals "^3.0.1"
+ is-stream "^3.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^5.1.0"
+ onetime "^6.0.0"
+ signal-exit "^3.0.7"
+ strip-final-newline "^3.0.0"
+
exif-component@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/exif-component/-/exif-component-1.0.1.tgz#90cd5927ea49e9e5dd877731c0360322e3fbe62b"
@@ -10380,6 +10395,11 @@ human-signals@^3.0.1:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5"
integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==
+human-signals@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.0.tgz#2095c3cd5afae40049403d4b811235b03879db50"
+ integrity sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ==
+
humanize-list@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/humanize-list/-/humanize-list-1.0.1.tgz#e7e719c60a5d5848e8e0a5ed5f0a885496c239fd"
From 0709b4b5056f0a0a50442ef69656bcd57aed784b Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 10 Mar 2023 05:04:49 +0000
Subject: [PATCH 0093/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/execa-7.0.0 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index b50c3d2a372..24928512bd8 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -101,7 +101,7 @@ new-design:
_:
'axios': '1.3.3'
'chalk': '5.0.1'
- 'execa': '6.1.0'
+ 'execa': '7.0.0'
'mustache': '4.2.0'
'ora': '6.1.0'
'prompts': '2.4.2'
From 0bc696aee3cd64684110fba3ba303a86be5b5fe8 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 10 Mar 2023 05:18:29 +0000
Subject: [PATCH 0094/1524] chore(deps): bump axios from 1.3.3 to 1.3.4
Bumps [axios](https://github.com/axios/axios) from 1.3.3 to 1.3.4.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](https://github.com/axios/axios/compare/v1.3.3...v1.3.4)
---
updated-dependencies:
- dependency-name: axios
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
packages/new-design/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/packages/new-design/package.json b/packages/new-design/package.json
index ef311a798e1..ac788dc631e 100644
--- a/packages/new-design/package.json
+++ b/packages/new-design/package.json
@@ -32,7 +32,7 @@
},
"peerDependencies": {},
"dependencies": {
- "axios": "1.3.3",
+ "axios": "1.3.4",
"chalk": "5.0.1",
"execa": "6.1.0",
"mustache": "4.2.0",
diff --git a/yarn.lock b/yarn.lock
index ee7a51b74f1..a2962e6873e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5447,10 +5447,10 @@ axios@0.21.4:
dependencies:
follow-redirects "^1.14.0"
-axios@1.3.3, axios@^1.0.0, axios@^1.1.2:
- version "1.3.3"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.3.tgz#e7011384ba839b885007c9c9fae1ff23dceb295b"
- integrity sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==
+axios@1.3.4, axios@^1.0.0, axios@^1.1.2:
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.4.tgz#f5760cefd9cfb51fd2481acf88c05f67c4523024"
+ integrity sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==
dependencies:
follow-redirects "^1.15.0"
form-data "^4.0.0"
From 7371641767394ec8a421586e24fc70021d6750b5 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 10 Mar 2023 05:21:20 +0000
Subject: [PATCH 0095/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/axios-1.3.4 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index b50c3d2a372..501e8a2fcc9 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -99,7 +99,7 @@ jaeger:
'@freesewing/plugin-mirror': *freesewing
new-design:
_:
- 'axios': '1.3.3'
+ 'axios': '1.3.4'
'chalk': '5.0.1'
'execa': '6.1.0'
'mustache': '4.2.0'
From 42501e8e1a4e163fedcc302f25995deb874c1fc1 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 10 Mar 2023 05:24:42 +0000
Subject: [PATCH 0096/1524] chore(deps): bump next from 13.2.3 to 13.2.4
Bumps [next](https://github.com/vercel/next.js) from 13.2.3 to 13.2.4.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/compare/v13.2.3...v13.2.4)
---
updated-dependencies:
- dependency-name: next
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/dev/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
yarn.lock | 148 ++++++++++++++++++++---------------------
4 files changed, 77 insertions(+), 77 deletions(-)
diff --git a/sites/dev/package.json b/sites/dev/package.json
index 913c03cbe74..c134a0410d9 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -36,7 +36,7 @@
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
- "next": "13.2.3",
+ "next": "13.2.4",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 163ca71c8b3..7ec453dbdf8 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -40,7 +40,7 @@
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
- "next": "13.2.3",
+ "next": "13.2.4",
"next-i18next": "13.1.4",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
diff --git a/sites/org/package.json b/sites/org/package.json
index 88b6f61d602..a4b0d363abd 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -40,7 +40,7 @@
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
"luxon": "3.3.0",
- "next": "13.2.3",
+ "next": "13.2.4",
"react-dropzone": "14.2.3",
"react-hotkeys-hook": "4.3.2",
"react-instantsearch-dom": "6.39.0",
diff --git a/yarn.lock b/yarn.lock
index ee7a51b74f1..c518e7f5e6b 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3098,10 +3098,10 @@
dependencies:
webpack-bundle-analyzer "4.7.0"
-"@next/env@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/env/-/env-13.2.3.tgz#77ca49edb3c1d7c5263bb8f2ebe686080e98279e"
- integrity sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==
+"@next/env@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/env/-/env-13.2.4.tgz#8b763700262b2445140a44a8c8d088cef676dbae"
+ integrity sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==
"@next/eslint-plugin-next@13.2.3":
version "13.2.3"
@@ -3110,70 +3110,70 @@
dependencies:
glob "7.1.7"
-"@next/swc-android-arm-eabi@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz#85eed560c87c7996558c868a117be9780778f192"
- integrity sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==
+"@next/swc-android-arm-eabi@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.4.tgz#758d0403771e549f9cee71cbabc0cb16a6c947c0"
+ integrity sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==
-"@next/swc-android-arm64@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz#8ac54ca9795a48afc4631b4823a4864bd5db0129"
- integrity sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==
+"@next/swc-android-arm64@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.2.4.tgz#834d586523045110d5602e0c8aae9028835ac427"
+ integrity sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==
-"@next/swc-darwin-arm64@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz#f674e3c65aec505b6d218a662ade3fe248ccdbda"
- integrity sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==
+"@next/swc-darwin-arm64@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.4.tgz#5006fca179a36ef3a24d293abadec7438dbb48c6"
+ integrity sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==
-"@next/swc-darwin-x64@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz#a15ea7fb4c46034a8f5e387906d0cad08387075a"
- integrity sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==
+"@next/swc-darwin-x64@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.4.tgz#6549c7c04322766acc3264ccdb3e1b43fcaf7946"
+ integrity sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==
-"@next/swc-freebsd-x64@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz#f7ac6ae4f7d706ff2431f33e40230a554c8c2cbc"
- integrity sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==
+"@next/swc-freebsd-x64@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.4.tgz#0bbe28979e3e868debc2cc06e45e186ce195b7f4"
+ integrity sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==
-"@next/swc-linux-arm-gnueabihf@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz#84ad9e9679d55542a23b590ad9f2e1e9b2df62f7"
- integrity sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==
+"@next/swc-linux-arm-gnueabihf@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.4.tgz#1d28d2203f5a7427d6e7119d7bcb5fc40959fb3e"
+ integrity sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==
-"@next/swc-linux-arm64-gnu@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz#56f9175bc632d647c60b9e8bedc0875edf92d8b7"
- integrity sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==
+"@next/swc-linux-arm64-gnu@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.4.tgz#eb26448190948cdf4c44b8f34110a3ecea32f1d0"
+ integrity sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==
-"@next/swc-linux-arm64-musl@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz#7d4cf00e8f1729a3de464da0624773f5d0d14888"
- integrity sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==
+"@next/swc-linux-arm64-musl@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.4.tgz#c4227c0acd94a420bb14924820710e6284d234d3"
+ integrity sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==
-"@next/swc-linux-x64-gnu@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz#17de404910c4ebf7a1d366b19334d7e27e126ab0"
- integrity sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==
+"@next/swc-linux-x64-gnu@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.4.tgz#6bcb540944ee9b0209b33bfc23b240c2044dfc3e"
+ integrity sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==
-"@next/swc-linux-x64-musl@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz#07cb7b7f3a3a98034e2533f82638a9b099ba4ab1"
- integrity sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==
+"@next/swc-linux-x64-musl@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.4.tgz#ce21e43251eaf09a09df39372b2c3e38028c30ff"
+ integrity sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==
-"@next/swc-win32-arm64-msvc@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz#b9ac98c954c71ec9de45d3497a8585096b873152"
- integrity sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==
+"@next/swc-win32-arm64-msvc@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.4.tgz#68220063d8e5e082f5465498675640dedb670ff1"
+ integrity sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==
-"@next/swc-win32-ia32-msvc@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz#5ec48653a48fd664e940c69c96bba698fdae92eb"
- integrity sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==
+"@next/swc-win32-ia32-msvc@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.4.tgz#7c120ab54a081be9566df310bed834f168252990"
+ integrity sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==
-"@next/swc-win32-x64-msvc@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz#cd432f280beb8d8de5b7cd2501e9f502e9f3dd72"
- integrity sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==
+"@next/swc-win32-x64-msvc@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.4.tgz#5abda92fe12b9829bf7951c4a221282c56041144"
+ integrity sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==
"@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1":
version "5.1.1-v1"
@@ -13762,30 +13762,30 @@ next-i18next@13.1.4:
hoist-non-react-statics "^3.3.2"
i18next-fs-backend "^2.1.0"
-next@13.2.3:
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/next/-/next-13.2.3.tgz#92d170e7aca421321f230ff80c35c4751035f42e"
- integrity sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==
+next@13.2.4:
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/next/-/next-13.2.4.tgz#2363330392b0f7da02ab41301f60857ffa7f67d6"
+ integrity sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==
dependencies:
- "@next/env" "13.2.3"
+ "@next/env" "13.2.4"
"@swc/helpers" "0.4.14"
caniuse-lite "^1.0.30001406"
postcss "8.4.14"
styled-jsx "5.1.1"
optionalDependencies:
- "@next/swc-android-arm-eabi" "13.2.3"
- "@next/swc-android-arm64" "13.2.3"
- "@next/swc-darwin-arm64" "13.2.3"
- "@next/swc-darwin-x64" "13.2.3"
- "@next/swc-freebsd-x64" "13.2.3"
- "@next/swc-linux-arm-gnueabihf" "13.2.3"
- "@next/swc-linux-arm64-gnu" "13.2.3"
- "@next/swc-linux-arm64-musl" "13.2.3"
- "@next/swc-linux-x64-gnu" "13.2.3"
- "@next/swc-linux-x64-musl" "13.2.3"
- "@next/swc-win32-arm64-msvc" "13.2.3"
- "@next/swc-win32-ia32-msvc" "13.2.3"
- "@next/swc-win32-x64-msvc" "13.2.3"
+ "@next/swc-android-arm-eabi" "13.2.4"
+ "@next/swc-android-arm64" "13.2.4"
+ "@next/swc-darwin-arm64" "13.2.4"
+ "@next/swc-darwin-x64" "13.2.4"
+ "@next/swc-freebsd-x64" "13.2.4"
+ "@next/swc-linux-arm-gnueabihf" "13.2.4"
+ "@next/swc-linux-arm64-gnu" "13.2.4"
+ "@next/swc-linux-arm64-musl" "13.2.4"
+ "@next/swc-linux-x64-gnu" "13.2.4"
+ "@next/swc-linux-x64-musl" "13.2.4"
+ "@next/swc-win32-arm64-msvc" "13.2.4"
+ "@next/swc-win32-ia32-msvc" "13.2.4"
+ "@next/swc-win32-x64-msvc" "13.2.4"
nise@^5.1.2:
version "5.1.4"
From 9e85aa26535cdb883b85dad73d0634dec1f6cbbe Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 10 Mar 2023 05:25:18 +0000
Subject: [PATCH 0097/1524] chore(deps-dev): bump @commitlint/cli from 17.4.3
to 17.4.4
Bumps [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) from 17.4.3 to 17.4.4.
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v17.4.4/@commitlint/cli)
---
updated-dependencies:
- dependency-name: "@commitlint/cli"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 138 +++++++++++++++++++++++++++---------------------------
1 file changed, 69 insertions(+), 69 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index ee7a51b74f1..f2c218422a0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2214,15 +2214,15 @@
w3c-keyname "^2.2.4"
"@commitlint/cli@^17.0.2":
- version "17.4.3"
- resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.4.3.tgz#49583a7946b4030e7e6d9caafac44307835fb05e"
- integrity sha512-IPTS7AZuBHgD0gl24El8HwuDM9zJN9JLa5KmZUQoFD1BQeGGdzAYJOnAr85CeJWpTDok0BGHDL0+4odnH0iTyA==
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/cli/-/cli-17.4.4.tgz#36df08bfa31dbb9a2b6b1d7187a31e578f001a06"
+ integrity sha512-HwKlD7CPVMVGTAeFZylVNy14Vm5POVY0WxPkZr7EXLC/os0LH/obs6z4HRvJtH/nHCMYBvUBQhGwnufKfTjd5g==
dependencies:
- "@commitlint/format" "^17.4.0"
- "@commitlint/lint" "^17.4.3"
- "@commitlint/load" "^17.4.2"
- "@commitlint/read" "^17.4.2"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/format" "^17.4.4"
+ "@commitlint/lint" "^17.4.4"
+ "@commitlint/load" "^17.4.4"
+ "@commitlint/read" "^17.4.4"
+ "@commitlint/types" "^17.4.4"
execa "^5.0.0"
lodash.isfunction "^3.0.9"
resolve-from "5.0.0"
@@ -2236,20 +2236,20 @@
dependencies:
conventional-changelog-conventionalcommits "^5.0.0"
-"@commitlint/config-validator@^17.4.0":
- version "17.4.0"
- resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.4.0.tgz#2cb229672a22476cf1f21bedbfcd788e5da5b54f"
- integrity sha512-Sa/+8KNpDXz4zT4bVbz2fpFjvgkPO6u2V2fP4TKgt6FjmOw2z3eEX859vtfeaTav/ukBw0/0jr+5ZTZp9zCBhA==
+"@commitlint/config-validator@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/config-validator/-/config-validator-17.4.4.tgz#d0742705719559a101d2ee49c0c514044af6d64d"
+ integrity sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg==
dependencies:
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
ajv "^8.11.0"
-"@commitlint/ensure@^17.4.0":
- version "17.4.0"
- resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-17.4.0.tgz#3de65768bfccb9956ec3a0ecd8a415421bf315e5"
- integrity sha512-7oAxt25je0jeQ/E0O/M8L3ADb1Cvweu/5lc/kYF8g/kXatI0wxGE5La52onnAUAWeWlsuvBNar15WcrmDmr5Mw==
+"@commitlint/ensure@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-17.4.4.tgz#a36e7719bdb9c2b86c8b8c2e852b463a7bfda5fa"
+ integrity sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g==
dependencies:
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
lodash.camelcase "^4.3.0"
lodash.kebabcase "^4.1.1"
lodash.snakecase "^4.1.1"
@@ -2261,41 +2261,41 @@
resolved "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz#4518e77958893d0a5835babe65bf87e2638f6939"
integrity sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==
-"@commitlint/format@^17.4.0":
- version "17.4.0"
- resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-17.4.0.tgz#1c80cf3a6274ff9b3d3c0dd150a97882d557aa0f"
- integrity sha512-Z2bWAU5+f1YZh9W76c84J8iLIWIvvm+mzqogTz0Nsc1x6EHW0Z2gI38g5HAjB0r0I3ZjR15IDEJKhsxyblcyhA==
+"@commitlint/format@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/format/-/format-17.4.4.tgz#0f6e1b4d7a301c7b1dfd4b6334edd97fc050b9f5"
+ integrity sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ==
dependencies:
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
chalk "^4.1.0"
-"@commitlint/is-ignored@^17.4.2":
- version "17.4.2"
- resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-17.4.2.tgz#2d40a34e071c3e595e485fafe8460457a7b7af9d"
- integrity sha512-1b2Y2qJ6n7bHG9K6h8S4lBGUl6kc7mMhJN9gy1SQfUZqe92ToDjUTtgNWb6LbzR1X8Cq4SEus4VU8Z/riEa94Q==
+"@commitlint/is-ignored@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-17.4.4.tgz#82e03f1abe2de2c0c8c162a250b8d466225e922b"
+ integrity sha512-Y3eo1SFJ2JQDik4rWkBC4tlRIxlXEFrRWxcyrzb1PUT2k3kZ/XGNuCDfk/u0bU2/yS0tOA/mTjFsV+C4qyACHw==
dependencies:
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
semver "7.3.8"
-"@commitlint/lint@^17.4.3":
- version "17.4.3"
- resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-17.4.3.tgz#20be03992b33edd26ba8d07e210c08173069371e"
- integrity sha512-GnPsqEYmXIB/MaBhRMzkiDJWyjuLrKad4xoxKO4N6Kc19iqjR4DPc/bl2dxeW9kUmtrAtefOzIEzJAevpA5y2w==
+"@commitlint/lint@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/lint/-/lint-17.4.4.tgz#0ecd70b44ec5f4823c2e00e0c4b04ebd41d42856"
+ integrity sha512-qgkCRRFjyhbMDWsti/5jRYVJkgYZj4r+ZmweZObnbYqPUl5UKLWMf9a/ZZisOI4JfiPmRktYRZ2JmqlSvg+ccw==
dependencies:
- "@commitlint/is-ignored" "^17.4.2"
- "@commitlint/parse" "^17.4.2"
- "@commitlint/rules" "^17.4.3"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/is-ignored" "^17.4.4"
+ "@commitlint/parse" "^17.4.4"
+ "@commitlint/rules" "^17.4.4"
+ "@commitlint/types" "^17.4.4"
-"@commitlint/load@^17.4.2":
- version "17.4.2"
- resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.4.2.tgz#551875c3e1dce6dc0375dc9c8ad551de8ba35de4"
- integrity sha512-Si++F85rJ9t4hw6JcOw1i2h0fdpdFQt0YKwjuK4bk9KhFjyFkRxvR3SB2dPaMs+EwWlDrDBGL+ygip1QD6gmPw==
+"@commitlint/load@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/load/-/load-17.4.4.tgz#13fcb553572f265339801cde6dd10ee5eea07f5e"
+ integrity sha512-z6uFIQ7wfKX5FGBe1AkOF4l/ShOQsaa1ml/nLMkbW7R/xF8galGS7Zh0yHvzVp/srtfS0brC+0bUfQfmpMPFVQ==
dependencies:
- "@commitlint/config-validator" "^17.4.0"
+ "@commitlint/config-validator" "^17.4.4"
"@commitlint/execute-rule" "^17.4.0"
- "@commitlint/resolve-extends" "^17.4.0"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/resolve-extends" "^17.4.4"
+ "@commitlint/types" "^17.4.4"
"@types/node" "*"
chalk "^4.1.0"
cosmiconfig "^8.0.0"
@@ -2312,47 +2312,47 @@
resolved "https://registry.yarnpkg.com/@commitlint/message/-/message-17.4.2.tgz#f4753a79701ad6db6db21f69076e34de6580e22c"
integrity sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==
-"@commitlint/parse@^17.4.2":
- version "17.4.2"
- resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-17.4.2.tgz#b0f8a257a1f93387a497408b0b4cadba60ee3359"
- integrity sha512-DK4EwqhxfXpyCA+UH8TBRIAXAfmmX4q9QRBz/2h9F9sI91yt6mltTrL6TKURMcjUVmgaB80wgS9QybNIyVBIJA==
+"@commitlint/parse@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/parse/-/parse-17.4.4.tgz#8311b12f2b730de6ea0679ae2a37b386bcc5b04b"
+ integrity sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg==
dependencies:
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
conventional-changelog-angular "^5.0.11"
conventional-commits-parser "^3.2.2"
-"@commitlint/read@^17.4.2":
- version "17.4.2"
- resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-17.4.2.tgz#4880a05271fb44cefa54d365a17d5753496a6de0"
- integrity sha512-hasYOdbhEg+W4hi0InmXHxtD/1favB4WdwyFxs1eOy/DvMw6+2IZBmATgGOlqhahsypk4kChhxjAFJAZ2F+JBg==
+"@commitlint/read@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/read/-/read-17.4.4.tgz#de6ec00aad827764153009aa54517e3df2154555"
+ integrity sha512-B2TvUMJKK+Svzs6eji23WXsRJ8PAD+orI44lVuVNsm5zmI7O8RSGJMvdEZEikiA4Vohfb+HevaPoWZ7PiFZ3zA==
dependencies:
"@commitlint/top-level" "^17.4.0"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
fs-extra "^11.0.0"
git-raw-commits "^2.0.0"
minimist "^1.2.6"
-"@commitlint/resolve-extends@^17.4.0":
- version "17.4.0"
- resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.4.0.tgz#9023da6c70c4ebd173b4b0995fe29f27051da2d3"
- integrity sha512-3JsmwkrCzoK8sO22AzLBvNEvC1Pmdn/65RKXzEtQMy6oYMl0Snrq97a5bQQEFETF0VsvbtUuKttLqqgn99OXRQ==
+"@commitlint/resolve-extends@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-17.4.4.tgz#8f931467dea8c43b9fe38373e303f7c220de6fdc"
+ integrity sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A==
dependencies:
- "@commitlint/config-validator" "^17.4.0"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/config-validator" "^17.4.4"
+ "@commitlint/types" "^17.4.4"
import-fresh "^3.0.0"
lodash.mergewith "^4.6.2"
resolve-from "^5.0.0"
resolve-global "^1.0.0"
-"@commitlint/rules@^17.4.3":
- version "17.4.3"
- resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-17.4.3.tgz#e5e7bf472102447a283b7643ca7240d757a72bb7"
- integrity sha512-xHReDfE3Z+O9p1sXeEhPRSk4FifBsC4EbXzvQ4aa0ykQe+n/iZDd4CrFC/Oiv2K9BU4ZnFHak30IbMLa4ks1Rw==
+"@commitlint/rules@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/rules/-/rules-17.4.4.tgz#9b33f41e5eb529f916396bac7c62e61f0edd6791"
+ integrity sha512-0tgvXnHi/mVcyR8Y8mjTFZIa/FEQXA4uEutXS/imH2v1UNkYDSEMsK/68wiXRpfW1euSgEdwRkvE1z23+yhNrQ==
dependencies:
- "@commitlint/ensure" "^17.4.0"
+ "@commitlint/ensure" "^17.4.4"
"@commitlint/message" "^17.4.2"
"@commitlint/to-lines" "^17.4.0"
- "@commitlint/types" "^17.4.0"
+ "@commitlint/types" "^17.4.4"
execa "^5.0.0"
"@commitlint/to-lines@^17.4.0":
@@ -2367,10 +2367,10 @@
dependencies:
find-up "^5.0.0"
-"@commitlint/types@^17.4.0":
- version "17.4.0"
- resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-17.4.0.tgz#c7c2b97b959f6175c164632bf26208ce417b3f31"
- integrity sha512-2NjAnq5IcxY9kXtUeO2Ac0aPpvkuOmwbH/BxIm36XXK5LtWFObWJWjXOA+kcaABMrthjWu6la+FUpyYFMHRvbA==
+"@commitlint/types@^17.4.4":
+ version "17.4.4"
+ resolved "https://registry.yarnpkg.com/@commitlint/types/-/types-17.4.4.tgz#1416df936e9aad0d6a7bbc979ecc31e55dade662"
+ integrity sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ==
dependencies:
chalk "^4.1.0"
From 4541f5cc2c426705d363f9313f3068c8f99e4ae2 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 10 Mar 2023 05:27:41 +0000
Subject: [PATCH 0098/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/next-13.2.4 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
sites/dev/package.json | 4 ++--
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
yarn.lock | 32 +++++++++++++++++++++++++++-----
5 files changed, 32 insertions(+), 10 deletions(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index b50c3d2a372..52d12dfd532 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -238,7 +238,7 @@ dev:
'@mdx-js/mdx': *mdx
'@mdx-js/react': *mdx
'@mdx-js/runtime': &mdxRuntime '2.0.0-next.9'
- '@next/bundle-analyzer': &next '13.2.3'
+ '@next/bundle-analyzer': &next '13.2.4'
'@tailwindcss/typography': &tailwindTypography '0.5.9'
'algoliasearch': '4.15.0'
'daisyui': &daisyui '2.51.3'
diff --git a/sites/dev/package.json b/sites/dev/package.json
index c134a0410d9..8e930093375 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -29,7 +29,7 @@
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
"@mdx-js/runtime": "2.0.0-next.9",
- "@next/bundle-analyzer": "13.2.3",
+ "@next/bundle-analyzer": "13.2.4",
"@tailwindcss/typography": "0.5.9",
"algoliasearch": "4.15.0",
"daisyui": "2.51.3",
@@ -55,7 +55,7 @@
},
"devDependencies": {
"autoprefixer": "10.4.13",
- "eslint-config-next": "13.2.3",
+ "eslint-config-next": "13.2.4",
"js-yaml": "4.1.0",
"postcss": "8.4.21",
"remark-extract-frontmatter": "3.2.0",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 7ec453dbdf8..034e333975d 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -60,7 +60,7 @@
},
"devDependencies": {
"autoprefixer": "10.4.13",
- "eslint-config-next": "13.2.3",
+ "eslint-config-next": "13.2.4",
"js-yaml": "4.1.0",
"postcss": "8.4.21",
"remark-extract-frontmatter": "3.2.0",
diff --git a/sites/org/package.json b/sites/org/package.json
index a4b0d363abd..b6dd484e750 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -59,7 +59,7 @@
},
"devDependencies": {
"autoprefixer": "10.4.13",
- "eslint-config-next": "13.2.3",
+ "eslint-config-next": "13.2.4",
"js-yaml": "4.1.0",
"postcss": "8.4.21",
"remark-extract-frontmatter": "3.2.0",
diff --git a/yarn.lock b/yarn.lock
index c518e7f5e6b..a537f0339a0 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3091,10 +3091,10 @@
hey-listen "^1.0.8"
tslib "^2.3.1"
-"@next/bundle-analyzer@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-13.2.3.tgz#8a34f595f9d213b39fc68f5246f59d5043f8c6f4"
- integrity sha512-hPAT0ja6zHmEIrLYAWmdtpS07FCuUL8TxKP5ekzel+NoP4cNOykBS2Y265ciJwurpisd8Ux29g3QgeyBBSBnLA==
+"@next/bundle-analyzer@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-13.2.4.tgz#ad319bf566528f8afee34df07574fd97170b03f2"
+ integrity sha512-bY4Clt7f1roJextpeQOQQWfNiXI0O5UvfOEyfuM5YUGPQMOCAZD2zjLjolakdn9Dm2yyMQUQ6JDE+iJK0dIeLA==
dependencies:
webpack-bundle-analyzer "4.7.0"
@@ -3110,6 +3110,13 @@
dependencies:
glob "7.1.7"
+"@next/eslint-plugin-next@13.2.4":
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.4.tgz#3e124cd10ce24dab5d3448ce04104b4f1f4c6ca7"
+ integrity sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==
+ dependencies:
+ glob "7.1.7"
+
"@next/swc-android-arm-eabi@13.2.4":
version "13.2.4"
resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.4.tgz#758d0403771e549f9cee71cbabc0cb16a6c947c0"
@@ -8204,7 +8211,22 @@ escodegen@^2.0.0:
optionalDependencies:
source-map "~0.6.1"
-eslint-config-next@13.2.3, eslint-config-next@^13.0.6:
+eslint-config-next@13.2.4:
+ version "13.2.4"
+ resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.4.tgz#8aa4d42da3a575a814634ba9c88c8d25266c5fdd"
+ integrity sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==
+ dependencies:
+ "@next/eslint-plugin-next" "13.2.4"
+ "@rushstack/eslint-patch" "^1.1.3"
+ "@typescript-eslint/parser" "^5.42.0"
+ eslint-import-resolver-node "^0.3.6"
+ eslint-import-resolver-typescript "^3.5.2"
+ eslint-plugin-import "^2.26.0"
+ eslint-plugin-jsx-a11y "^6.5.1"
+ eslint-plugin-react "^7.31.7"
+ eslint-plugin-react-hooks "^4.5.0"
+
+eslint-config-next@^13.0.6:
version "13.2.3"
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.3.tgz#8a952bfd856f492684a30dd5fcdc8979c97c1cc2"
integrity sha512-kPulHiQEHGei9hIaaNGygHRc0UzlWM+3euOmYbxNkd2Nbhci5rrCDeMBMPSV8xgUssphDGmwDHWbk4VZz3rlZQ==
From 0d1d644cd3303e5d87292bdd7bc140b4a3453a9e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 10 Mar 2023 05:40:58 +0000
Subject: [PATCH 0099/1524] chore(deps-dev): bump @sanity/cli from 3.2.6 to
3.6.0
Bumps [@sanity/cli](https://github.com/sanity-io/sanity/tree/HEAD/packages/@sanity/cli) from 3.2.6 to 3.6.0.
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Commits](https://github.com/sanity-io/sanity/commits/v3.6.0/packages/@sanity/cli)
---
updated-dependencies:
- dependency-name: "@sanity/cli"
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/sanity/package.json | 2 +-
yarn.lock | 102 ++++++--------------------------------
2 files changed, 15 insertions(+), 89 deletions(-)
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index 0fe23795d37..bf6b4b78d31 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -33,7 +33,7 @@
"eslint": "8.34.0",
"prettier": "2.8.4",
"typescript": "4.9.5",
- "@sanity/cli": "3.2.6"
+ "@sanity/cli": "3.6.0"
},
"engines": {
"node": ">=16.0.0",
diff --git a/yarn.lock b/yarn.lock
index ee7a51b74f1..5c38e6c5443 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3786,22 +3786,22 @@
get-random-values-esm "^1.0.0"
lodash "^4.17.21"
-"@sanity/cli@3.2.6":
- version "3.2.6"
- resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.2.6.tgz#8aa30f50d8f3ee7ec09ed0558a43d7f621b08447"
- integrity sha512-TnTf55Cwh2mLjdEOxjU58suGdWIQWf9sy7JjVb/NwSuRvdqsg2eSBdQm3GYgRIpk27UK4ukN7Hn0ZA7l4Q4WbA==
+"@sanity/cli@3.5.1":
+ version "3.5.1"
+ resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.5.1.tgz#e32e918244958807c702c55174767fbce2d9dd9f"
+ integrity sha512-OIVW82qc+lipcofNHW0BDeA4cq9eKl8n8kTlCOHgDioZyVSRkpC7Khxcd0tA6hEW/nX2hzoTrYKK7eDd5Cb9IQ==
dependencies:
"@babel/traverse" "^7.19.0"
chalk "^4.1.2"
esbuild "^0.16.5"
esbuild-register "^3.4.1"
- get-it "^5.2.1"
+ get-it "^8.0.9"
pkg-dir "^5.0.0"
-"@sanity/cli@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.5.1.tgz#e32e918244958807c702c55174767fbce2d9dd9f"
- integrity sha512-OIVW82qc+lipcofNHW0BDeA4cq9eKl8n8kTlCOHgDioZyVSRkpC7Khxcd0tA6hEW/nX2hzoTrYKK7eDd5Cb9IQ==
+"@sanity/cli@3.6.0":
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.6.0.tgz#1267735c075756f2743a7d5a41a56e4c6faff553"
+ integrity sha512-s9R57PnnQ9GN8zY0ySBvZGnw8pt4yFfy0Cym3fn2TDyQnvBzmqTGVV/1FiFQYV/u3DyWfmxtv73JHK6xYLBORw==
dependencies:
"@babel/traverse" "^7.19.0"
chalk "^4.1.2"
@@ -3988,11 +3988,6 @@
scroll-into-view-if-needed "^2.2.20"
tiny-invariant "1.0.6"
-"@sanity/timed-out@^4.0.2":
- version "4.0.2"
- resolved "https://registry.npmjs.org/@sanity/timed-out/-/timed-out-4.0.2.tgz#c9f61f9a1609baa1eb3e4235a24ea2a775022cdf"
- integrity sha512-NBDKGj14g9Z+bopIvZcQKWCzJq5JSrdmzRR1CS+iyA3Gm8SnIWBfZa7I3mTg2X6Nu8LQXG0EPKXdOGozLS4i3w==
-
"@sanity/types@3.5.1":
version "3.5.1"
resolved "https://registry.yarnpkg.com/@sanity/types/-/types-3.5.1.tgz#625797574526f4d45141b3c6ccf9b3b968dc16eb"
@@ -5999,11 +5994,6 @@ caniuse-lite@^1.0.30001400, caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.300014
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001426.tgz#58da20446ccd0cb1dfebd11d2350c907ee7c2eaa"
integrity sha512-n7cosrHLl8AWt0wwZw/PJZgUg3lV0gk9LMI7ikGJwhyhgsd2Nb65vKvmSexCqq/J7rbH3mFG6yZZiPR5dLPW5A==
-capture-stack-trace@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d"
- integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==
-
cbor@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/cbor/-/cbor-8.1.0.tgz#cfc56437e770b73417a2ecbfc9caf6b771af60d5"
@@ -6964,13 +6954,6 @@ crc32-stream@^4.0.2:
crc-32 "^1.2.0"
readable-stream "^3.4.0"
-create-error-class@^3.0.2:
- version "3.0.2"
- resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6"
- integrity sha512-gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw==
- dependencies:
- capture-stack-trace "^1.0.0"
-
create-react-class@^15.6.0:
version "15.7.0"
resolved "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz#7499d7ca2e69bb51d13faf59bd04f0c65a1d6c1e"
@@ -7219,7 +7202,7 @@ debounce@1.0.0:
dependencies:
date-now "1.0.1"
-debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.6.8, debug@^2.6.9:
+debug@2, debug@2.6.9, debug@^2.2.0, debug@^2.6.9:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -9035,7 +9018,7 @@ focus-lock@^0.11.2:
dependencies:
tslib "^2.0.3"
-follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.15.0, follow-redirects@^1.15.2, follow-redirects@^1.2.4:
+follow-redirects@^1.0.0, follow-redirects@^1.14.0, follow-redirects@^1.15.0, follow-redirects@^1.15.2:
version "1.15.2"
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13"
integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
@@ -9088,11 +9071,6 @@ form-data@^4.0.0:
combined-stream "^1.0.8"
mime-types "^2.1.12"
-form-urlencoded@^2.0.7:
- version "2.0.9"
- resolved "https://registry.npmjs.org/form-urlencoded/-/form-urlencoded-2.0.9.tgz#ea07c5dbd9aa739275d53ec5c671ea069fe7d597"
- integrity sha512-fWUzNiOnYa126vFAT6TFXd1mhJrvD8IqmQ9ilZPjkLYQfaRreBr5fIUoOpPlWtqaAG64nzoE7u5zSetifab9IA==
-
format@^0.2.0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
@@ -9148,7 +9126,7 @@ fresh@0.5.2, fresh@^0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
-from2@^2.1.0, from2@^2.1.1, from2@^2.3.0:
+from2@^2.1.0, from2@^2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
integrity sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==
@@ -9302,30 +9280,6 @@ get-intrinsic@^1.1.3:
has "^1.0.3"
has-symbols "^1.0.3"
-get-it@^5.2.1:
- version "5.2.1"
- resolved "https://registry.npmjs.org/get-it/-/get-it-5.2.1.tgz#89cd98d73afd787aa4f2c89409f5893d17991e0c"
- integrity sha512-KDR5lTKmxKd/XyP3egZ8ieIdKLxKrQPKUFxk86MSoytGjxX4STigaFuwtFGmGx/lBPc1YSpi9wyuQJ5uP8WcRA==
- dependencies:
- "@sanity/timed-out" "^4.0.2"
- create-error-class "^3.0.2"
- debug "^2.6.8"
- decompress-response "^3.3.0"
- follow-redirects "^1.2.4"
- form-urlencoded "^2.0.7"
- into-stream "^3.1.0"
- is-plain-object "^2.0.4"
- is-retry-allowed "^1.1.0"
- is-stream "^1.1.0"
- nano-pubsub "^1.0.2"
- object-assign "^4.1.1"
- parse-headers "^2.0.1"
- progress-stream "^2.0.0"
- same-origin "^0.1.1"
- simple-concat "^1.0.0"
- tunnel-agent "^0.6.0"
- url-parse "^1.1.9"
-
get-it@^8, get-it@^8.0.9:
version "8.0.9"
resolved "https://registry.yarnpkg.com/get-it/-/get-it-8.0.9.tgz#e48c1c826e6c72074907efb08094215d92ad470c"
@@ -10670,14 +10624,6 @@ internal-slot@^1.0.3:
has "^1.0.3"
side-channel "^1.0.4"
-into-stream@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
- integrity sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==
- dependencies:
- from2 "^2.1.1"
- p-is-promise "^1.1.0"
-
into-stream@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-6.0.0.tgz#4bfc1244c0128224e18b8870e85b2de8e66c6702"
@@ -11101,11 +11047,6 @@ is-relative-url@^3.0.0:
dependencies:
is-absolute-url "^3.0.0"
-is-retry-allowed@^1.1.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
- integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
-
is-retry-allowed@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz#88f34cbd236e043e71b6932d09b0c65fb7b4d71d"
@@ -13694,11 +13635,6 @@ mz@^2.7.0:
object-assign "^4.0.1"
thenify-all "^1.0.0"
-nano-pubsub@^1.0.2:
- version "1.0.2"
- resolved "https://registry.npmjs.org/nano-pubsub/-/nano-pubsub-1.0.2.tgz#34ce776f7af959915b8f7acfe8dd6b9c66f3bde9"
- integrity sha512-HtPs1RbULM/z8wt3BbeeZlxVNiJbl+zQAwwrbc0KAq5NHaCG3MmffOVCpRhNTs+TK67MdN6aZ+5wzPtRZvME+w==
-
nano-pubsub@^2.0.1:
version "2.0.1"
resolved "https://registry.npmjs.org/nano-pubsub/-/nano-pubsub-2.0.1.tgz#59f3b7b6ed06868d879a10bdc9d082d9a27ee3ae"
@@ -14536,11 +14472,6 @@ p-finally@^2.0.0:
resolved "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz#bd6fcaa9c559a096b680806f4d657b3f0f240561"
integrity sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==
-p-is-promise@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
- integrity sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==
-
p-is-promise@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971"
@@ -14827,7 +14758,7 @@ parse-entities@^4.0.0:
is-decimal "^2.0.0"
is-hexadecimal "^2.0.0"
-parse-headers@^2.0.1, parse-headers@^2.0.5:
+parse-headers@^2.0.5:
version "2.0.5"
resolved "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz#069793f9356a54008571eb7f9761153e6c770da9"
integrity sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==
@@ -17429,11 +17360,6 @@ safe-stable-stringify@^2.3.1:
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-same-origin@^0.1.1:
- version "0.1.1"
- resolved "https://registry.npmjs.org/same-origin/-/same-origin-0.1.1.tgz#c2287d3192577df517acbbd6d1451a9c3c3914f5"
- integrity sha512-effkSW9cap879l6CVNdwL5iubVz8tkspqgfiqwgBgFQspV7152WHaLzr5590yR8oFgt7E1d4lO09uUhtAgUPoA==
-
sanity-diff-patch@^1.0.9:
version "1.0.9"
resolved "https://registry.npmjs.org/sanity-diff-patch/-/sanity-diff-patch-1.0.9.tgz#fb1fa3b52c27d369878af57ba02fee779b3ca8bd"
@@ -19657,7 +19583,7 @@ url-parse-lax@^3.0.0:
dependencies:
prepend-http "^2.0.0"
-url-parse@^1.1.9, url-parse@^1.5.3:
+url-parse@^1.5.3:
version "1.5.10"
resolved "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
From 2953389e8e21ced74c0b5a1953d706c68adcc1d7 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 10 Mar 2023 05:43:47 +0000
Subject: [PATCH 0100/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/sanity/cli-3.6.0 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index b50c3d2a372..a9f0c342084 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -361,7 +361,7 @@ sanity:
'eslint': *eslint
'prettier': '2.8.4'
'typescript': '4.9.5'
- '@sanity/cli': '3.2.6'
+ '@sanity/cli': '3.6.0'
shared:
_:
From ed8f9460510351b8c3812d74bbdeff3ebfe22702 Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Fri, 10 Mar 2023 18:56:56 +0100
Subject: [PATCH 0101/1524] New translations cutlist.yaml (French)
---
.../i18n/src/locales/fr/plugin/plugins/cutlist.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml
diff --git a/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml
new file mode 100644
index 00000000000..b35b0c444fe
--- /dev/null
+++ b/packages/i18n/src/locales/fr/plugin/plugins/cutlist.yaml
@@ -0,0 +1,13 @@
+canvas: Canvas
+cut: Cut
+fabric: Main Fabric
+heavyCanvas: Heavy Canvas
+interfacing: Interfacing
+lining: Lining
+lmhCanvas: Light to Medium Hair Canvas
+mirrored: mirrored
+onFoldLower: on the fold
+onFoldAndBias: folded on the bias
+onBias: on the bias
+plastic: Plastic
+ribbing: Ribbing
From 9cb18371903c08a4e1d4477fbc26e85ee3c02205 Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Fri, 10 Mar 2023 18:56:56 +0100
Subject: [PATCH 0102/1524] New translations cutlist.yaml (Spanish)
---
.../i18n/src/locales/es/plugin/plugins/cutlist.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml
diff --git a/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml
new file mode 100644
index 00000000000..b35b0c444fe
--- /dev/null
+++ b/packages/i18n/src/locales/es/plugin/plugins/cutlist.yaml
@@ -0,0 +1,13 @@
+canvas: Canvas
+cut: Cut
+fabric: Main Fabric
+heavyCanvas: Heavy Canvas
+interfacing: Interfacing
+lining: Lining
+lmhCanvas: Light to Medium Hair Canvas
+mirrored: mirrored
+onFoldLower: on the fold
+onFoldAndBias: folded on the bias
+onBias: on the bias
+plastic: Plastic
+ribbing: Ribbing
From 469458a63098ab72cc86e712886625fa87da48dc Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Fri, 10 Mar 2023 18:56:57 +0100
Subject: [PATCH 0103/1524] New translations cutlist.yaml (German)
---
.../i18n/src/locales/de/plugin/plugins/cutlist.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml
diff --git a/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml
new file mode 100644
index 00000000000..b35b0c444fe
--- /dev/null
+++ b/packages/i18n/src/locales/de/plugin/plugins/cutlist.yaml
@@ -0,0 +1,13 @@
+canvas: Canvas
+cut: Cut
+fabric: Main Fabric
+heavyCanvas: Heavy Canvas
+interfacing: Interfacing
+lining: Lining
+lmhCanvas: Light to Medium Hair Canvas
+mirrored: mirrored
+onFoldLower: on the fold
+onFoldAndBias: folded on the bias
+onBias: on the bias
+plastic: Plastic
+ribbing: Ribbing
From 8bddfc2091ebf6232e45d9e517ae269e73a250aa Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Fri, 10 Mar 2023 18:56:58 +0100
Subject: [PATCH 0104/1524] New translations cutlist.yaml (Dutch)
---
.../i18n/src/locales/nl/plugin/plugins/cutlist.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml
diff --git a/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml
new file mode 100644
index 00000000000..b35b0c444fe
--- /dev/null
+++ b/packages/i18n/src/locales/nl/plugin/plugins/cutlist.yaml
@@ -0,0 +1,13 @@
+canvas: Canvas
+cut: Cut
+fabric: Main Fabric
+heavyCanvas: Heavy Canvas
+interfacing: Interfacing
+lining: Lining
+lmhCanvas: Light to Medium Hair Canvas
+mirrored: mirrored
+onFoldLower: on the fold
+onFoldAndBias: folded on the bias
+onBias: on the bias
+plastic: Plastic
+ribbing: Ribbing
From 9a238dafb27a8ef39811657d9511963f350b85aa Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Fri, 10 Mar 2023 18:56:59 +0100
Subject: [PATCH 0105/1524] New translations cutlist.yaml (Ukrainian)
---
.../i18n/src/locales/uk/plugin/plugins/cutlist.yaml | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml
diff --git a/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml b/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml
new file mode 100644
index 00000000000..b35b0c444fe
--- /dev/null
+++ b/packages/i18n/src/locales/uk/plugin/plugins/cutlist.yaml
@@ -0,0 +1,13 @@
+canvas: Canvas
+cut: Cut
+fabric: Main Fabric
+heavyCanvas: Heavy Canvas
+interfacing: Interfacing
+lining: Lining
+lmhCanvas: Light to Medium Hair Canvas
+mirrored: mirrored
+onFoldLower: on the fold
+onFoldAndBias: folded on the bias
+onBias: on the bias
+plastic: Plastic
+ribbing: Ribbing
From 49748a7c003e19f28deb8429e7308d57bf8dd9c9 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 09:19:50 -0500
Subject: [PATCH 0106/1524] store methods don't become properties on shorthand
---
designs/bella/src/back.mjs | 3 +--
designs/carlita/src/front.mjs | 7 +++----
designs/carlita/src/side.mjs | 7 +++----
designs/carlton/src/back.mjs | 13 ++++++++++---
designs/carlton/src/belt.mjs | 3 +--
designs/carlton/src/chestpocketbag.mjs | 3 +--
designs/carlton/src/chestpocketwelt.mjs | 7 ++++---
designs/carlton/src/collar.mjs | 10 ++++++----
designs/carlton/src/collarstand.mjs | 7 ++++---
designs/carlton/src/cufffacing.mjs | 7 ++++---
designs/carlton/src/front.mjs | 3 +--
designs/carlton/src/innerpocketbag.mjs | 3 +--
designs/carlton/src/innerpockettab.mjs | 3 +--
designs/carlton/src/innerpocketwelt.mjs | 7 ++++---
designs/carlton/src/pocket.mjs | 3 +--
designs/carlton/src/pocketflap.mjs | 7 ++++---
designs/carlton/src/pocketlining.mjs | 3 +--
designs/carlton/src/tail.mjs | 7 ++++---
designs/carlton/src/topsleeve.mjs | 12 +++++++++---
designs/carlton/src/undersleeve.mjs | 14 +++++++++++---
packages/core/src/part.mjs | 9 ---------
packages/core/src/pattern.mjs | 1 +
plugins/plugin-cutlist/src/index.mjs | 14 ++++++++------
plugins/plugin-cutonfold/src/index.mjs | 12 ++++++------
plugins/plugin-grainline/src/index.mjs | 10 ++++++----
25 files changed, 95 insertions(+), 80 deletions(-)
diff --git a/designs/bella/src/back.mjs b/designs/bella/src/back.mjs
index 9d4565bf127..ae112ec74dc 100644
--- a/designs/bella/src/back.mjs
+++ b/designs/bella/src/back.mjs
@@ -65,7 +65,6 @@ export const back = {
measurements,
log,
part,
- addCut,
}) => {
// Get to work
points.cbNeck = new Point(0, measurements.neck * options.backNeckCutout)
@@ -270,7 +269,7 @@ export const back = {
on: ['armholePitch', 'bustCenter'],
})
- addCut()
+ if (typeof store.addCut === 'function') store.addCut()
if (sa) paths.sa = paths.saBase.offset(sa).attr('class', 'fabric sa')
diff --git a/designs/carlita/src/front.mjs b/designs/carlita/src/front.mjs
index 8d9ca2c66a8..a7b9e0c506f 100644
--- a/designs/carlita/src/front.mjs
+++ b/designs/carlita/src/front.mjs
@@ -18,7 +18,6 @@ function draftCarlitaFront({
paths,
Path,
part,
- addCut,
}) {
/**
* we're adding half of the proportionate amount of chest east for the bust span
@@ -349,9 +348,9 @@ function draftCarlitaFront({
.attr('class', 'fabric help')
if (complete) {
- if (typeof addCut === 'function') {
- addCut()
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lining' })
}
snippets.button1Left = new Snippet('button', points.button1Left).attr('data-scale', 2)
snippets.button1Right = new Snippet('button', points.button1Right).attr('data-scale', 2)
diff --git a/designs/carlita/src/side.mjs b/designs/carlita/src/side.mjs
index 90187faab84..d60993a05af 100644
--- a/designs/carlita/src/side.mjs
+++ b/designs/carlita/src/side.mjs
@@ -13,7 +13,6 @@ function draftCarlitaSide({
paths,
Path,
part,
- addCut,
}) {
// Give points their original names
for (let i of store.get('side')) points[i] = points[i + 'Rot2'].clone()
@@ -39,9 +38,9 @@ function draftCarlitaSide({
paths.seam = paths.saBase.clone().line(points.hem).close().attr('class', 'fabric')
if (complete) {
- if (typeof addCut === 'function') {
- addCut()
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lining' })
}
points.title = points.bustPoint.shiftFractionTowards(points.waist, 0.5)
macro('title', {
diff --git a/designs/carlton/src/back.mjs b/designs/carlton/src/back.mjs
index 22c42e97f92..e5a62362ca3 100644
--- a/designs/carlton/src/back.mjs
+++ b/designs/carlton/src/back.mjs
@@ -18,7 +18,6 @@ function draftCarltonBack({
paths,
Path,
part,
- addCut,
}) {
calculateRatios(part)
// Belt width
@@ -98,10 +97,18 @@ function draftCarltonBack({
.line(points.bpStart)
.attr('class', 'dashed')
- addCut()
- addCut({ cut: 2, material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ cut: 2, material: 'lining' })
+ }
if (complete) {
+ macro('title', {
+ at: points.title,
+ nr: '2',
+ title: 'back',
+ })
+
macro('sprinkle', {
snippet: 'bnotch',
on: ['shoulder', 'bpTriangleTip'],
diff --git a/designs/carlton/src/belt.mjs b/designs/carlton/src/belt.mjs
index 00bf0b748fe..5ca8b04f9e6 100644
--- a/designs/carlton/src/belt.mjs
+++ b/designs/carlton/src/belt.mjs
@@ -13,7 +13,6 @@ function draftCarltonBelt({
paths,
Path,
part,
- addCut,
}) {
let length = 1.6 * (store.get('cbToDart') + store.get('dartToSide'))
let width = store.get('beltWidth')
@@ -50,7 +49,7 @@ function draftCarltonBelt({
.close()
.attr('class', 'fabric')
- addCut({ cut: 4 })
+ if (typeof store.addCut === 'function') store.addCut({ cut: 4 })
if (complete) {
snippets.button = new Snippet('button', points.button).attr('data-scale', 2)
points.title = new Point(points.bottomRight.x / 2, points.bottomRight.y / 2)
diff --git a/designs/carlton/src/chestpocketbag.mjs b/designs/carlton/src/chestpocketbag.mjs
index b13b943b7a1..a0e81b43f0c 100644
--- a/designs/carlton/src/chestpocketbag.mjs
+++ b/designs/carlton/src/chestpocketbag.mjs
@@ -12,7 +12,6 @@ function draftCarltonChestPocketBag({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(
@@ -44,7 +43,7 @@ function draftCarltonChestPocketBag({
.line(points.startRight)
.attr('class', 'lining dashed')
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/chestpocketwelt.mjs b/designs/carlton/src/chestpocketwelt.mjs
index ee5715b707b..1b7032065fd 100644
--- a/designs/carlton/src/chestpocketwelt.mjs
+++ b/designs/carlton/src/chestpocketwelt.mjs
@@ -11,7 +11,6 @@ function draftCarltonChestPocketWelt({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(store.get('chestPocketWidth') * 2, store.get('chestPocketHeight'))
@@ -31,8 +30,10 @@ function draftCarltonChestPocketWelt({
paths.fold = new Path().move(points.topMid).line(points.bottomMid).attr('class', 'dashed')
- addCut()
- addCut({ material: 'lmhCanvas' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lmhCanvas' })
+ }
if (complete) {
points.title = new Point(points.bottomRight.x / 4, points.bottomRight.y / 2)
diff --git a/designs/carlton/src/collar.mjs b/designs/carlton/src/collar.mjs
index 7f38719cb75..725f0f30a7c 100644
--- a/designs/carlton/src/collar.mjs
+++ b/designs/carlton/src/collar.mjs
@@ -16,7 +16,7 @@ function draftCarltonCollar({
paths,
Path,
part,
- addCut,
+ store,
}) {
// We're going to slash and spread this collar. Slashing first:
// Divide top in 5 parts
@@ -187,9 +187,11 @@ function draftCarltonCollar({
grainline: true,
})
- addCut({ cut: 1 })
- addCut({ cut: 1, bias: true })
- addCut({ cut: 2, material: 'lining', bias: true, ignoreOnFold: true })
+ if (typeof store.addCut === 'function') {
+ store.addCut({ cut: 1 })
+ store.addCut({ cut: 1, bias: true })
+ store.addCut({ cut: 2, material: 'lining', bias: true, ignoreOnFold: true })
+ }
points.title = points.standTopCp.clone()
macro('title', {
diff --git a/designs/carlton/src/collarstand.mjs b/designs/carlton/src/collarstand.mjs
index 01add0ef39f..9353c8b45d3 100644
--- a/designs/carlton/src/collarstand.mjs
+++ b/designs/carlton/src/collarstand.mjs
@@ -14,7 +14,6 @@ function draftCarltonCollarStand({
paths,
Path,
part,
- addCut,
}) {
let height = measurements.chest * options.collarHeight
let length = store.get('frontCollarLength') + store.get('backCollarLength')
@@ -46,8 +45,10 @@ function draftCarltonCollarStand({
.close()
.attr('class', 'fabric')
- addCut()
- addCut({ cut: 1, material: 'lmhCanvas' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ cut: 1, material: 'lmhCanvas' })
+ }
if (complete) {
points.title = points.bottomLeftCp.clone()
diff --git a/designs/carlton/src/cufffacing.mjs b/designs/carlton/src/cufffacing.mjs
index 04d625800fb..fbd375d02c8 100644
--- a/designs/carlton/src/cufffacing.mjs
+++ b/designs/carlton/src/cufffacing.mjs
@@ -12,7 +12,6 @@ function draftCarltonCuffFacing({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(
@@ -47,8 +46,10 @@ function draftCarltonCuffFacing({
.close()
.attr('class', 'fabric')
- addCut()
- addCut({ cut: 2, material: 'lmhCanvas' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ cut: 2, material: 'lmhCanvas' })
+ }
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/front.mjs b/designs/carlton/src/front.mjs
index 97700df2efc..2cf72b51d7e 100644
--- a/designs/carlton/src/front.mjs
+++ b/designs/carlton/src/front.mjs
@@ -19,7 +19,6 @@ function draftCarltonFront({
paths,
Path,
part,
- addCut,
}) {
calculateRatios(part)
@@ -301,7 +300,7 @@ function draftCarltonFront({
.close()
.attr('class', 'fabric help')
- addCut()
+ if (typeof store.addCut === 'function') store.addCut()
if (complete) {
snippets.button1Left = new Snippet('button', points.button1Left).attr('data-scale', 2)
diff --git a/designs/carlton/src/innerpocketbag.mjs b/designs/carlton/src/innerpocketbag.mjs
index b51971730c9..a8425695a93 100644
--- a/designs/carlton/src/innerpocketbag.mjs
+++ b/designs/carlton/src/innerpocketbag.mjs
@@ -13,7 +13,6 @@ function draftCarltonInnerPocketBag({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(
@@ -45,7 +44,7 @@ function draftCarltonInnerPocketBag({
.line(points.startRight)
.attr('class', 'lining dashed')
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/innerpockettab.mjs b/designs/carlton/src/innerpockettab.mjs
index d91da082578..05076ad7f60 100644
--- a/designs/carlton/src/innerpockettab.mjs
+++ b/designs/carlton/src/innerpockettab.mjs
@@ -11,7 +11,6 @@ function draftCarltonInnerPocketTab({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.topRight = new Point(store.get('innerPocketWidth') * 1.2, 0)
@@ -31,7 +30,7 @@ function draftCarltonInnerPocketTab({
paths.hint = new Path().move(points.top).line(points.bottom).attr('class', 'lining dashed')
- addCut({ cut: 1, material: 'lining' })
+ if (typeof store.addCut === 'function') store.addCut({ cut: 1, material: 'lining' })
if (complete) {
points.title = points.top.shiftFractionTowards(points.bottom, 0.5)
diff --git a/designs/carlton/src/innerpocketwelt.mjs b/designs/carlton/src/innerpocketwelt.mjs
index 436feb9b7a9..862306cbce7 100644
--- a/designs/carlton/src/innerpocketwelt.mjs
+++ b/designs/carlton/src/innerpocketwelt.mjs
@@ -11,7 +11,6 @@ function draftCarltonInnerPocketWelt({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(
@@ -50,8 +49,10 @@ function draftCarltonInnerPocketWelt({
.close()
.attr('class', 'lashed')
- addCut()
- addCut({ material: 'lmhCanvas' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lmhCanvas' })
+ }
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocket.mjs b/designs/carlton/src/pocket.mjs
index bf04daedabd..fc98cdde0eb 100644
--- a/designs/carlton/src/pocket.mjs
+++ b/designs/carlton/src/pocket.mjs
@@ -12,7 +12,6 @@ function draftCarltonPocket({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(store.get('pocketWidth'), store.get('pocketHeight'))
@@ -54,7 +53,7 @@ function draftCarltonPocket({
paths.fold = new Path().move(points.topLeft).line(points.topRight).attr('class', 'fabric dashed')
- addCut()
+ if (typeof store.addCut === 'function') store.addCut()
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocketflap.mjs b/designs/carlton/src/pocketflap.mjs
index f72bd4e1288..3f6cae40f28 100644
--- a/designs/carlton/src/pocketflap.mjs
+++ b/designs/carlton/src/pocketflap.mjs
@@ -12,7 +12,6 @@ function draftCarltonPocketFlap({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = new Point(0, 0)
points.bottomRight = new Point(store.get('pocketWidth'), store.get('pocketFlapHeight'))
@@ -46,8 +45,10 @@ function draftCarltonPocketFlap({
paths.seam = paths.seam.line(points.topRight).line(points.topLeft).close().attr('class', 'fabric')
- addCut({ cut: 4 })
- addCut({ material: 'lmhCanvas' })
+ if (typeof store.addCut === 'function') {
+ store.addCut({ cut: 4 })
+ store.addCut({ material: 'lmhCanvas' })
+ }
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocketlining.mjs b/designs/carlton/src/pocketlining.mjs
index 9091be47017..d3d05c5e4be 100644
--- a/designs/carlton/src/pocketlining.mjs
+++ b/designs/carlton/src/pocketlining.mjs
@@ -12,7 +12,6 @@ function draftCarltonPocketLining({
paths,
Path,
part,
- addCut,
}) {
points.topLeft = points.bottomLeft.shiftFractionTowards(points.topLeft, 0.75)
points.topRight = new Point(points.bottomRight.x, points.topLeft.y)
@@ -46,7 +45,7 @@ function draftCarltonPocketLining({
delete paths.fold
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/tail.mjs b/designs/carlton/src/tail.mjs
index c88d55de646..955c68a3388 100644
--- a/designs/carlton/src/tail.mjs
+++ b/designs/carlton/src/tail.mjs
@@ -13,7 +13,6 @@ function draftCarltonTail({
paths,
Path,
part,
- addCut,
}) {
let length = store.get('waistToHem') - store.get('beltWidth') / 2
@@ -69,8 +68,10 @@ function draftCarltonTail({
.line(points.fold5Bottom)
.attr('class', 'fabric dashed')
- addCut()
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lining' })
+ }
if (complete) {
points.title = points.fold4Top.shiftFractionTowards(points.waistBottom, 0.5)
diff --git a/designs/carlton/src/topsleeve.mjs b/designs/carlton/src/topsleeve.mjs
index 7af55e2f372..3f1c85e9382 100644
--- a/designs/carlton/src/topsleeve.mjs
+++ b/designs/carlton/src/topsleeve.mjs
@@ -16,7 +16,6 @@ function draftCarltonTopSleeve({
Snippet,
snippets,
part,
- addCut,
}) {
// Add cuff
let length = measurements.shoulderToWrist * options.cuffLength
@@ -55,10 +54,17 @@ function draftCarltonTopSleeve({
.close()
.attr('class', 'fabric')
- addCut()
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lining' })
+ }
if (complete) {
+ macro('title', {
+ at: points.armCenter,
+ nr: 3,
+ title: 'topsleeve',
+ })
macro('grainline', {
from: points.boxBottom,
to: points.top,
diff --git a/designs/carlton/src/undersleeve.mjs b/designs/carlton/src/undersleeve.mjs
index e16a298ba5f..b6e5dc0f48d 100644
--- a/designs/carlton/src/undersleeve.mjs
+++ b/designs/carlton/src/undersleeve.mjs
@@ -15,7 +15,6 @@ function draftCarltonUnderSleeve({
paths,
Path,
part,
- addCut,
}) {
// Add cuff
let length = measurements.shoulderToWrist * options.cuffLength
@@ -51,9 +50,18 @@ function draftCarltonUnderSleeve({
.close()
.attr('class', 'fabric')
- addCut()
- addCut({ material: 'lining' })
+ if (typeof store.addCut === 'function') {
+ store.addCut()
+ store.addCut({ material: 'lining' })
+ }
+
if (complete) {
+ macro('title', {
+ at: points.armCenter,
+ nr: 4,
+ title: 'undersleeve',
+ })
+
macro('grainline', {
from: points.boxBottom,
to: new Point(points.top.x, points.usLeftEdge.y),
diff --git a/packages/core/src/part.mjs b/packages/core/src/part.mjs
index ce4a393d2b2..6c1579c5985 100644
--- a/packages/core/src/part.mjs
+++ b/packages/core/src/part.mjs
@@ -135,15 +135,6 @@ Part.prototype.shorthand = function () {
utils: utils,
Bezier: Bezier,
}
- // Add top-level store methods and add a part name parameter
- const partName = this.name
- for (const [key, method] of Object.entries(this.context.store)) {
- if (typeof method === 'function')
- shorthand[key] = function (...args) {
- return method(partName, ...args)
- }
- }
-
// We'll need this
let self = this
diff --git a/packages/core/src/pattern.mjs b/packages/core/src/pattern.mjs
index 1e5d184a0c0..126d3997d65 100644
--- a/packages/core/src/pattern.mjs
+++ b/packages/core/src/pattern.mjs
@@ -160,6 +160,7 @@ Pattern.prototype.createPartForSet = function (partName, set = 0) {
Pattern.prototype.draftPartForSet = function (partName, set) {
if (typeof this.config.parts?.[partName]?.draft === 'function') {
this.activePart = partName
+ this.setStores[set].set('activePart', partName)
try {
this.__runHooks('prePartDraft')
const result = this.config.parts[partName].draft(this.parts[set][partName].shorthand())
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index 9ff14095d57..4a7bb41551f 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -19,7 +19,6 @@ export const pluginCutlist = plugin
/**
* Add a set of cutting instructions for the part
* @param {Store} store the Store
- * @param {string} partName the name of the part
* @param {Object} so a set of cutting instructions for a material
* @param {number} so.cut = 2 the number of pieces to cut from the specified fabric
* @param {string} so.material = fabric the name of the material to cut from
@@ -27,8 +26,9 @@ export const pluginCutlist = plugin
* @param {boolean} so.bias = false should the pieces in these cutting instructions be cut on the bias
* @param {boolean} so.ignoreOnFold should these cutting instructions ignore any cutOnFold information set by the part
*/
-function addCut(store, partName, so = {}) {
+function addCut(store, so = {}) {
const { cut = 2, material = 'fabric', identical = false, bias = false, ignoreOnFold = false } = so
+ const partName = store.get('activePart')
if (cut === false) {
if (material === false) store.unset(['cutlist', partName, 'materials'])
else store.unset(['cutlist', partName, 'materials', material])
@@ -50,12 +50,13 @@ function addCut(store, partName, so = {}) {
}
/** Method to remove the cut info */
-function removeCut(store, partName, material = false) {
- return addCut(store, partName, { cut: false, material })
+function removeCut(store, material = false) {
+ return addCut(store, { cut: false, material })
}
/** Method to add the grain info */
-function setGrain(store, partName, grain = false) {
+function setGrain(store, grain = false) {
+ const partName = store.get('activePart')
const path = ['cutlist', partName, 'grain']
if (grain === false) return store.unset(path)
if (typeof grain !== 'number') {
@@ -66,7 +67,8 @@ function setGrain(store, partName, grain = false) {
}
/** Method to add the cutOnFold info */
-function setCutOnFold(store, partName, p1, p2) {
+function setCutOnFold(store, p1, p2) {
+ const partName = store.get('activePart')
const path = ['cutlist', partName, 'cutOnFold']
if (p1 === false && typeof p2 === 'undefined') {
return store.unset(path)
diff --git a/plugins/plugin-cutonfold/src/index.mjs b/plugins/plugin-cutonfold/src/index.mjs
index b3d18b421d7..4766a6ae86b 100644
--- a/plugins/plugin-cutonfold/src/index.mjs
+++ b/plugins/plugin-cutonfold/src/index.mjs
@@ -18,7 +18,7 @@ export const plugin = {
},
},
macros: {
- cutonfold: function (so, { points, paths, Path, complete, setCutOnFold, setGrain, scale }) {
+ cutonfold: function (so, { points, paths, Path, complete, store, scale }) {
if (so === false) {
delete points.cutonfoldFrom
delete points.cutonfoldTo
@@ -26,8 +26,8 @@ export const plugin = {
delete points.cutonfoldVia2
delete paths.cutonfoldCutonfold
// setCutOnFold relies on plugin-cutlist
- if (typeof setCutOnFold === 'function') {
- setCutOnFold(false) // Restore default
+ if (typeof store.setCutOnFold === 'function') {
+ store.setCutOnFold(false) // Restore default
}
return true
}
@@ -37,9 +37,9 @@ export const plugin = {
prefix: 'cutonfold',
...so,
}
- if (typeof setCutOnFold === 'function') {
- setCutOnFold(so.from, so.to)
- if (so.grainline) setGrain(so.from.angle(so.to))
+ if (typeof store.setCutOnFold === 'function') {
+ store.setCutOnFold(so.from, so.to)
+ if (so.grainline) store.setGrain(so.from.angle(so.to))
}
if (complete) {
points[so.prefix + 'From'] = so.from.shiftFractionTowards(so.to, so.margin / 100)
diff --git a/plugins/plugin-grainline/src/index.mjs b/plugins/plugin-grainline/src/index.mjs
index eb56aebda63..a0c0c2ac87c 100644
--- a/plugins/plugin-grainline/src/index.mjs
+++ b/plugins/plugin-grainline/src/index.mjs
@@ -19,12 +19,14 @@ export const plugin = {
},
},
macros: {
- grainline: function (so = {}, { points, paths, Path, complete, setGrain }) {
+ grainline: function (so = {}, { points, paths, Path, complete, store }) {
if (so === false) {
delete points.grainlineFrom
delete points.grainlineTo
delete paths.grainline
- setGrain(90) // Restoring default
+ if (typeof store.setGrain === 'function') {
+ setGrain(false) // Restoring default
+ }
return true
}
so = {
@@ -32,8 +34,8 @@ export const plugin = {
...so,
}
// setGrain relies on plugin-cutlist
- if (typeof setGrain === 'function') {
- setGrain(so.from.angle(so.to))
+ if (typeof store.setGrain === 'function') {
+ store.setGrain(so.from.angle(so.to))
}
if (complete) {
points.grainlineFrom = so.from.shiftFractionTowards(so.to, 0.05)
From 1e95c9ef2c11985ab2a7f9389c6b7a1f6362deaa Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 11:29:37 -0500
Subject: [PATCH 0107/1524] store.cutlist
---
designs/bella/src/back.mjs | 4 ++--
designs/carlita/src/front.mjs | 7 +++----
designs/carlita/src/side.mjs | 7 +++----
designs/carlton/src/back.mjs | 6 ++----
designs/carlton/src/belt.mjs | 3 ++-
designs/carlton/src/chestpocketbag.mjs | 2 +-
designs/carlton/src/chestpocketwelt.mjs | 6 ++----
designs/carlton/src/collar.mjs | 10 ++++------
designs/carlton/src/collarstand.mjs | 6 ++----
designs/carlton/src/cufffacing.mjs | 6 ++----
designs/carlton/src/front.mjs | 2 +-
designs/carlton/src/innerpocketbag.mjs | 2 +-
designs/carlton/src/innerpockettab.mjs | 2 +-
designs/carlton/src/innerpocketwelt.mjs | 6 ++----
designs/carlton/src/pocket.mjs | 2 +-
designs/carlton/src/pocketflap.mjs | 6 ++----
designs/carlton/src/pocketlining.mjs | 2 +-
designs/carlton/src/tail.mjs | 6 ++----
designs/carlton/src/topsleeve.mjs | 6 ++----
designs/carlton/src/undersleeve.mjs | 6 ++----
plugins/plugin-cutlist/src/index.mjs | 8 ++++----
plugins/plugin-cutonfold/src/index.mjs | 6 +++---
plugins/plugin-grainline/src/index.mjs | 8 ++++----
23 files changed, 49 insertions(+), 70 deletions(-)
diff --git a/designs/bella/src/back.mjs b/designs/bella/src/back.mjs
index ae112ec74dc..d7b12b85e86 100644
--- a/designs/bella/src/back.mjs
+++ b/designs/bella/src/back.mjs
@@ -253,6 +253,8 @@ export const back = {
.close()
.hide()
+ store.cutlist.addCut()
+
if (complete) {
points.titleAnchor = new Point(points.hps.x, points.armholePitchCp2.y)
macro('title', {
@@ -269,8 +271,6 @@ export const back = {
on: ['armholePitch', 'bustCenter'],
})
- if (typeof store.addCut === 'function') store.addCut()
-
if (sa) paths.sa = paths.saBase.offset(sa).attr('class', 'fabric sa')
if (paperless) {
diff --git a/designs/carlita/src/front.mjs b/designs/carlita/src/front.mjs
index a7b9e0c506f..0466cec8a01 100644
--- a/designs/carlita/src/front.mjs
+++ b/designs/carlita/src/front.mjs
@@ -347,11 +347,10 @@ function draftCarlitaFront({
.close()
.attr('class', 'fabric help')
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
+
if (complete) {
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lining' })
- }
snippets.button1Left = new Snippet('button', points.button1Left).attr('data-scale', 2)
snippets.button1Right = new Snippet('button', points.button1Right).attr('data-scale', 2)
snippets.button2Left = new Snippet('button', points.button2Left).attr('data-scale', 2)
diff --git a/designs/carlita/src/side.mjs b/designs/carlita/src/side.mjs
index d60993a05af..692c3ee9e77 100644
--- a/designs/carlita/src/side.mjs
+++ b/designs/carlita/src/side.mjs
@@ -37,11 +37,10 @@ function draftCarlitaSide({
.line(points.psHem)
paths.seam = paths.saBase.clone().line(points.hem).close().attr('class', 'fabric')
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
+
if (complete) {
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lining' })
- }
points.title = points.bustPoint.shiftFractionTowards(points.waist, 0.5)
macro('title', {
at: points.title,
diff --git a/designs/carlton/src/back.mjs b/designs/carlton/src/back.mjs
index e5a62362ca3..26cc2926697 100644
--- a/designs/carlton/src/back.mjs
+++ b/designs/carlton/src/back.mjs
@@ -97,10 +97,8 @@ function draftCarltonBack({
.line(points.bpStart)
.attr('class', 'dashed')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ cut: 2, material: 'lining' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
macro('title', {
diff --git a/designs/carlton/src/belt.mjs b/designs/carlton/src/belt.mjs
index 5ca8b04f9e6..96cf0d57595 100644
--- a/designs/carlton/src/belt.mjs
+++ b/designs/carlton/src/belt.mjs
@@ -49,7 +49,8 @@ function draftCarltonBelt({
.close()
.attr('class', 'fabric')
- if (typeof store.addCut === 'function') store.addCut({ cut: 4 })
+ store.cutlist.addCut({ cut: 4 })
+
if (complete) {
snippets.button = new Snippet('button', points.button).attr('data-scale', 2)
points.title = new Point(points.bottomRight.x / 2, points.bottomRight.y / 2)
diff --git a/designs/carlton/src/chestpocketbag.mjs b/designs/carlton/src/chestpocketbag.mjs
index a0e81b43f0c..f8d92c19d0f 100644
--- a/designs/carlton/src/chestpocketbag.mjs
+++ b/designs/carlton/src/chestpocketbag.mjs
@@ -43,7 +43,7 @@ function draftCarltonChestPocketBag({
.line(points.startRight)
.attr('class', 'lining dashed')
- if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/chestpocketwelt.mjs b/designs/carlton/src/chestpocketwelt.mjs
index 1b7032065fd..aea43cfb66b 100644
--- a/designs/carlton/src/chestpocketwelt.mjs
+++ b/designs/carlton/src/chestpocketwelt.mjs
@@ -30,10 +30,8 @@ function draftCarltonChestPocketWelt({
paths.fold = new Path().move(points.topMid).line(points.bottomMid).attr('class', 'dashed')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lmhCanvas' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lmhCanvas' })
if (complete) {
points.title = new Point(points.bottomRight.x / 4, points.bottomRight.y / 2)
diff --git a/designs/carlton/src/collar.mjs b/designs/carlton/src/collar.mjs
index 725f0f30a7c..40fd95b1922 100644
--- a/designs/carlton/src/collar.mjs
+++ b/designs/carlton/src/collar.mjs
@@ -178,6 +178,10 @@ function draftCarltonCollar({
._curve(points.topLeftCp, points.topLeft)
paths.seam = paths.saBase.clone().line(points.standTop).close().attr('class', 'fabric')
+ store.cutlist.addCut({ cut: 1 })
+ store.cutlist.addCut({ cut: 1, bias: true })
+ store.cutlist.addCut({ cut: 2, material: 'lining', bias: true, ignoreOnFold: true })
+
if (complete) {
// Remove grainline from collarstand part
delete paths.grainline
@@ -187,12 +191,6 @@ function draftCarltonCollar({
grainline: true,
})
- if (typeof store.addCut === 'function') {
- store.addCut({ cut: 1 })
- store.addCut({ cut: 1, bias: true })
- store.addCut({ cut: 2, material: 'lining', bias: true, ignoreOnFold: true })
- }
-
points.title = points.standTopCp.clone()
macro('title', {
at: points.title,
diff --git a/designs/carlton/src/collarstand.mjs b/designs/carlton/src/collarstand.mjs
index 9353c8b45d3..3cbd32fc993 100644
--- a/designs/carlton/src/collarstand.mjs
+++ b/designs/carlton/src/collarstand.mjs
@@ -45,10 +45,8 @@ function draftCarltonCollarStand({
.close()
.attr('class', 'fabric')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ cut: 1, material: 'lmhCanvas' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ cut: 1, material: 'lmhCanvas' })
if (complete) {
points.title = points.bottomLeftCp.clone()
diff --git a/designs/carlton/src/cufffacing.mjs b/designs/carlton/src/cufffacing.mjs
index fbd375d02c8..cf57c74beb9 100644
--- a/designs/carlton/src/cufffacing.mjs
+++ b/designs/carlton/src/cufffacing.mjs
@@ -46,10 +46,8 @@ function draftCarltonCuffFacing({
.close()
.attr('class', 'fabric')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ cut: 2, material: 'lmhCanvas' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ cut: 2, material: 'lmhCanvas' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/front.mjs b/designs/carlton/src/front.mjs
index 2cf72b51d7e..2acfb84815f 100644
--- a/designs/carlton/src/front.mjs
+++ b/designs/carlton/src/front.mjs
@@ -300,7 +300,7 @@ function draftCarltonFront({
.close()
.attr('class', 'fabric help')
- if (typeof store.addCut === 'function') store.addCut()
+ store.cutlist.addCut()
if (complete) {
snippets.button1Left = new Snippet('button', points.button1Left).attr('data-scale', 2)
diff --git a/designs/carlton/src/innerpocketbag.mjs b/designs/carlton/src/innerpocketbag.mjs
index a8425695a93..5336db02657 100644
--- a/designs/carlton/src/innerpocketbag.mjs
+++ b/designs/carlton/src/innerpocketbag.mjs
@@ -44,7 +44,7 @@ function draftCarltonInnerPocketBag({
.line(points.startRight)
.attr('class', 'lining dashed')
- if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/innerpockettab.mjs b/designs/carlton/src/innerpockettab.mjs
index 05076ad7f60..b2af9f815f1 100644
--- a/designs/carlton/src/innerpockettab.mjs
+++ b/designs/carlton/src/innerpockettab.mjs
@@ -30,7 +30,7 @@ function draftCarltonInnerPocketTab({
paths.hint = new Path().move(points.top).line(points.bottom).attr('class', 'lining dashed')
- if (typeof store.addCut === 'function') store.addCut({ cut: 1, material: 'lining' })
+ store.cutlist.addCut({ cut: 1, material: 'lining' })
if (complete) {
points.title = points.top.shiftFractionTowards(points.bottom, 0.5)
diff --git a/designs/carlton/src/innerpocketwelt.mjs b/designs/carlton/src/innerpocketwelt.mjs
index 862306cbce7..f606324b004 100644
--- a/designs/carlton/src/innerpocketwelt.mjs
+++ b/designs/carlton/src/innerpocketwelt.mjs
@@ -49,10 +49,8 @@ function draftCarltonInnerPocketWelt({
.close()
.attr('class', 'lashed')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lmhCanvas' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lmhCanvas' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocket.mjs b/designs/carlton/src/pocket.mjs
index fc98cdde0eb..cab182f9830 100644
--- a/designs/carlton/src/pocket.mjs
+++ b/designs/carlton/src/pocket.mjs
@@ -53,7 +53,7 @@ function draftCarltonPocket({
paths.fold = new Path().move(points.topLeft).line(points.topRight).attr('class', 'fabric dashed')
- if (typeof store.addCut === 'function') store.addCut()
+ store.cutlist.addCut()
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocketflap.mjs b/designs/carlton/src/pocketflap.mjs
index 3f6cae40f28..f68c101c049 100644
--- a/designs/carlton/src/pocketflap.mjs
+++ b/designs/carlton/src/pocketflap.mjs
@@ -45,10 +45,8 @@ function draftCarltonPocketFlap({
paths.seam = paths.seam.line(points.topRight).line(points.topLeft).close().attr('class', 'fabric')
- if (typeof store.addCut === 'function') {
- store.addCut({ cut: 4 })
- store.addCut({ material: 'lmhCanvas' })
- }
+ store.cutlist.addCut({ cut: 4 })
+ store.cutlist.addCut({ material: 'lmhCanvas' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/pocketlining.mjs b/designs/carlton/src/pocketlining.mjs
index d3d05c5e4be..f1afa08cced 100644
--- a/designs/carlton/src/pocketlining.mjs
+++ b/designs/carlton/src/pocketlining.mjs
@@ -45,7 +45,7 @@ function draftCarltonPocketLining({
delete paths.fold
- if (typeof store.addCut === 'function') store.addCut({ material: 'lining' })
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
points.title = points.topLeft.shiftFractionTowards(points.bottomRight, 0.5)
diff --git a/designs/carlton/src/tail.mjs b/designs/carlton/src/tail.mjs
index 955c68a3388..393420e6a3f 100644
--- a/designs/carlton/src/tail.mjs
+++ b/designs/carlton/src/tail.mjs
@@ -68,10 +68,8 @@ function draftCarltonTail({
.line(points.fold5Bottom)
.attr('class', 'fabric dashed')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lining' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
points.title = points.fold4Top.shiftFractionTowards(points.waistBottom, 0.5)
diff --git a/designs/carlton/src/topsleeve.mjs b/designs/carlton/src/topsleeve.mjs
index 3f1c85e9382..5c321ff24eb 100644
--- a/designs/carlton/src/topsleeve.mjs
+++ b/designs/carlton/src/topsleeve.mjs
@@ -54,10 +54,8 @@ function draftCarltonTopSleeve({
.close()
.attr('class', 'fabric')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lining' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
macro('title', {
diff --git a/designs/carlton/src/undersleeve.mjs b/designs/carlton/src/undersleeve.mjs
index b6e5dc0f48d..b76c0262cc2 100644
--- a/designs/carlton/src/undersleeve.mjs
+++ b/designs/carlton/src/undersleeve.mjs
@@ -50,10 +50,8 @@ function draftCarltonUnderSleeve({
.close()
.attr('class', 'fabric')
- if (typeof store.addCut === 'function') {
- store.addCut()
- store.addCut({ material: 'lining' })
- }
+ store.cutlist.addCut()
+ store.cutlist.addCut({ material: 'lining' })
if (complete) {
macro('title', {
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index 4a7bb41551f..ec3d95b68e3 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -5,10 +5,10 @@ export const plugin = {
name,
version,
store: [
- ['addCut', addCut],
- ['removeCut', removeCut],
- ['setGrain', setGrain],
- ['setCutOnFold', setCutOnFold],
+ [['cutlist', 'addCut'], addCut],
+ [['cutlist', 'removeCut'], removeCut],
+ [['cutlist', 'setGrain'], setGrain],
+ [['cutlist', 'setCutOnFold'], setCutOnFold],
],
}
diff --git a/plugins/plugin-cutonfold/src/index.mjs b/plugins/plugin-cutonfold/src/index.mjs
index 4766a6ae86b..37aa04e2924 100644
--- a/plugins/plugin-cutonfold/src/index.mjs
+++ b/plugins/plugin-cutonfold/src/index.mjs
@@ -37,9 +37,9 @@ export const plugin = {
prefix: 'cutonfold',
...so,
}
- if (typeof store.setCutOnFold === 'function') {
- store.setCutOnFold(so.from, so.to)
- if (so.grainline) store.setGrain(so.from.angle(so.to))
+ if (typeof store.cutlist !== undefined) {
+ store.cutlist.setCutOnFold(so.from, so.to)
+ if (so.grainline) store.cutlist.setGrain(so.from.angle(so.to))
}
if (complete) {
points[so.prefix + 'From'] = so.from.shiftFractionTowards(so.to, so.margin / 100)
diff --git a/plugins/plugin-grainline/src/index.mjs b/plugins/plugin-grainline/src/index.mjs
index a0c0c2ac87c..235a0430dd0 100644
--- a/plugins/plugin-grainline/src/index.mjs
+++ b/plugins/plugin-grainline/src/index.mjs
@@ -24,8 +24,8 @@ export const plugin = {
delete points.grainlineFrom
delete points.grainlineTo
delete paths.grainline
- if (typeof store.setGrain === 'function') {
- setGrain(false) // Restoring default
+ if (typeof store.cutlist.setGrain === 'function') {
+ store.cutlist.setGrain(false) // Restoring default
}
return true
}
@@ -34,8 +34,8 @@ export const plugin = {
...so,
}
// setGrain relies on plugin-cutlist
- if (typeof store.setGrain === 'function') {
- store.setGrain(so.from.angle(so.to))
+ if (typeof store.cutlist.setGrain === 'function') {
+ store.cutlist.setGrain(so.from.angle(so.to))
}
if (complete) {
points.grainlineFrom = so.from.shiftFractionTowards(so.to, 0.05)
From 484d16f4633414dc86ae40d08faf82aa5af5e78f Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 11:35:19 -0500
Subject: [PATCH 0108/1524] update docs
---
markdown/dev/howtos/design/cutlist/en.md | 30 +++++------
markdown/dev/reference/api/part/draft/en.md | 2 -
markdown/dev/reference/plugins/cutlist/en.md | 54 ++++++++++----------
3 files changed, 42 insertions(+), 44 deletions(-)
diff --git a/markdown/dev/howtos/design/cutlist/en.md b/markdown/dev/howtos/design/cutlist/en.md
index eb52e7c2895..25c2e040ab4 100644
--- a/markdown/dev/howtos/design/cutlist/en.md
+++ b/markdown/dev/howtos/design/cutlist/en.md
@@ -2,7 +2,7 @@
title: "Include Cutting Instructions"
---
-To include cutting instructions with your part, use the [cutlist plugin](/reference/plugins/cutlist) to add the [`addCut` method](/reference/plugins/cutlist#addcut) to your part's [`draft` method](/reference/api/part/draft)
+To include cutting instructions with your part, use the [cutlist plugin](/reference/plugins/cutlist) to add the [`cutlist.addCut` method](/reference/plugins/cutlist#addcut) to your part's [`store`](/reference/api/store/extend)
When you use the cutlist plugin, the [grainline plugin](/reference/plugins/grainline) and the [cut on fold plugin](/reference/plugins/cutonfold) will automatically add grain and fold information to the cutting instructions
@@ -12,7 +12,7 @@ To include cutting instructions with your part, use the [cutlist plugin](/refere
addCut() Parameters
-Pass an object to the `addCut` method with any of the following keys; any you don't provide will be filled with the defaults:
+Pass an object to the `store.cutlist.addCut` method with any of the following keys; any you don't provide will be filled with the defaults:
| Key | Type | Default | Description |
| :-- | :--- | :------ | :---------- |
@@ -49,9 +49,9 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, addCut}) => {
+ draft: ({part, store}) => {
// add instructions to cut two mirrored from main fabric
- addCut()
+ store.cutlist.addCut()
}
}
```
@@ -69,9 +69,9 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, addCut}) => {
+ draft: ({part, store}) => {
// add instructions to cut three identical from lining
- addCut({cut: 3, material: 'lining', identical: true})
+ store.cutlist.addCut({cut: 3, material: 'lining', identical: true})
}
}
```
@@ -85,11 +85,11 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, addCut}) => {
+ draft: ({part, store}) => {
// add instructions to cut four mirrored from main fabric
- addCut({cut: 4})
+ store.cutlist.addCut({cut: 4})
// add instructions to cut three identical from lining
- addCut({cut: 3, material: 'lining', identical: true})
+ store.cutlist.addCut({cut: 3, material: 'lining', identical: true})
}
}
```
@@ -106,7 +106,7 @@ import {pluginCutonfold} from '@freesewing/plugin-cutonfold'
const part = {
name: 'example.front',
plugins: [pluginCutlist, pluginCutonfold],
- draft: ({part, points, Point, macro, addCut}) => {
+ draft: ({part, points, Point, macro, store}) => {
// set the cut on fold line
points.p1 = new Point(0, 0)
points.p2 = new Point(0, 10)
@@ -115,9 +115,9 @@ const part = {
macro('cutonfold', {from: points.p1, to: points.p2})
// cut two on the fold
- addCut()
+ store.cutlist.addCut()
// cut two, not on the fold
- addCut({cut: 2, ignoreOnFold: true})
+ store.cutlist.addCut({cut: 2, ignoreOnFold: true})
}
}
```
@@ -133,7 +133,7 @@ import {pluginGrainline} from '@freesewing/plugin-grainline'
const part = {
name: 'example.front',
plugins: [pluginCutlist, pluginGrainline],
- draft: ({part, points, Point, macro, addCut}) => {
+ draft: ({part, points, Point, macro, store}) => {
// set the cut on fold line
points.p1 = new Point(0, 0)
points.p2 = new Point(0, 10)
@@ -142,9 +142,9 @@ const part = {
macro('grainline', {from: points.p1, to: points.p2})
// cut two mirrored on the grain
- addCut()
+ store.cutlist.addCut()
// cut two mirrored on the bias
- addCut({cut: 2, bias: true})
+ store.cutlist.addCut({cut: 2, bias: true})
}
}
```
diff --git a/markdown/dev/reference/api/part/draft/en.md b/markdown/dev/reference/api/part/draft/en.md
index 3a3f7943538..e6bef809175 100644
--- a/markdown/dev/reference/api/part/draft/en.md
+++ b/markdown/dev/reference/api/part/draft/en.md
@@ -45,5 +45,3 @@ access the following properties:
| `Bezier` | The [bezier-js](https://pomax.github.io/bezierjs/) library's `Bezier` named export |
|| **_Return value_** |
| `part` | Your draft method **must** return this |
-
- Some plugins, such as the [cutlist plugin](/reference/plugins/cutlist) add additional methods to this object that can be accessed through the same destructuring
diff --git a/markdown/dev/reference/plugins/cutlist/en.md b/markdown/dev/reference/plugins/cutlist/en.md
index 6d739c494e0..eecc1cc1b33 100644
--- a/markdown/dev/reference/plugins/cutlist/en.md
+++ b/markdown/dev/reference/plugins/cutlist/en.md
@@ -2,7 +2,7 @@
title: plugin-cutlist
---
-Published as [@freesewing/plugin-cutlist][1], this plugin provides additional methods to the [part draft function](/reference/api/part/draft) which allow you to configure cutting instructions for your parts.
+Published as [@freesewing/plugin-cutlist][1], this plugin adds additional methods to the [store](/reference/api/store/extend) which allow you to configure cutting instructions for your parts.
For an in-depth look at how to add cutting instructions to your part, see our [cutlist how-to](/howtos/design/cutlist)
@@ -29,16 +29,16 @@ import { pluginCutlist } from '@freesewing/plugin-cutlist'
The cutlist plugin adds the following methods to the part draft method parameter
-### addCut
+### store.cutlist.addCut
-The `addCut()` method will add a set of cutting instructions for the part
+The `store.cutlist.addCut()` method will add a set of cutting instructions for the part
#### Signature
```js
-addCut(Object so)
+store.cutlist.addCut(Object so)
````
-Pass an object to the `addCut` method with any of the following keys; any you don't provide will be filled with the defaults:
+Pass an object to the `store.cutlist.addCut` method with any of the following keys; any you don't provide will be filled with the defaults:
| Key | Type | Default | Description |
| :-- | :--- | :------ | :---------- |
@@ -76,11 +76,11 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, addCut}) => {
+ draft: ({part, store}) => {
// add instructions to cut two from main fabric
- addCut()
+ store.cutlist.addCut()
// add instructions to cut four on the biad from lining
- addCut({cut: 4, material: 'lining', bias: true, })
+ store.cutlist.addCut({cut: 4, material: 'lining', bias: true, })
return part
}
}
@@ -93,24 +93,24 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, addCut}) => {
+ draft: ({part, store}) => {
// add instructions to 1 from lining
- addCut({cut: 1, material: 'lining'})
+ store.cutlist.addCut({cut: 1, material: 'lining'})
// add instructions to cut 1 on the bias from lining
- addCut({cut: 1, material: 'lining', bias: true, })
+ store.cutlist.addCut({cut: 1, material: 'lining', bias: true, })
return part
}
}
```
-### removeCut
+### store.cutlist.removeCut
-The `removeCut()` method will remove cutting instructions from the part
+The `store.cutlist.removeCut()` method will remove cutting instructions from the part
#### Signature
```js
-removeCut(String material)
+store.cutlist.removeCut(String material)
```
#### Example
@@ -120,24 +120,24 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, removeCut}) => {
+ draft: ({part, store}) => {
// remove all cutting instructions for all materials
- removeCut()
+ store.cutlist.removeCut()
// remove cutting instructions for just one material
- removeCut('fabric')
+ store.cutlist.removeCut('fabric')
return part
}
}
```
-### setGrain
+### store.cutlist.setGrain
-The `setGrain()` method will record the angle of the grainline annotation. This method is called internally by [`plugin-grainline`](/reference/plugins/grainline) to store information for cutting layout tools. You shouldn't have to call it, but it's there if you need it.
+The `store.cutlist.setGrain()` method will record the angle of the grainline annotation. This method is called internally by [`plugin-grainline`](/reference/plugins/grainline) to store information for cutting layout tools. You shouldn't have to call it, but it's there if you need it.
#### Signature
```js
-setGrain(Number grainAngle)
+store.cutlist.setGrain(Number grainAngle)
```
#### Example
@@ -147,21 +147,21 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, setGrain}) => {
+ draft: ({part, store}) => {
// set the grainline angle
- setGrain(0)
+ store.cutlist.setGrain(0)
return part
}
}
```
-### setCutOnFold
-The `setCutOnFold()` method will record the points that make up the cut on fold line. This method is called internally by [`plugin-cutonfold`](/reference/plugins/cutonfold) to store information for cutting layout tools. You shouldn't have to call it, but it's there if you need it.
+### store.cutlist.setCutOnFold
+The `store.cutlist.setCutOnFold()` method will record the points that make up the cut on fold line. This method is called internally by [`plugin-cutonfold`](/reference/plugins/cutonfold) to store information for cutting layout tools. You shouldn't have to call it, but it's there if you need it.
#### Signature
```js
-setCutOnFold(Point p1, Point p2)
+store.cutlist.setCutOnFold(Point p1, Point p2)
```
#### Example
@@ -171,11 +171,11 @@ import {pluginCutlist} from '@freesewing/plugin-cutlist'
const part = {
name: 'example.front',
plugins: [pluginCutlist],
- draft: ({part, points, Point, setCutOnFold}) => {
+ draft: ({part, points, Point, store}) => {
// set the cut on fold line
points.p1 = new Point(0, 0)
points.p2 = new Point(0, 10)
- setCutOnFold(points.p1, points.p2)
+ store.cutlist.setCutOnFold(points.p1, points.p2)
return part
}
}
From 9df063ec9716bae2d228c47a136d7a278da8ea35 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 11:41:56 -0500
Subject: [PATCH 0109/1524] [vercel skip] a little more documentation fixing
---
markdown/dev/reference/api/store/extend/en.md | 4 +++-
plugins/plugin-cutlist/src/index.mjs | 8 ++++----
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/markdown/dev/reference/api/store/extend/en.md b/markdown/dev/reference/api/store/extend/en.md
index 05dc91d6cfd..d53bb771918 100644
--- a/markdown/dev/reference/api/store/extend/en.md
+++ b/markdown/dev/reference/api/store/extend/en.md
@@ -19,8 +19,10 @@ The single argument should be an Array of methods to add to the
store. Each entry in the array should be an array itself holding a path in
dot notation and a method, as such:
+The expected first parameter for the method is the `Store` instance.
+
```js
-function myCustomMethod() {
+function myCustomMethod(store, ...otherArguments) {
// Do something clever
}
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index ec3d95b68e3..d9dd6ea9913 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -5,10 +5,10 @@ export const plugin = {
name,
version,
store: [
- [['cutlist', 'addCut'], addCut],
- [['cutlist', 'removeCut'], removeCut],
- [['cutlist', 'setGrain'], setGrain],
- [['cutlist', 'setCutOnFold'], setCutOnFold],
+ [['cutlist.addCut'], addCut],
+ [['cutlist.removeCut'], removeCut],
+ [['cutlist.setGrain'], setGrain],
+ [['cutlist.setCutOnFold'], setCutOnFold],
],
}
From e328d4fa24bd016a1851c0332a267e54ad91db90 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 11:50:42 -0500
Subject: [PATCH 0110/1524] lint fix
---
plugins/plugin-cutonfold/src/index.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/plugin-cutonfold/src/index.mjs b/plugins/plugin-cutonfold/src/index.mjs
index 37aa04e2924..7e01c130ec6 100644
--- a/plugins/plugin-cutonfold/src/index.mjs
+++ b/plugins/plugin-cutonfold/src/index.mjs
@@ -37,7 +37,7 @@ export const plugin = {
prefix: 'cutonfold',
...so,
}
- if (typeof store.cutlist !== undefined) {
+ if (typeof store.cutlist !== 'undefined') {
store.cutlist.setCutOnFold(so.from, so.to)
if (so.grainline) store.cutlist.setGrain(so.from.angle(so.to))
}
From 98a90344f5b403dc89d66dbf621fe7b3a765ce9a Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 13:04:00 -0500
Subject: [PATCH 0111/1524] remove stale test
---
packages/core/tests/store.test.mjs | 35 ------------------------------
1 file changed, 35 deletions(-)
diff --git a/packages/core/tests/store.test.mjs b/packages/core/tests/store.test.mjs
index 9bbb9db3286..33a3d6536f9 100644
--- a/packages/core/tests/store.test.mjs
+++ b/packages/core/tests/store.test.mjs
@@ -74,41 +74,6 @@ describe('Store', () => {
expect(pattern.setStores[0].get('test.message.info')).to.equal('hello info')
})
- it('Should make top-level plugin methods available via shorthand', () => {
- const plugin = {
- name: 'test',
- version: 1,
- store: [
- [
- 'methodA',
- function (store, name, msg) {
- store.set(['test', name, 'a'], msg)
- },
- ],
- [
- 'methodB',
- function (store, name, msg) {
- store.set(['test', name, 'b'], msg)
- },
- ],
- ],
- }
- const part = {
- name: 'example_part',
- plugins: [plugin],
- draft: ({ methodA, methodB, part }) => {
- methodA('hello A')
- methodB('hello B')
- return part
- },
- }
- const Test = new Design({ parts: [part] })
- const pattern = new Test()
- pattern.draft()
- expect(pattern.setStores[0].get('test.example_part.a')).to.equal('hello A')
- expect(pattern.setStores[0].get('test.example_part.b')).to.equal('hello B')
- })
-
it('Should log a warning when trying to extend a protected method via the constructor', () => {
const store = new Store([['get', () => false]])
expect(store.logs.warning.length).to.equal(1)
From c47bef61bc9baedd9069ec5cc4f4f18a780ecd6c Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 5 Mar 2023 21:24:58 -0600
Subject: [PATCH 0112/1524] ask before overwriting files when running
new-design
---
packages/new-design/lib/config.mjs | 1 -
packages/new-design/lib/utils.mjs | 116 +++++++++++++++++++++++------
2 files changed, 94 insertions(+), 23 deletions(-)
diff --git a/packages/new-design/lib/config.mjs b/packages/new-design/lib/config.mjs
index 45e4a4aa707..bf8d931a478 100644
--- a/packages/new-design/lib/config.mjs
+++ b/packages/new-design/lib/config.mjs
@@ -171,7 +171,6 @@ yarn-error.log*
'shared/components/workbench/inputs/design-option-pct-deg.mjs',
'shared/components/workbench/inputs/measurement.mjs',
'shared/components/workbench/measurements/index.mjs',
- 'shared/components/workbench/measurements/non-human.mjs',
'shared/components/workbench/draft/circle.mjs',
'shared/components/workbench/draft/defs.mjs',
'shared/components/workbench/draft/error.mjs',
diff --git a/packages/new-design/lib/utils.mjs b/packages/new-design/lib/utils.mjs
index f3fab68c334..1a84ae9d7fe 100644
--- a/packages/new-design/lib/utils.mjs
+++ b/packages/new-design/lib/utils.mjs
@@ -1,5 +1,5 @@
import { config } from './config.mjs'
-import { mkdir, readFile, writeFile, copyFile } from 'node:fs/promises'
+import { mkdir, readFile, writeFile, copyFile, open, opendir } from 'node:fs/promises'
import { join, dirname, relative } from 'path'
import mustache from 'mustache'
import rdir from 'recursive-readdir'
@@ -91,15 +91,62 @@ export const getChoices = async () => {
initial: 0,
})
- const { name } =
- template === 'tutorial'
- ? { name: 'tutorial' }
- : await prompts({
- type: 'text',
- name: 'name',
- message: 'What name would you like the design to have? 🏷️ ([a-z] only)',
- validate: validateDesignName,
- })
+ let finalName = false // we're going to use this to track whether we stay in the naming loop
+ let overwrite = true // should we overwrite existing files?
+ const cwd = process.cwd()
+ let name // name will go here
+
+ // while we're not finalized on a name
+ while (finalName === false) {
+ // request a name
+ name =
+ template === 'tutorial' && name === undefined
+ ? 'tutorial'
+ : (
+ await prompts({
+ type: 'text',
+ name: 'name',
+ message: 'What name would you like the design to have? 🏷️ ([a-z] only)',
+ validate: validateDesignName,
+ })
+ ).name
+
+ // check whether a folder with that name already exists
+ config.dest = join(cwd, name)
+ try {
+ const dir = await opendir(config.dest)
+ dir.close()
+ } catch {
+ // the folder didn't exist, so we're good to go
+ finalName = true
+ break
+ }
+
+ // the folder did exist, so now we need to ask what to do
+ const { nextStep } = await prompts({
+ type: 'select',
+ name: 'nextStep',
+ message:
+ 'It looks like you already have a design by that name in progress. What should we do?',
+ choices: [
+ { title: 'Rename', value: 'rename', description: 'Choose a new name for this design' },
+ { title: 'Overwrite', value: 'overwrite', description: 'Overwrite the existing design' },
+ {
+ title: 'Re-initialize',
+ value: 'reinit',
+ description:
+ "Bring in a fresh workbench, but don't overwrite existing design files (useful for updating to the latest dev environment)",
+ },
+ ],
+ })
+
+ // if they said rename, we loop again. otherwise
+ if (nextStep !== 'rename') {
+ finalName = true
+ // set the overwrite choice
+ overwrite = nextStep === 'overwrite'
+ }
+ }
const { manager } = await prompts({
type: 'select',
@@ -112,7 +159,7 @@ export const getChoices = async () => {
initial: 0,
})
- return { template, name, manager }
+ return { template, name, manager, overwrite }
}
const capitalize = (string) => string.charAt(0).toUpperCase() + string.slice(1)
@@ -128,9 +175,28 @@ const ensureDir = async (file, suppress = false) => {
}
// Helper method to copy template files
-const copyFileOrTemplate = async (fromRootOrTemplate, toRoot, relativeDest, templateVars) => {
+const copyFileOrTemplate = async (
+ fromRootOrTemplate,
+ toRoot,
+ relativeDest,
+ templateVars,
+ overwrite = true
+) => {
const to = join(toRoot, relativeDest)
+ // if the file shouldn't be overwritten, open it to see if it exists
+ if (!overwrite) {
+ try {
+ // if the file doesn't exist, this will throw an error
+ const fd = await open(to)
+ fd.close()
+ // we only reach this return if the file exists, which means we're safe to leave
+ return
+ } catch {
+ // don't do anything with the error because it just means the file wasn't there and we can continue
+ }
+ }
+
await ensureDir(to)
if (templateVars) {
@@ -148,6 +214,7 @@ const copyPackageJson = async (config, choices) => {
config.relativeFiles.templates['package.json'],
'utf-8'
)
+
await copyFileOrTemplate(packageJsonTemplate, config.dest, 'package.json', {
name: choices.name,
tag: config.tag,
@@ -165,11 +232,17 @@ const copyIndexFile = async (config, choices) => {
? config.templateData.parts.map((p) => p.part)
: config.templateData.parts
// write the file
- await copyFileOrTemplate(indexTemplate, config.dest, `${designSrcDir}/index.mjs`, {
- name: choices.name,
- Name: capitalize(choices.name),
- parts: partNames,
- })
+ await copyFileOrTemplate(
+ indexTemplate,
+ config.dest,
+ `${designSrcDir}/index.mjs`,
+ {
+ name: choices.name,
+ Name: capitalize(choices.name),
+ parts: partNames,
+ },
+ choices.overwrite
+ )
}
// Template the part files
@@ -213,7 +286,8 @@ const copyPartFiles = async (config, choices) => {
partTemplate,
config.dest,
`${designSrcDir}/${templateArgs.part}.mjs`,
- templateArgs
+ templateArgs,
+ choices.overwrite
)
})
}
@@ -271,7 +345,7 @@ const downloadLabFiles = async (config) => {
// Helper method to initialize a git repository
const initGitRepo = async (config, choices) => {
- await writeFile(join(config.dest, '.gitignore'), config.gitignore, 'utf-8')
+ await copyFileOrTemplate(config.gitignore, config.dest, '.gitignore', {}, choices.overwrite)
return execa(
`git init -b main && git add . && git commit -m ":tada: Initialized ${choices.name} repository"`,
@@ -345,8 +419,6 @@ export const createEnvironment = async (choices) => {
shared: join(newDesignDir, `shared`),
}
- config.dest = join(process.cwd(), choices.name)
-
// Create target directory
await mkdir(config.dest, { recursive: true })
@@ -427,7 +499,7 @@ export const createEnvironment = async (choices) => {
chalk.white.dim(' | This does not stop you from developing your design'),
})
} catch (err) {
- /* no git no worries */
+ console.log(err)
}
// All done. Show tips
From 8c04bec9bd8240086b28400fa643359f8b6c2039 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 17:19:36 -0500
Subject: [PATCH 0113/1524] chore (new-design) update file list
---
packages/new-design/lib/config.mjs | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/packages/new-design/lib/config.mjs b/packages/new-design/lib/config.mjs
index bf8d931a478..fa3b8d0fd16 100644
--- a/packages/new-design/lib/config.mjs
+++ b/packages/new-design/lib/config.mjs
@@ -122,7 +122,6 @@ yarn-error.log*
'shared/components/error/view.mjs',
'shared/components/icons/flip.js',
'shared/components/icons/rotate.js',
- 'shared/components/icons/sheet.js',
'shared/components/locale-picker/index.mjs',
'shared/components/locale-picker/locales.de.yaml',
'shared/components/locale-picker/locales.en.yaml',
@@ -133,7 +132,6 @@ yarn-error.log*
'shared/components/logos/cc.mjs',
'shared/components/logos/freesewing.mjs',
'shared/components/logos/osi.mjs',
- 'shared/components/mdx/examples.mjs',
'shared/components/mdx/figure.mjs',
'shared/components/mdx/highlight.mjs',
'shared/components/mdx/http.mjs',
@@ -185,11 +183,12 @@ yarn-error.log*
'shared/components/workbench/draft/utils.mjs',
'shared/components/workbench/layout/default.mjs',
'shared/components/workbench/layout/cut/index.mjs',
+ 'shared/components/workbench/layout/cut/plugin-cut-layout.mjs',
'shared/components/workbench/layout/cut/settings.mjs',
'shared/components/workbench/layout/print/index.mjs',
'shared/components/workbench/layout/print/orientation-picker.mjs',
'shared/components/workbench/layout/print/pagesize-picker.mjs',
- 'shared/components/workbench/layout/print/plugin.mjs',
+ 'shared/components/workbench/layout/plugin-layout-part.mjs',
'shared/components/workbench/layout/print/settings.mjs',
'shared/components/workbench/layout/draft/buttons.mjs',
'shared/components/workbench/layout/draft/index.mjs',
From c90635234a15d4866b82e880695157a07b621821 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 12 Mar 2023 17:20:28 -0500
Subject: [PATCH 0114/1524] fix (new-design) hopefully a better way of doing
paths that works on windows
---
packages/new-design/lib/utils.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/new-design/lib/utils.mjs b/packages/new-design/lib/utils.mjs
index 1a84ae9d7fe..4aa6094b127 100644
--- a/packages/new-design/lib/utils.mjs
+++ b/packages/new-design/lib/utils.mjs
@@ -15,7 +15,7 @@ let filename
try {
filename = __filename
} catch {
- filename = fileURLToPath(import.meta.url)
+ filename = fileURLToPath(new URL(import.meta.url))
}
const newDesignDir = join(filename, '../..')
const designSrcDir = 'design/src'
From 3ebb9f1dbed702a47302ada5e6ef0cedcfd69e19 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 05:01:55 +0000
Subject: [PATCH 0115/1524] chore(deps-dev): bump lint-staged from 13.1.0 to
13.2.0
Bumps [lint-staged](https://github.com/okonet/lint-staged) from 13.1.0 to 13.2.0.
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Commits](https://github.com/okonet/lint-staged/compare/v13.1.0...v13.2.0)
---
updated-dependencies:
- dependency-name: lint-staged
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 88 +++++++++++++++++++++++++++----------------------------
1 file changed, 44 insertions(+), 44 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 684fdba587f..006c7bbed24 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6069,6 +6069,11 @@ chalk@5.0.1:
resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.0.1.tgz#ca57d71e82bb534a296df63bbacc4a1c22b2a4b6"
integrity sha512-Fo07WOYGqMfCWHOzSXOt2CxDbC6skS/jO9ynEcmpANMoPrD+W1r1K6Vx7iNm+AQmETU1Xr2t+n8nzkV9t6xh3w==
+chalk@5.2.0, chalk@^5.0.0, chalk@^5.2.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
+ integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
+
chalk@^1.0.0, chalk@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
@@ -6105,11 +6110,6 @@ chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0, chalk@^4.1.1, chalk@^4.1.2:
ansi-styles "^4.1.0"
supports-color "^7.1.0"
-chalk@^5.0.0, chalk@^5.2.0:
- version "5.2.0"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3"
- integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==
-
character-entities-html4@^1.0.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"
@@ -6540,6 +6540,11 @@ comma-separated-tokens@^2.0.0:
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz#d4c25abb679b7751c880be623c1179780fe1dd98"
integrity sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==
+commander@^10.0.0:
+ version "10.0.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.0.tgz#71797971162cd3cf65f0b9d24eb28f8d303acdf1"
+ integrity sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==
+
commander@^2.19.0, commander@^2.2.0:
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
@@ -6555,7 +6560,7 @@ commander@^7.2.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
-commander@^9.0.0, commander@^9.4.1:
+commander@^9.0.0:
version "9.4.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd"
integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==
@@ -8691,14 +8696,14 @@ execa@^5.0.0:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
-execa@^6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20"
- integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==
+execa@^7.0.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.0.tgz#50c6f39438b7ce407e8c7a6829c72b074778238d"
+ integrity sha512-T6nIJO3LHxUZ6ahVRaxXz9WLEruXLqdcluA+UuTptXmLM7nDAn9lx9IfkxPyzEL21583qSt4RmL44pO71EHaJQ==
dependencies:
cross-spawn "^7.0.3"
get-stream "^6.0.1"
- human-signals "^3.0.1"
+ human-signals "^4.3.0"
is-stream "^3.0.0"
merge-stream "^2.0.0"
npm-run-path "^5.1.0"
@@ -10366,11 +10371,6 @@ human-signals@^2.1.0:
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
-human-signals@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5"
- integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==
-
human-signals@^4.3.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.0.tgz#2095c3cd5afae40049403d4b811235b03879db50"
@@ -11829,10 +11829,10 @@ libnpmpublish@6.0.4:
semver "^7.3.7"
ssri "^9.0.0"
-lilconfig@2.0.6, lilconfig@^2.0.5, lilconfig@^2.0.6:
- version "2.0.6"
- resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4"
- integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==
+lilconfig@2.1.0, lilconfig@^2.0.5, lilconfig@^2.0.6:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52"
+ integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==
limiter@^1.0.5:
version "1.1.5"
@@ -11865,23 +11865,23 @@ linkify-it@^3.0.1:
uc.micro "^1.0.1"
lint-staged@^13.0.3:
- version "13.1.0"
- resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.1.0.tgz#d4c61aec939e789e489fa51987ec5207b50fd37e"
- integrity sha512-pn/sR8IrcF/T0vpWLilih8jmVouMlxqXxKuAojmbiGX5n/gDnz+abdPptlj0vYnbfE0SQNl3CY/HwtM0+yfOVQ==
+ version "13.2.0"
+ resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.0.tgz#b7abaf79c91cd36d824f17b23a4ce5209206126a"
+ integrity sha512-GbyK5iWinax5Dfw5obm2g2ccUiZXNGtAS4mCbJ0Lv4rq6iEtfBSjOYdcbOtAIFtM114t0vdpViDDetjVTSd8Vw==
dependencies:
+ chalk "5.2.0"
cli-truncate "^3.1.0"
- colorette "^2.0.19"
- commander "^9.4.1"
+ commander "^10.0.0"
debug "^4.3.4"
- execa "^6.1.0"
- lilconfig "2.0.6"
- listr2 "^5.0.5"
+ execa "^7.0.0"
+ lilconfig "2.1.0"
+ listr2 "^5.0.7"
micromatch "^4.0.5"
normalize-path "^3.0.0"
- object-inspect "^1.12.2"
+ object-inspect "^1.12.3"
pidtree "^0.6.0"
string-argv "^0.3.1"
- yaml "^2.1.3"
+ yaml "^2.2.1"
listr-input@^0.2.1:
version "0.2.1"
@@ -11922,17 +11922,17 @@ listr-verbose-renderer@^0.5.0:
date-fns "^1.27.2"
figures "^2.0.0"
-listr2@^5.0.5:
- version "5.0.6"
- resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.6.tgz#3c61153383869ffaad08a8908d63edfde481dff8"
- integrity sha512-u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag==
+listr2@^5.0.7:
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23"
+ integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==
dependencies:
cli-truncate "^2.1.0"
colorette "^2.0.19"
log-update "^4.0.0"
p-map "^4.0.0"
rfdc "^1.3.0"
- rxjs "^7.5.7"
+ rxjs "^7.8.0"
through "^2.3.8"
wrap-ansi "^7.0.0"
@@ -14226,10 +14226,10 @@ object-hash@^3.0.0:
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
-object-inspect@^1.12.0, object-inspect@^1.12.2, object-inspect@^1.6.0, object-inspect@^1.9.0:
- version "1.12.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
- integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
+object-inspect@^1.12.0, object-inspect@^1.12.2, object-inspect@^1.12.3, object-inspect@^1.6.0, object-inspect@^1.9.0:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
object-is@^1.1.4:
version "1.1.5"
@@ -17359,7 +17359,7 @@ rxjs@^6.3.3, rxjs@^6.4.0, rxjs@^6.5.3, rxjs@^6.6.0, rxjs@^6.6.3:
dependencies:
tslib "^1.9.0"
-rxjs@^7, rxjs@^7.0.0, rxjs@^7.5.5, rxjs@^7.5.7, rxjs@^7.8.0:
+rxjs@^7, rxjs@^7.0.0, rxjs@^7.5.5, rxjs@^7.8.0:
version "7.8.0"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4"
integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==
@@ -20204,10 +20204,10 @@ yaml@^1.10.0, yaml@^1.10.2:
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
-yaml@^2.0.0, yaml@^2.1.3:
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207"
- integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg==
+yaml@^2.0.0, yaml@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4"
+ integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==
yargs-parser@20.2.4:
version "20.2.4"
From 7db163594bae19188394883d9ef3f1a16716741c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 05:05:31 +0000
Subject: [PATCH 0116/1524] chore(deps): bump swagger-ui-dist from 4.17.1 to
4.18.1
Bumps [swagger-ui-dist](https://github.com/swagger-api/swagger-ui) from 4.17.1 to 4.18.1.
- [Release notes](https://github.com/swagger-api/swagger-ui/releases)
- [Changelog](https://github.com/swagger-api/swagger-ui/blob/master/.releaserc)
- [Commits](https://github.com/swagger-api/swagger-ui/compare/v4.17.1...v4.18.1)
---
updated-dependencies:
- dependency-name: swagger-ui-dist
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/backend/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sites/backend/package.json b/sites/backend/package.json
index e9c1804a074..6ee747433f7 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -43,7 +43,7 @@
"passport-jwt": "4.0.1",
"pino": "8.11.0",
"qrcode": "1.5.1",
- "swagger-ui-dist": "4.17.1",
+ "swagger-ui-dist": "4.18.1",
"swagger-ui-express": "4.6.2"
},
"devDependencies": {
diff --git a/yarn.lock b/yarn.lock
index 684fdba587f..1449e444667 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -18613,10 +18613,10 @@ supports-preserve-symlinks-flag@^1.0.0:
version "0.1.10"
resolved "https://github.com/eriese/SVG-to-PDFKit#2702cbe6b225224c4b5ea25b6a1ee8936cd8cf61"
-swagger-ui-dist@4.17.1, swagger-ui-dist@>=4.11.0:
- version "4.17.1"
- resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-4.17.1.tgz#ce47872e1eb7bd49528f50d5bdf9012e2f0b1fa7"
- integrity sha512-Q3iFZgpraiHWphd6eX7IfI+aAITLWoP1TSIRo+0vuixRxQNqwdknab/Ktu9rs8oY3XY08FtrXkK0qt54eSuUXg==
+swagger-ui-dist@4.18.1, swagger-ui-dist@>=4.11.0:
+ version "4.18.1"
+ resolved "https://registry.yarnpkg.com/swagger-ui-dist/-/swagger-ui-dist-4.18.1.tgz#da77cee1531af3f989b3da9dd8cddc5b9fa5715d"
+ integrity sha512-n7AT4wzKIPpHy/BGflJOepGMrbY/7Cd5yVd9ptVczaJGAKScbVJrZxFbAE2ZSZa8KmqdQ0+pOs3/5mWY5tSMZQ==
swagger-ui-express@4.6.2:
version "4.6.2"
From 37e5c2cdab64577ea994b35647f311d0631137f5 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 05:06:11 +0000
Subject: [PATCH 0117/1524] chore(deps-dev): bump @types/node from 18.14.6 to
18.15.1
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.14.6 to 18.15.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 684fdba587f..e41627a3776 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4428,9 +4428,9 @@
"@types/unist" "*"
"@types/node@*", "@types/node@>=10.0.0", "@types/node@^18.0.0":
- version "18.14.6"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.6.tgz#ae1973dd2b1eeb1825695bb11ebfb746d27e3e93"
- integrity sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==
+ version "18.15.1"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.1.tgz#41dc2bf78e8085a250d4670d95edb7fba621dd29"
+ integrity sha512-U2TWca8AeHSmbpi314QBESRk7oPjSZjDsR+c+H4ECC1l+kFgpZf8Ydhv3SJpPy51VyZHHqxlb6mTTqYNNRVAIw==
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
From 1f24593772bdb9da3df606b3f81166d31be76a5d Mon Sep 17 00:00:00 2001
From: github-actions
Date: Mon, 13 Mar 2023 05:09:03 +0000
Subject: [PATCH 0118/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/swagger-ui-dist-4.18.1 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index e8e7cde6bad..0b632de3ae8 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -221,7 +221,7 @@ backend:
'passport-jwt': '4.0.1'
'pino': '8.11.0'
'qrcode': '1.5.1'
- 'swagger-ui-dist': '4.17.1'
+ 'swagger-ui-dist': '4.18.1'
'swagger-ui-express': '4.6.2'
dev:
'chai': *chai
From cf4a2d416b081c9f58cc569ff2efc02ac14cced5 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 05:11:59 +0000
Subject: [PATCH 0119/1524] chore(deps): bump react-hotkeys-hook from 4.3.2 to
4.3.7
Bumps [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) from 4.3.2 to 4.3.7.
- [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases)
- [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md)
- [Commits](https://github.com/JohannesKlauss/react-keymap-hook/compare/v4.3.2...v4.3.7)
---
updated-dependencies:
- dependency-name: react-hotkeys-hook
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/dev/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
yarn.lock | 8 ++++----
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sites/dev/package.json b/sites/dev/package.json
index 8e930093375..dc6b79e17e0 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -40,7 +40,7 @@
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
- "react-hotkeys-hook": "4.3.2",
+ "react-hotkeys-hook": "4.3.7",
"react-instantsearch-dom": "6.39.0",
"react-markdown": "8.0.5",
"react-swipeable": "7.0.0",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 034e333975d..88e5cf0b9e2 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -44,7 +44,7 @@
"next-i18next": "13.1.4",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
- "react-hotkeys-hook": "4.3.2",
+ "react-hotkeys-hook": "4.3.7",
"react-i18next": "12.1.4",
"react-instantsearch-dom": "6.39.0",
"react-markdown": "8.0.5",
diff --git a/sites/org/package.json b/sites/org/package.json
index b6dd484e750..c7a8ced6223 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -42,7 +42,7 @@
"luxon": "3.3.0",
"next": "13.2.4",
"react-dropzone": "14.2.3",
- "react-hotkeys-hook": "4.3.2",
+ "react-hotkeys-hook": "4.3.7",
"react-instantsearch-dom": "6.39.0",
"react-hot-toast": "2.4.0",
"react-markdown": "8.0.5",
diff --git a/yarn.lock b/yarn.lock
index 684fdba587f..acee0b1d7be 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -16000,10 +16000,10 @@ react-hot-toast@2.4.0:
dependencies:
goober "^2.1.10"
-react-hotkeys-hook@4.3.2:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.3.2.tgz#0faf9f86fc0058fe5da0e73535359cd088af3468"
- integrity sha512-ZA/li3kBDHuRTtJIf7Td41UU87bPtnt9xV4r+PlEzpnFoYRDVspk3B+mlaX75zowyQygMVmoaWnM4B88lkyExQ==
+react-hotkeys-hook@4.3.7:
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.3.7.tgz#87d4c2c939d190643acb66de84cdf586a8743dce"
+ integrity sha512-qUcA5vl/liGWr9wLYI5/8oppHLa6nExFqOAMC6CyZhpj7C56PIzYZ76xAtJ+5lgxObgl4A4pQz8upy+nq7orSQ==
react-i18next@12.1.4:
version "12.1.4"
From 3e3577703d3220cf253fe0cb073e9fc31299c17f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 13 Mar 2023 05:13:51 +0000
Subject: [PATCH 0120/1524] chore(deps): bump @aws-sdk/client-sesv2 from
3.272.0 to 3.289.0
Bumps [@aws-sdk/client-sesv2](https://github.com/aws/aws-sdk-js-v3/tree/HEAD/clients/client-sesv2) from 3.272.0 to 3.289.0.
- [Release notes](https://github.com/aws/aws-sdk-js-v3/releases)
- [Changelog](https://github.com/aws/aws-sdk-js-v3/blob/main/clients/client-sesv2/CHANGELOG.md)
- [Commits](https://github.com/aws/aws-sdk-js-v3/commits/v3.289.0/clients/client-sesv2)
---
updated-dependencies:
- dependency-name: "@aws-sdk/client-sesv2"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/backend/package.json | 2 +-
yarn.lock | 812 ++++++++++++++++++-------------------
2 files changed, 407 insertions(+), 407 deletions(-)
diff --git a/sites/backend/package.json b/sites/backend/package.json
index e9c1804a074..3d80c331ede 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -28,7 +28,7 @@
},
"peerDependencies": {},
"dependencies": {
- "@aws-sdk/client-sesv2": "3.272.0",
+ "@aws-sdk/client-sesv2": "3.289.0",
"@prisma/client": "4.10.1",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
diff --git a/yarn.lock b/yarn.lock
index 684fdba587f..f79d64a0689 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -165,293 +165,293 @@
"@aws-sdk/util-utf8-browser" "^3.0.0"
tslib "^1.11.1"
-"@aws-sdk/abort-controller@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.272.0.tgz#c2d244e9d422583a786dfb75485316cb1d4793ce"
- integrity sha512-s2TV3phapcTwZNr4qLxbfuQuE9ZMP4RoJdkvRRCkKdm6jslsWLJf2Zlcxti/23hOlINUMYv2iXE2pftIgWGdpg==
+"@aws-sdk/abort-controller@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/abort-controller/-/abort-controller-3.289.0.tgz#94278f94c66ea48b0a2da70256abc036c85de6a9"
+ integrity sha512-Xakz8EeTl0Q3KaWRdCaRQrrYxBAkQGj6eeT+DVmMLMz4gzTcSHwvfR5tVBIPHk4+IjboJJKM5l1xAZ90AGFPAQ==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/client-sesv2@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sesv2/-/client-sesv2-3.272.0.tgz#2779b80bade2c9046391450b233da0278a1490ae"
- integrity sha512-0YwI3bltfwpSYMSnJAKh6V/LeQVD42AKIO2VrH2j8a+aWcFgXYDD0kzXXC5T68srOj3z4O9I7gPrz+SEb5Vd3w==
+"@aws-sdk/client-sesv2@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sesv2/-/client-sesv2-3.289.0.tgz#c9b81767a092e2022b597a0b137bb387fc12da0b"
+ integrity sha512-0YdEzUmWoeoXOxBmNtzk/5BcM7TFt3BxfH8AKfqY+dQaSVag9HOjYEakCiODYmT7Jg/PcuBWf5JOzphwj0gmdg==
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
- "@aws-sdk/client-sts" "3.272.0"
- "@aws-sdk/config-resolver" "3.272.0"
- "@aws-sdk/credential-provider-node" "3.272.0"
- "@aws-sdk/fetch-http-handler" "3.272.0"
- "@aws-sdk/hash-node" "3.272.0"
- "@aws-sdk/invalid-dependency" "3.272.0"
- "@aws-sdk/middleware-content-length" "3.272.0"
- "@aws-sdk/middleware-endpoint" "3.272.0"
- "@aws-sdk/middleware-host-header" "3.272.0"
- "@aws-sdk/middleware-logger" "3.272.0"
- "@aws-sdk/middleware-recursion-detection" "3.272.0"
- "@aws-sdk/middleware-retry" "3.272.0"
- "@aws-sdk/middleware-serde" "3.272.0"
- "@aws-sdk/middleware-signing" "3.272.0"
- "@aws-sdk/middleware-stack" "3.272.0"
- "@aws-sdk/middleware-user-agent" "3.272.0"
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/node-http-handler" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/smithy-client" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/client-sts" "3.289.0"
+ "@aws-sdk/config-resolver" "3.289.0"
+ "@aws-sdk/credential-provider-node" "3.289.0"
+ "@aws-sdk/fetch-http-handler" "3.289.0"
+ "@aws-sdk/hash-node" "3.289.0"
+ "@aws-sdk/invalid-dependency" "3.289.0"
+ "@aws-sdk/middleware-content-length" "3.289.0"
+ "@aws-sdk/middleware-endpoint" "3.289.0"
+ "@aws-sdk/middleware-host-header" "3.289.0"
+ "@aws-sdk/middleware-logger" "3.289.0"
+ "@aws-sdk/middleware-recursion-detection" "3.289.0"
+ "@aws-sdk/middleware-retry" "3.289.0"
+ "@aws-sdk/middleware-serde" "3.289.0"
+ "@aws-sdk/middleware-signing" "3.289.0"
+ "@aws-sdk/middleware-stack" "3.289.0"
+ "@aws-sdk/middleware-user-agent" "3.289.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/node-http-handler" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/smithy-client" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
"@aws-sdk/util-base64" "3.208.0"
"@aws-sdk/util-body-length-browser" "3.188.0"
"@aws-sdk/util-body-length-node" "3.208.0"
- "@aws-sdk/util-defaults-mode-browser" "3.272.0"
- "@aws-sdk/util-defaults-mode-node" "3.272.0"
- "@aws-sdk/util-endpoints" "3.272.0"
- "@aws-sdk/util-retry" "3.272.0"
- "@aws-sdk/util-user-agent-browser" "3.272.0"
- "@aws-sdk/util-user-agent-node" "3.272.0"
+ "@aws-sdk/util-defaults-mode-browser" "3.289.0"
+ "@aws-sdk/util-defaults-mode-node" "3.289.0"
+ "@aws-sdk/util-endpoints" "3.289.0"
+ "@aws-sdk/util-retry" "3.289.0"
+ "@aws-sdk/util-user-agent-browser" "3.289.0"
+ "@aws-sdk/util-user-agent-node" "3.289.0"
"@aws-sdk/util-utf8" "3.254.0"
tslib "^2.3.1"
-"@aws-sdk/client-sso-oidc@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.272.0.tgz#32ec5d4bd4d1f343d642a5846dae6e1864cc890c"
- integrity sha512-ECcXu3xoa1yggnGKMTh29eWNHiF/wC6r5Uqbla22eOOosyh0+Z6lkJ3JUSLOUKCkBXA4Cs/tJL9UDFBrKbSlvA==
+"@aws-sdk/client-sso-oidc@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.289.0.tgz#dd1945682685b05c7b8700593f95c8cb9788fe08"
+ integrity sha512-+09EK4aWdNjF+5+nK6Dmlwx3es8NTkyABTOj9H4eKB90rXQVX8PjoaFhK/b+NcNKDxgb1E6k6evZEpAb8dYQHg==
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
- "@aws-sdk/config-resolver" "3.272.0"
- "@aws-sdk/fetch-http-handler" "3.272.0"
- "@aws-sdk/hash-node" "3.272.0"
- "@aws-sdk/invalid-dependency" "3.272.0"
- "@aws-sdk/middleware-content-length" "3.272.0"
- "@aws-sdk/middleware-endpoint" "3.272.0"
- "@aws-sdk/middleware-host-header" "3.272.0"
- "@aws-sdk/middleware-logger" "3.272.0"
- "@aws-sdk/middleware-recursion-detection" "3.272.0"
- "@aws-sdk/middleware-retry" "3.272.0"
- "@aws-sdk/middleware-serde" "3.272.0"
- "@aws-sdk/middleware-stack" "3.272.0"
- "@aws-sdk/middleware-user-agent" "3.272.0"
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/node-http-handler" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/smithy-client" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/config-resolver" "3.289.0"
+ "@aws-sdk/fetch-http-handler" "3.289.0"
+ "@aws-sdk/hash-node" "3.289.0"
+ "@aws-sdk/invalid-dependency" "3.289.0"
+ "@aws-sdk/middleware-content-length" "3.289.0"
+ "@aws-sdk/middleware-endpoint" "3.289.0"
+ "@aws-sdk/middleware-host-header" "3.289.0"
+ "@aws-sdk/middleware-logger" "3.289.0"
+ "@aws-sdk/middleware-recursion-detection" "3.289.0"
+ "@aws-sdk/middleware-retry" "3.289.0"
+ "@aws-sdk/middleware-serde" "3.289.0"
+ "@aws-sdk/middleware-stack" "3.289.0"
+ "@aws-sdk/middleware-user-agent" "3.289.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/node-http-handler" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/smithy-client" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
"@aws-sdk/util-base64" "3.208.0"
"@aws-sdk/util-body-length-browser" "3.188.0"
"@aws-sdk/util-body-length-node" "3.208.0"
- "@aws-sdk/util-defaults-mode-browser" "3.272.0"
- "@aws-sdk/util-defaults-mode-node" "3.272.0"
- "@aws-sdk/util-endpoints" "3.272.0"
- "@aws-sdk/util-retry" "3.272.0"
- "@aws-sdk/util-user-agent-browser" "3.272.0"
- "@aws-sdk/util-user-agent-node" "3.272.0"
+ "@aws-sdk/util-defaults-mode-browser" "3.289.0"
+ "@aws-sdk/util-defaults-mode-node" "3.289.0"
+ "@aws-sdk/util-endpoints" "3.289.0"
+ "@aws-sdk/util-retry" "3.289.0"
+ "@aws-sdk/util-user-agent-browser" "3.289.0"
+ "@aws-sdk/util-user-agent-node" "3.289.0"
"@aws-sdk/util-utf8" "3.254.0"
tslib "^2.3.1"
-"@aws-sdk/client-sso@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.272.0.tgz#6dedf03e5c1d31ef745e72091868082b10c0bca5"
- integrity sha512-xn9a0IGONwQIARmngThoRhF1lLGjHAD67sUaShgIMaIMc6ipVYN6alWG1VuUpoUQ6iiwMEt0CHdfCyLyUV/fTA==
+"@aws-sdk/client-sso@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.289.0.tgz#a77f13b1de5923c0a3048e0e1548ceef09d49cab"
+ integrity sha512-GIpxPaEwqXC+P8wH+G4mIDnxYFJ+2SyYTrnoxb4OUH+gAkU6tybgvsv0fy+jsVD6GAWPdfU1AYk2ZjofdFiHeA==
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
- "@aws-sdk/config-resolver" "3.272.0"
- "@aws-sdk/fetch-http-handler" "3.272.0"
- "@aws-sdk/hash-node" "3.272.0"
- "@aws-sdk/invalid-dependency" "3.272.0"
- "@aws-sdk/middleware-content-length" "3.272.0"
- "@aws-sdk/middleware-endpoint" "3.272.0"
- "@aws-sdk/middleware-host-header" "3.272.0"
- "@aws-sdk/middleware-logger" "3.272.0"
- "@aws-sdk/middleware-recursion-detection" "3.272.0"
- "@aws-sdk/middleware-retry" "3.272.0"
- "@aws-sdk/middleware-serde" "3.272.0"
- "@aws-sdk/middleware-stack" "3.272.0"
- "@aws-sdk/middleware-user-agent" "3.272.0"
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/node-http-handler" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/smithy-client" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/config-resolver" "3.289.0"
+ "@aws-sdk/fetch-http-handler" "3.289.0"
+ "@aws-sdk/hash-node" "3.289.0"
+ "@aws-sdk/invalid-dependency" "3.289.0"
+ "@aws-sdk/middleware-content-length" "3.289.0"
+ "@aws-sdk/middleware-endpoint" "3.289.0"
+ "@aws-sdk/middleware-host-header" "3.289.0"
+ "@aws-sdk/middleware-logger" "3.289.0"
+ "@aws-sdk/middleware-recursion-detection" "3.289.0"
+ "@aws-sdk/middleware-retry" "3.289.0"
+ "@aws-sdk/middleware-serde" "3.289.0"
+ "@aws-sdk/middleware-stack" "3.289.0"
+ "@aws-sdk/middleware-user-agent" "3.289.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/node-http-handler" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/smithy-client" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
"@aws-sdk/util-base64" "3.208.0"
"@aws-sdk/util-body-length-browser" "3.188.0"
"@aws-sdk/util-body-length-node" "3.208.0"
- "@aws-sdk/util-defaults-mode-browser" "3.272.0"
- "@aws-sdk/util-defaults-mode-node" "3.272.0"
- "@aws-sdk/util-endpoints" "3.272.0"
- "@aws-sdk/util-retry" "3.272.0"
- "@aws-sdk/util-user-agent-browser" "3.272.0"
- "@aws-sdk/util-user-agent-node" "3.272.0"
+ "@aws-sdk/util-defaults-mode-browser" "3.289.0"
+ "@aws-sdk/util-defaults-mode-node" "3.289.0"
+ "@aws-sdk/util-endpoints" "3.289.0"
+ "@aws-sdk/util-retry" "3.289.0"
+ "@aws-sdk/util-user-agent-browser" "3.289.0"
+ "@aws-sdk/util-user-agent-node" "3.289.0"
"@aws-sdk/util-utf8" "3.254.0"
tslib "^2.3.1"
-"@aws-sdk/client-sts@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.272.0.tgz#a63993d53ca7243f8dadc715b539afdcfa482abf"
- integrity sha512-kigxCxURp3WupufGaL/LABMb7UQfzAQkKcj9royizL3ItJ0vw5kW/JFrPje5IW1mfLgdPF7PI9ShOjE0fCLTqA==
+"@aws-sdk/client-sts@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.289.0.tgz#4da58cfd24f6a974d7e07aae57753bf084637a51"
+ integrity sha512-n+8zDCzk0NvCIXX3MGS8RV/+/MkJso0jkqkPOgPcS8Kf7Zbjlx8FyeGQ5LS7HjhCDk+jExH/s9h1kd3sL1pHQA==
dependencies:
"@aws-crypto/sha256-browser" "3.0.0"
"@aws-crypto/sha256-js" "3.0.0"
- "@aws-sdk/config-resolver" "3.272.0"
- "@aws-sdk/credential-provider-node" "3.272.0"
- "@aws-sdk/fetch-http-handler" "3.272.0"
- "@aws-sdk/hash-node" "3.272.0"
- "@aws-sdk/invalid-dependency" "3.272.0"
- "@aws-sdk/middleware-content-length" "3.272.0"
- "@aws-sdk/middleware-endpoint" "3.272.0"
- "@aws-sdk/middleware-host-header" "3.272.0"
- "@aws-sdk/middleware-logger" "3.272.0"
- "@aws-sdk/middleware-recursion-detection" "3.272.0"
- "@aws-sdk/middleware-retry" "3.272.0"
- "@aws-sdk/middleware-sdk-sts" "3.272.0"
- "@aws-sdk/middleware-serde" "3.272.0"
- "@aws-sdk/middleware-signing" "3.272.0"
- "@aws-sdk/middleware-stack" "3.272.0"
- "@aws-sdk/middleware-user-agent" "3.272.0"
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/node-http-handler" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/smithy-client" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/config-resolver" "3.289.0"
+ "@aws-sdk/credential-provider-node" "3.289.0"
+ "@aws-sdk/fetch-http-handler" "3.289.0"
+ "@aws-sdk/hash-node" "3.289.0"
+ "@aws-sdk/invalid-dependency" "3.289.0"
+ "@aws-sdk/middleware-content-length" "3.289.0"
+ "@aws-sdk/middleware-endpoint" "3.289.0"
+ "@aws-sdk/middleware-host-header" "3.289.0"
+ "@aws-sdk/middleware-logger" "3.289.0"
+ "@aws-sdk/middleware-recursion-detection" "3.289.0"
+ "@aws-sdk/middleware-retry" "3.289.0"
+ "@aws-sdk/middleware-sdk-sts" "3.289.0"
+ "@aws-sdk/middleware-serde" "3.289.0"
+ "@aws-sdk/middleware-signing" "3.289.0"
+ "@aws-sdk/middleware-stack" "3.289.0"
+ "@aws-sdk/middleware-user-agent" "3.289.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/node-http-handler" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/smithy-client" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
"@aws-sdk/util-base64" "3.208.0"
"@aws-sdk/util-body-length-browser" "3.188.0"
"@aws-sdk/util-body-length-node" "3.208.0"
- "@aws-sdk/util-defaults-mode-browser" "3.272.0"
- "@aws-sdk/util-defaults-mode-node" "3.272.0"
- "@aws-sdk/util-endpoints" "3.272.0"
- "@aws-sdk/util-retry" "3.272.0"
- "@aws-sdk/util-user-agent-browser" "3.272.0"
- "@aws-sdk/util-user-agent-node" "3.272.0"
+ "@aws-sdk/util-defaults-mode-browser" "3.289.0"
+ "@aws-sdk/util-defaults-mode-node" "3.289.0"
+ "@aws-sdk/util-endpoints" "3.289.0"
+ "@aws-sdk/util-retry" "3.289.0"
+ "@aws-sdk/util-user-agent-browser" "3.289.0"
+ "@aws-sdk/util-user-agent-node" "3.289.0"
"@aws-sdk/util-utf8" "3.254.0"
- fast-xml-parser "4.0.11"
+ fast-xml-parser "4.1.2"
tslib "^2.3.1"
-"@aws-sdk/config-resolver@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.272.0.tgz#207af3c70b05c4d93c60fa60201c93dff78802ba"
- integrity sha512-Dr4CffRVNsOp3LRNdpvcH6XuSgXOSLblWliCy/5I86cNl567KVMxujVx6uPrdTXYs2h1rt3MNl6jQGnAiJeTbw==
+"@aws-sdk/config-resolver@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/config-resolver/-/config-resolver-3.289.0.tgz#a6f148afe9ba57fff5e1168c128adbda15378772"
+ integrity sha512-QYrBJeFJwx9wL73xMJgSTS6zY5SQh0tbZXpVlSZcNDuOufsu5zdcZZCOp0I20yGf8zxKX59u7O73OUlppkk+Wg==
dependencies:
- "@aws-sdk/signature-v4" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/signature-v4" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
"@aws-sdk/util-config-provider" "3.208.0"
- "@aws-sdk/util-middleware" "3.272.0"
+ "@aws-sdk/util-middleware" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-env@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.272.0.tgz#c647799806d2cf491b9b0d8d32682393caf74e20"
- integrity sha512-QI65NbLnKLYHyTYhXaaUrq6eVsCCrMUb05WDA7+TJkWkjXesovpjc8vUKgFiLSxmgKmb2uOhHNcDyObKMrYQFw==
+"@aws-sdk/credential-provider-env@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.289.0.tgz#4cbf2a0cf4b8d9c9d4438782c480b7a65918a3c1"
+ integrity sha512-h4yNEW2ZJATKVxL0Bvz/WWXUmBr+AhsTyjUNge734306lXNG5/FM7zYp2v6dSQWt02WwBXyfkP3lr+A0n4rHyA==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-imds@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.272.0.tgz#8e740961c2e1f9b93a467e8d5e836e359e18592c"
- integrity sha512-wwAfVY1jTFQEfxVfdYD5r5ieYGl+0g4nhekVxNMqE8E1JeRDd18OqiwAflzpgBIqxfqvCUkf+vl5JYyacMkNAQ==
+"@aws-sdk/credential-provider-imds@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-imds/-/credential-provider-imds-3.289.0.tgz#8cf6a5c612c8193105d5891ff5afde1fb98cdca2"
+ integrity sha512-SIl+iLQpDR6HA9CKTebui7NLop5GxnCkufbM3tbSqrQcPcEfYLOwXpu5gpKO2unQzRykCoyRVia1lr7Pc9Hgdg==
dependencies:
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-ini@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.272.0.tgz#86fe4faf38507fada22cbe6f422ebad8777e0172"
- integrity sha512-iE3CDzK5NcupHYjfYjBdY1JCy8NLEoRUsboEjG0i0gy3S3jVpDeVHX1dLVcL/slBFj6GiM7SoNV/UfKnJf3Gaw==
+"@aws-sdk/credential-provider-ini@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.289.0.tgz#99d1a5f3a0b92ff45af450c7240e47e5988c6178"
+ integrity sha512-kvNUn3v4FTRRiqCOXl46v51VTGOM76j5Szcrhkk9qeFW6zt4iFodp6tQ4ynDtDxYxOvjuEfm3ii1YN5nkI1uKA==
dependencies:
- "@aws-sdk/credential-provider-env" "3.272.0"
- "@aws-sdk/credential-provider-imds" "3.272.0"
- "@aws-sdk/credential-provider-process" "3.272.0"
- "@aws-sdk/credential-provider-sso" "3.272.0"
- "@aws-sdk/credential-provider-web-identity" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/credential-provider-env" "3.289.0"
+ "@aws-sdk/credential-provider-imds" "3.289.0"
+ "@aws-sdk/credential-provider-process" "3.289.0"
+ "@aws-sdk/credential-provider-sso" "3.289.0"
+ "@aws-sdk/credential-provider-web-identity" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-node@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.272.0.tgz#953f73468f87510f1dcd0480f6f17139b4b3c0bf"
- integrity sha512-FI8uvwM1IxiRSvbkdKv8DZG5vxU3ezaseTaB1fHWTxEUFb0pWIoHX9oeOKer9Fj31SOZTCNAaYFURbSRuZlm/w==
+"@aws-sdk/credential-provider-node@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.289.0.tgz#bf55caf0ce120f784614c5870f4308ba257ff38c"
+ integrity sha512-05CYPGnk5cDiOQDIaXNVibNOwQdI34MDiL17YkSfPv779A+uq4vqg/aBfL41BDJjr1gSGgyvVhlcUdBKnlp93Q==
dependencies:
- "@aws-sdk/credential-provider-env" "3.272.0"
- "@aws-sdk/credential-provider-imds" "3.272.0"
- "@aws-sdk/credential-provider-ini" "3.272.0"
- "@aws-sdk/credential-provider-process" "3.272.0"
- "@aws-sdk/credential-provider-sso" "3.272.0"
- "@aws-sdk/credential-provider-web-identity" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/credential-provider-env" "3.289.0"
+ "@aws-sdk/credential-provider-imds" "3.289.0"
+ "@aws-sdk/credential-provider-ini" "3.289.0"
+ "@aws-sdk/credential-provider-process" "3.289.0"
+ "@aws-sdk/credential-provider-sso" "3.289.0"
+ "@aws-sdk/credential-provider-web-identity" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-process@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.272.0.tgz#bd0c859554e705c085f0e2ad5dad7e1e43c967ad"
- integrity sha512-hiCAjWWm2PeBFp5cjkxqyam/XADjiS+e7GzwC34TbZn3LisS0uoweLojj9tD11NnnUhyhbLteUvu5+rotOLwrg==
+"@aws-sdk/credential-provider-process@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.289.0.tgz#ef91f39541a607dde73c3df81715d8f2b176991f"
+ integrity sha512-t39CJHj1/f2DcRbEUSJ1ixwDsgaElDpJPynn59MOdNnrSh5bYuYmkrum/GYXYSsk+HoSK21JvwgvjnrkA9WZKQ==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-sso@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.272.0.tgz#bd24f9b06088aed91c5d6aaddf3f7e7ab818afd7"
- integrity sha512-hwYaulyiU/7chKKFecxCeo0ls6Dxs7h+5EtoYcJJGvfpvCncyOZF35t00OAsCd3Wo7HkhhgfpGdb6dmvCNQAZQ==
+"@aws-sdk/credential-provider-sso@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.289.0.tgz#64bf7e3a2f017f5988174dd6193da6e8f187b1b6"
+ integrity sha512-8+DjOqj5JCpVdT4EJtdfis6OioAdiDKM1mvgDTG8R43MSThc+RGfzqaDJQdM+8+hzkYhxYfyI9XB0H+X3rDNsA==
dependencies:
- "@aws-sdk/client-sso" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/token-providers" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/client-sso" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/token-providers" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/credential-provider-web-identity@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.272.0.tgz#2a1d8f73654c2d50bf27c6355a550bc389d6057e"
- integrity sha512-ImrHMkcgneGa/HadHAQXPwOrX26sAKuB8qlMxZF/ZCM2B55u8deY+ZVkVuraeKb7YsahMGehPFOfRAF6mvFI5Q==
+"@aws-sdk/credential-provider-web-identity@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.289.0.tgz#14d9fa1e5f237abafc04533e34b9750565874b9a"
+ integrity sha512-jZ9hQvr0I7Z2DekDtZytViYn7zNNJG06N0CinAJzzvreAQ1I61rU7mhaWc05jhBSdeA3f82XoDAgxqY4xIh9pQ==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/fetch-http-handler@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.272.0.tgz#52ec2ba4ea25738a91db466a617bd7cc2bd6d2e9"
- integrity sha512-1Qhm9e0RbS1Xf4CZqUbQyUMkDLd7GrsRXWIvm9b86/vgeV8/WnjO3CMue9D51nYgcyQORhYXv6uVjAYCWbUExA==
+"@aws-sdk/fetch-http-handler@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/fetch-http-handler/-/fetch-http-handler-3.289.0.tgz#f09712c82d865423728539e26cbee20b91021e3c"
+ integrity sha512-tksh2GnDV1JaI+NO9x+pgyB3VNwjnUdtoMcFGmTDm1TrcPNj0FLX2hLiunlVG7fFMfGLXC2aco0sUra5/5US9Q==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/querystring-builder" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/querystring-builder" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
"@aws-sdk/util-base64" "3.208.0"
tslib "^2.3.1"
-"@aws-sdk/hash-node@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.272.0.tgz#a39d80fd118ad306f17191f0565ea4db88aa0563"
- integrity sha512-40dwND+iAm3VtPHPZu7/+CIdVJFk2s0cWZt1lOiMPMSXycSYJ45wMk7Lly3uoqRx0uWfFK5iT2OCv+fJi5jTng==
+"@aws-sdk/hash-node@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/hash-node/-/hash-node-3.289.0.tgz#f588be8b67762823d54e7814d174c3ee76127c62"
+ integrity sha512-fL7Pt4LU+tluHn0+BSIFVD2ZVJ5fuXvd1hQt4aTYrgkna1RR5v55Hdy2rNrp/syrkyE+Wv92S3hgZ7ZTBeXFZA==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
"@aws-sdk/util-buffer-from" "3.208.0"
"@aws-sdk/util-utf8" "3.254.0"
tslib "^2.3.1"
-"@aws-sdk/invalid-dependency@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.272.0.tgz#93b34dc0f78d0c44a4beae6dc75dde4801915f1c"
- integrity sha512-ysW6wbjl1Y78txHUQ/Tldj2Rg1BI7rpMO9B9xAF6yAX3mQ7t6SUPQG/ewOGvH2208NBIl3qP5e/hDf0Q6r/1iw==
+"@aws-sdk/invalid-dependency@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/invalid-dependency/-/invalid-dependency-3.289.0.tgz#29abc018752f92485c2aa07c6e4d48f676657726"
+ integrity sha512-VpXadvpqXFUA8gBH6TAAJzsKfEQ4IvsiD7d9b2B+jw1YtaPFTqEEuDjN6ngpad8PCPCNWl8CI6oBCdMOK+L48A==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
"@aws-sdk/is-array-buffer@3.201.0":
@@ -461,230 +461,230 @@
dependencies:
tslib "^2.3.1"
-"@aws-sdk/middleware-content-length@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.272.0.tgz#400532904c505d3478ddf5c8fe1d703692ea87e8"
- integrity sha512-sAbDZSTNmLX+UTGwlUHJBWy0QGQkiClpHwVFXACon+aG0ySLNeRKEVYs6NCPYldw4cj6hveLUn50cX44ukHErw==
+"@aws-sdk/middleware-content-length@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-content-length/-/middleware-content-length-3.289.0.tgz#86a8f77faa6dc228a030bdcc0fd35947be920f8a"
+ integrity sha512-D7vGeuaAzKiq0aFPwme1Xy4x69Jn4v0YJ3Xa4J+keNep0yZ9LfU5KSngqsxeTefCqS+2tdaArkBN2VdexmPagw==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-endpoint@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.272.0.tgz#3d10dff07eeb6239b39b2e2762b11d97f19e4a56"
- integrity sha512-Dk3JVjj7SxxoUKv3xGiOeBksvPtFhTDrVW75XJ98Ymv8gJH5L1sq4hIeJAHRKogGiRFq2J73mnZSlM9FVXEylg==
+"@aws-sdk/middleware-endpoint@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-endpoint/-/middleware-endpoint-3.289.0.tgz#99b6c2e064e693c62873dad62c78c9bf551128d6"
+ integrity sha512-nxaQFOG1IurwCHWP22RxgTFZdILsdBg6wbg4GeFpNBtE3bi0zIUYKrUhpdRr/pZyGAboD1oD9iQtxuGb/M6f+w==
dependencies:
- "@aws-sdk/middleware-serde" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/signature-v4" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/url-parser" "3.272.0"
+ "@aws-sdk/middleware-serde" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/signature-v4" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/url-parser" "3.289.0"
"@aws-sdk/util-config-provider" "3.208.0"
- "@aws-sdk/util-middleware" "3.272.0"
+ "@aws-sdk/util-middleware" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-host-header@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.272.0.tgz#c47b8d35be6d5fbc548378b4694bf705adaae74d"
- integrity sha512-Q8K7bMMFZnioUXpxn57HIt4p+I63XaNAawMLIZ5B4F2piyukbQeM9q2XVKMGwqLvijHR8CyP5nHrtKqVuINogQ==
+"@aws-sdk/middleware-host-header@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.289.0.tgz#0fe22ed1930d600844666ea80ef2f6717c52bd57"
+ integrity sha512-yFBOKvKBnITO08JCx+65vXPe9Uo4gZuth/ka9v5swa4wtV8AP+kkOwFrNxSi2iAFLJ4Mg21vGQceeL0bErF6KQ==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-logger@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.272.0.tgz#372e2514b17b826a2b40562667e2543125980705"
- integrity sha512-u2SQ0hWrFwxbxxYMG5uMEgf01pQY5jauK/LYWgGIvuCmFgiyRQQP3oN7kkmsxnS9MWmNmhbyQguX2NY02s5e9w==
+"@aws-sdk/middleware-logger@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.289.0.tgz#fd6de1ebcef0ff3fffe4f407162542bdfb9d7065"
+ integrity sha512-c5W7AlOdoyTXRoNl2yOVkhbTjp8tX0z65GDb3+/1yYcv+GRtz67WMZscWMQJwEfdCLdDE2GtBe+t2xyFGnmJvA==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-recursion-detection@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.272.0.tgz#1e6ddc66a11fa2bfd2a59607d2ac5603be6d1072"
- integrity sha512-Gp/eKWeUWVNiiBdmUM2qLkBv+VLSJKoWAO+aKmyxxwjjmWhE0FrfA1NQ1a3g+NGMhRbAfQdaYswRAKsul70ISg==
+"@aws-sdk/middleware-recursion-detection@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.289.0.tgz#8d185c2bb9f80215b51f3c1700914f04c4c84fe9"
+ integrity sha512-r2NrfnTG0UZRXeFjoyapAake7b1rUo6SC52/UV4Pdm8cHoYMmljnaGLjiAfzt6vWv6cSVCJq1r28Ne4slAoMAg==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-retry@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.272.0.tgz#a38adcb9eb478246de3f3398bb8fd0a7682462eb"
- integrity sha512-pCGvHM7C76VbO/dFerH+Vwf7tGv7j+e+eGrvhQ35mRghCtfIou/WMfTZlD1TNee93crrAQQVZKjtW3dMB3WCzg==
+"@aws-sdk/middleware-retry@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-retry/-/middleware-retry-3.289.0.tgz#68534fbd94c40feb11a22b134285db9089b47336"
+ integrity sha512-Su+iGv5mrFjVCXJmjohX00o3HzkwnhY0TDhIltgolB6ZfOqy3Dfopjj21OWtqY9VYCUiLGC4KRfeb2feyrz5BA==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/service-error-classification" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/util-middleware" "3.272.0"
- "@aws-sdk/util-retry" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/service-error-classification" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/util-middleware" "3.289.0"
+ "@aws-sdk/util-retry" "3.289.0"
tslib "^2.3.1"
uuid "^8.3.2"
-"@aws-sdk/middleware-sdk-sts@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.272.0.tgz#aa437331f958e3af3b4bec7951256d0f34a8d431"
- integrity sha512-VvYPg7LrDIjUOWueSzo2wBzcNG7dw+cmzV6zAKaLxf0RC5jeAP4hE0OzDiiZfDrjNghEzgq/V+0NO+LewqYL9Q==
+"@aws-sdk/middleware-sdk-sts@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-sdk-sts/-/middleware-sdk-sts-3.289.0.tgz#aa5b8a075aea6c1af5bbb292a26d085985373ad6"
+ integrity sha512-9WzUVPEqJcvggGCk9JHXnwhj7fjuMXE/JM3gx7eMSStJCcK+3BARZ1RZnggUN4vN9iTSzdA+r0OpC1XnUGKB2g==
dependencies:
- "@aws-sdk/middleware-signing" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/signature-v4" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/middleware-signing" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/signature-v4" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-serde@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.272.0.tgz#9cb23aaa93fbf404fdb8e01b514b36b2d6fb5bc8"
- integrity sha512-kW1uOxgPSwtXPB5rm3QLdWomu42lkYpQL94tM1BjyFOWmBLO2lQhk5a7Dw6HkTozT9a+vxtscLChRa6KZe61Hw==
+"@aws-sdk/middleware-serde@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-serde/-/middleware-serde-3.289.0.tgz#095ed906dd0c3ca9afe0bd97aeada2f64ebd30e7"
+ integrity sha512-pygC+LsEBVAxOzfoxA9jgvqfO1PLivh8s2Yr/aNQOwx49fmTHMvPwRYUGDV38Du6bRYcKI6nxYqkbJFkQkRESQ==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-signing@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.272.0.tgz#ce632b547d5a091b4bda9d65cb4745445ab5d237"
- integrity sha512-4LChFK4VAR91X+dupqM8fQqYhFGE0G4Bf9rQlVTgGSbi2KUOmpqXzH0/WKE228nKuEhmH8+Qd2VPSAE2JcyAUA==
+"@aws-sdk/middleware-signing@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-signing/-/middleware-signing-3.289.0.tgz#e262bea9bc1e61d52d7fbcf81c329a07fd60e783"
+ integrity sha512-9SLATNvibxg4hpr4ldU18LwB6AVzovONWeJLt49FKISz7ZwGF6WVJYUMWeScj4+Z51Gozi7+pUIaFn7i6N3UbA==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/signature-v4" "3.272.0"
- "@aws-sdk/types" "3.272.0"
- "@aws-sdk/util-middleware" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/signature-v4" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
+ "@aws-sdk/util-middleware" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/middleware-stack@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.272.0.tgz#e62048e47b8ce2ff71d6d32234b6c0be70b0b008"
- integrity sha512-jhwhknnPBGhfXAGV5GXUWfEhDFoP/DN8MPCO2yC5OAxyp6oVJ8lTPLkZYMTW5VL0c0eG44dXpF4Ib01V+PlDrQ==
+"@aws-sdk/middleware-stack@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-stack/-/middleware-stack-3.289.0.tgz#e08558014f45622783e76c2d7cf85191434101b3"
+ integrity sha512-3rWx+UkV//dv/cLIrXmzIa+FZcn6n76JevGHYCTReiRpcvv+xECxgXH2crMYtzbu05WdxGYD6P0IP5tMwH0yXA==
dependencies:
tslib "^2.3.1"
-"@aws-sdk/middleware-user-agent@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.272.0.tgz#ea49970c9dbbe4e8fce21763e2ff0d7acab057c2"
- integrity sha512-Qy7/0fsDJxY5l0bEk7WKDfqb4Os/sCAgFR2zEvrhDtbkhYPf72ysvg/nRUTncmCbo8tOok4SJii2myk8KMfjjw==
+"@aws-sdk/middleware-user-agent@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.289.0.tgz#5650f57906b0fff32f739e47425c603f987aef11"
+ integrity sha512-XPhB9mgko66BouyxA+7z7SjUaNHyr58Xe/OB8GII5R/JiR3A/lpc8+jm9gEEpjEI/HpF8jLFDnTMbgabVAHOeA==
dependencies:
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/node-config-provider@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.272.0.tgz#7797a8f500593b1a7b91fc70bcd7a7245afd9a61"
- integrity sha512-YYCIBh9g1EQo7hm2l22HX5Yr9RoPQ2RCvhzKvF1n1e8t1QH4iObQrYUtqHG4khcm64Cft8C5MwZmgzHbya5Z6Q==
+"@aws-sdk/node-config-provider@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/node-config-provider/-/node-config-provider-3.289.0.tgz#815a760a9ed6c4e5b5cd7e8bf62fa7d7dd2fe6fb"
+ integrity sha512-rR41c3Y7MYEP8TG9X1whHyrXEXOZzi4blSDqeJflwtNt3r3HvErGZiNBdVv368ycPPuu1YRSqTkgOYNCv02vlw==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/node-http-handler@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.272.0.tgz#732c7010310da292d4a6c30f915078e1792d029e"
- integrity sha512-VrW9PjhhngeyYp4yGYPe5S0vgZH6NwU3Po9xAgayUeE37Inr7LS1YteFMHdpgsUUeNXnh7d06CXqHo1XjtqOKA==
+"@aws-sdk/node-http-handler@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/node-http-handler/-/node-http-handler-3.289.0.tgz#b1a8fc4bce4c257e8a15d7ecdebc25bca2afafb2"
+ integrity sha512-zKknSaOY2GNmqH/eoZndmQWoEKhYPV0qRZtAMxuS3DVI5fipBipNzbVBaXrHRjxARx7/VLWnvNArchRoHfOlmw==
dependencies:
- "@aws-sdk/abort-controller" "3.272.0"
- "@aws-sdk/protocol-http" "3.272.0"
- "@aws-sdk/querystring-builder" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/abort-controller" "3.289.0"
+ "@aws-sdk/protocol-http" "3.289.0"
+ "@aws-sdk/querystring-builder" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/property-provider@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.272.0.tgz#a626604303acfe83c1a1471f99872dee5641c1a4"
- integrity sha512-V1pZTaH5eqpAt8O8CzbItHhOtzIfFuWymvwZFkAtwKuaHpnl7jjrTouV482zoq8AD/fF+VVSshwBKYA7bhidIw==
+"@aws-sdk/property-provider@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/property-provider/-/property-provider-3.289.0.tgz#ff95153868c94b8def757a7a8d9eeb8603a1c874"
+ integrity sha512-Raf4lTWPTmEGFV7Lkbfet2n/4Ybz5vQiiU45l56kgIQA88mLUuE4dshgNsM0Zb2rflsTaiN1JR2+RS/8lNtI8A==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/protocol-http@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.272.0.tgz#11090fed5d1e20f9f8e97b479e1d6fb2247686f6"
- integrity sha512-4JQ54v5Yn08jspNDeHo45CaSn1CvTJqS1Ywgr79eU6jBExtguOWv6LNtwVSBD9X37v88iqaxt8iu1Z3pZZAJeg==
+"@aws-sdk/protocol-http@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/protocol-http/-/protocol-http-3.289.0.tgz#ebaa84ebd9ac1129459082c0990cd37d5355f2b1"
+ integrity sha512-/2jOQ3MJZx1xk6BHEOW47ItGo1tgA9cP9a2saYneon05VIV6OuYefO5pG2G0nPnImTbff++N7aioXe5XKrnorw==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/querystring-builder@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.272.0.tgz#788ca037e21942bb039c920c5dfa4d412b84ea27"
- integrity sha512-ndo++7GkdCj5tBXE6rGcITpSpZS4PfyV38wntGYAlj9liL1omk3bLZRY6uzqqkJpVHqbg2fD7O2qHNItzZgqhw==
+"@aws-sdk/querystring-builder@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-builder/-/querystring-builder-3.289.0.tgz#75ddef075862746cbf6d92f71bb8715cedeef61f"
+ integrity sha512-llJCS8mAJfBYBjkKeriRmBuDr2jIozrMWhJOkz95SQGFsx1sKBPQMMOV6zunwhQux8bjtjf5wYiR1TM2jNUKqQ==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
"@aws-sdk/util-uri-escape" "3.201.0"
tslib "^2.3.1"
-"@aws-sdk/querystring-parser@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.272.0.tgz#68db5798d10a353c35f62bf34cfcebaa53580e51"
- integrity sha512-5oS4/9n6N1LZW9tI3qq/0GnCuWoOXRgcHVB+AJLRBvDbEe+GI+C/xK1tKLsfpDNgsQJHc4IPQoIt4megyZ/1+A==
+"@aws-sdk/querystring-parser@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/querystring-parser/-/querystring-parser-3.289.0.tgz#0aa11faa53203a1cfc30d3e0c48d70284f378ec2"
+ integrity sha512-84zXKXIYtnTCrez/gGZIGuqfUJezzaOMm7BQwnOnq/sN21ou63jF3Q+tIMhLO/EvDcvmxEOlUXN1kfMQcjEjSw==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/service-error-classification@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.272.0.tgz#cf19b82c2ab1e63bb03793c68e6a2b2e7cbd8382"
- integrity sha512-REoltM1LK9byyIufLqx9znhSolPcHQgVHIA2S0zu5sdt5qER4OubkLAXuo4MBbisUTmh8VOOvIyUb5ijZCXq1w==
+"@aws-sdk/service-error-classification@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/service-error-classification/-/service-error-classification-3.289.0.tgz#25c513c099126414ed2e8489290b3a4f0e0f2c4b"
+ integrity sha512-+d1Vlb45Bs2gbTmXpRCGQrX4AQDETjA5sx1zLvq1NZGSnTX6LdroYPtXu3dRWJwDHHQpCMN/XfFN8jTw0IzBOg==
-"@aws-sdk/shared-ini-file-loader@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.272.0.tgz#f924ec6e7c183ec749d42e204d8f0d0b7c58fa25"
- integrity sha512-lzFPohp5sy2XvwFjZIzLVCRpC0i5cwBiaXmFzXYQZJm6FSCszHO4ax+m9yrtlyVFF/2YPWl+/bzNthy4aJtseA==
+"@aws-sdk/shared-ini-file-loader@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/shared-ini-file-loader/-/shared-ini-file-loader-3.289.0.tgz#ac3eb207374bef778638c75cc65233d9d9a64dae"
+ integrity sha512-XG9Pfn3itf3Z0p6nY6UuMVMhzZb+oX7L28oyby8REl8BAwfPkcziLxXlZsBHf6KcgYDG1R6z945hvIwZhJbjvA==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/signature-v4@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.272.0.tgz#751895d68c1d1122f1e9a0148146dbdf9db023ae"
- integrity sha512-pWxnHG1NqJWMwlhJ6NHNiUikOL00DHROmxah6krJPMPq4I3am2KY2Rs/8ouWhnEXKaHAv4EQhSALJ+7Mq5S4/A==
+"@aws-sdk/signature-v4@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/signature-v4/-/signature-v4-3.289.0.tgz#be2f2533a52e13733e7ae88fbf083ec6357cc47a"
+ integrity sha512-IQyYHx3zp7PHxFA17YDb6WVx8ejXDxrsnKspFXgZQyoZOPfReqWQs32dcJYXff/IdSzxjwOpwBFbmIt2vbdKnQ==
dependencies:
"@aws-sdk/is-array-buffer" "3.201.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
"@aws-sdk/util-hex-encoding" "3.201.0"
- "@aws-sdk/util-middleware" "3.272.0"
+ "@aws-sdk/util-middleware" "3.289.0"
"@aws-sdk/util-uri-escape" "3.201.0"
"@aws-sdk/util-utf8" "3.254.0"
tslib "^2.3.1"
-"@aws-sdk/smithy-client@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.272.0.tgz#cb6fe3d3ec95e10463c8ff6f1c59c55196bd19c1"
- integrity sha512-pvdleJ3kaRvyRw2pIZnqL85ZlWBOZrPKmR9I69GCvlyrfdjRBhbSjIEZ+sdhZudw0vdHxq25AGoLUXhofVLf5Q==
+"@aws-sdk/smithy-client@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/smithy-client/-/smithy-client-3.289.0.tgz#d9ff0e50cb311662c8e4029791cfef2220d00b0a"
+ integrity sha512-miPMdnv4Ivv8RN65LJ9dxzkQNHn9Tp9wzZJXwBcPqGdXyRlkWSuIOIIhhAqQoV9R9ByeshnCWBpwqlITIjNPVw==
dependencies:
- "@aws-sdk/middleware-stack" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/middleware-stack" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/token-providers@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.272.0.tgz#9a6a0347a8417be4cd1930eac37ca1fb3e9da5b4"
- integrity sha512-0GISJ4IKN2rXvbSddB775VjBGSKhYIGQnAdMqbvxi9LB6pSvVxcH9aIL28G0spiuL+dy3yGQZ8RlJPAyP9JW9A==
+"@aws-sdk/token-providers@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.289.0.tgz#ecfaa3462966c77508a64b3498319e2bfcbc4476"
+ integrity sha512-fzvGIfJNoLR5g24ok8cRwc9AMLXoEOyfi+eHocAF6eyfe0NWlQtpsmLe7XXx5I9yZ51lclzV49rEz9ynp243RA==
dependencies:
- "@aws-sdk/client-sso-oidc" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/shared-ini-file-loader" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/client-sso-oidc" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/shared-ini-file-loader" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/types@3.272.0", "@aws-sdk/types@^3.222.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.272.0.tgz#83670e4009c2e72f1fdf55816c55c9f8b5935e0a"
- integrity sha512-MmmL6vxMGP5Bsi+4wRx4mxYlU/LX6M0noOXrDh/x5FfG7/4ZOar/nDxqDadhJtNM88cuWVHZWY59P54JzkGWmA==
+"@aws-sdk/types@3.289.0", "@aws-sdk/types@^3.222.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.289.0.tgz#c1042bcefa21e90e754ba665094599fa8a7f35f8"
+ integrity sha512-wwUC+VwoNlEkgDzK/aJG3+zeMcYRcYFQV4mbZaicYdp3v8hmkUkJUhyxuZYl/FmY46WG+DYv+/Y3NilgfsE+Wg==
dependencies:
tslib "^2.3.1"
-"@aws-sdk/url-parser@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.272.0.tgz#1a21abb8815ccc2c1344a3dfab0343f4e3eff4d3"
- integrity sha512-vX/Tx02PlnQ/Kgtf5TnrNDHPNbY+amLZjW0Z1d9vzAvSZhQ4i9Y18yxoRDIaDTCNVRDjdhV8iuctW+05PB5JtQ==
+"@aws-sdk/url-parser@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/url-parser/-/url-parser-3.289.0.tgz#d2320e6174cc883abe2f03a27dcf918c40e0c5f0"
+ integrity sha512-rbtW3O6UBX+eWR/+UiCDNFUVwN8hp82JPy+NGv3NeOvRjBsxkKmcH4UJTHDIeT+suqTDNEdV5nz438u3dHdHrQ==
dependencies:
- "@aws-sdk/querystring-parser" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/querystring-parser" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
"@aws-sdk/util-base64@3.208.0":
@@ -724,34 +724,34 @@
dependencies:
tslib "^2.3.1"
-"@aws-sdk/util-defaults-mode-browser@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.272.0.tgz#1e66d738315a2e8c7a947dcb2042d6547885db83"
- integrity sha512-W8ZVJSZRuUBg8l0JEZzUc+9fKlthVp/cdE+pFeF8ArhZelOLCiaeCrMaZAeJusaFzIpa6cmOYQAjtSMVyrwRtg==
+"@aws-sdk/util-defaults-mode-browser@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-browser/-/util-defaults-mode-browser-3.289.0.tgz#8f1f5e6926e18ba6f8a6c22d237e82649aca650c"
+ integrity sha512-sYrDwjX3s54cvGq69PJpP2vDpJ5BJXhg2KEHbK92Qr2AUqMUgidwZCw4oBaIqKDXcPIrjmhod31s3tTfYmtTMQ==
dependencies:
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
bowser "^2.11.0"
tslib "^2.3.1"
-"@aws-sdk/util-defaults-mode-node@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.272.0.tgz#1a35845125a665480b6ff379b98aa4c1fef2cc3a"
- integrity sha512-U0NTcbMw6KFk7uz/avBmfxQSTREEiX6JDMH68oN/3ux4AICd2I4jHyxnloSWGuiER1FxZf1dEJ8ZTwy8Ibl21Q==
+"@aws-sdk/util-defaults-mode-node@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-defaults-mode-node/-/util-defaults-mode-node-3.289.0.tgz#1badaf2383f5de055e9a23fce5151b9eb31f94a2"
+ integrity sha512-PsP40+9peN7kpEmQ2GhEAGwUwD9F/R/BI/1kzjW0nbBsMrTnkUnlZlaitwpBX/OWNV/YZTdVAOvD50j/ACyXlg==
dependencies:
- "@aws-sdk/config-resolver" "3.272.0"
- "@aws-sdk/credential-provider-imds" "3.272.0"
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/property-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/config-resolver" "3.289.0"
+ "@aws-sdk/credential-provider-imds" "3.289.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/property-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
-"@aws-sdk/util-endpoints@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.272.0.tgz#4e4c849708634c3dd840a11abaacb02c89db46d3"
- integrity sha512-c4MPUaJt2G6gGpoiwIOqDfUa98c1J63RpYvf/spQEKOtC/tF5Gfqlxuq8FnAl5lHnrqj1B9ZXLLxFhHtDR0IiQ==
+"@aws-sdk/util-endpoints@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.289.0.tgz#556add88acaa0e77c2c8c356c876ea215ac60211"
+ integrity sha512-PmsgqL9jdNTz3p0eW83nZZGcngAdoIWidXCc32G5tIIYvJutdgkiObAaydtXaMgk5CRvjenngFf6Zg9JyVHOLQ==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
"@aws-sdk/util-hex-encoding@3.201.0":
@@ -768,19 +768,19 @@
dependencies:
tslib "^2.3.1"
-"@aws-sdk/util-middleware@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.272.0.tgz#ed7d732a34659b07f949e2de39cde66271a3c632"
- integrity sha512-Abw8m30arbwxqmeMMha5J11ESpHUNmCeSqSzE8/C4B8jZQtHY4kq7f+upzcNIQ11lsd+uzBEzNG3+dDRi0XOJQ==
+"@aws-sdk/util-middleware@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-middleware/-/util-middleware-3.289.0.tgz#b8f2c9a08c23ed064054a19640d5a1c1911cefce"
+ integrity sha512-hw3WHQU9Wk7a1H3x+JhwMA4ECCleeuNlob3fXSYJmXgvZyuWfpMYZi4iSkqoWGFAXYpAtZZLIu45iIcd7F296g==
dependencies:
tslib "^2.3.1"
-"@aws-sdk/util-retry@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-retry/-/util-retry-3.272.0.tgz#049f777d4a8f9fd7b7ed02e116d3a23ceb34f128"
- integrity sha512-Ngha5414LR4gRHURVKC9ZYXsEJhMkm+SJ+44wlzOhavglfdcKKPUsibz5cKY1jpUV7oKECwaxHWpBB8r6h+hOg==
+"@aws-sdk/util-retry@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-retry/-/util-retry-3.289.0.tgz#fb800797cf9908a8346311bc00dbb5c032e702e4"
+ integrity sha512-noFn++ZKH11ExTBqUU/b9wsOjqxYlDnN/8xq+9oCsyBnEZztVgM/AM3WP5qBPRskk1WzDprID5fb5V87113Uug==
dependencies:
- "@aws-sdk/service-error-classification" "3.272.0"
+ "@aws-sdk/service-error-classification" "3.289.0"
tslib "^2.3.1"
"@aws-sdk/util-uri-escape@3.201.0":
@@ -790,22 +790,22 @@
dependencies:
tslib "^2.3.1"
-"@aws-sdk/util-user-agent-browser@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.272.0.tgz#9ff8834d38b2178d72cc5c63ba3e089cc1b9a9ae"
- integrity sha512-Lp5QX5bH6uuwBlIdr7w7OAcAI50ttyskb++yUr9i+SPvj6RI2dsfIBaK4mDg1qUdM5LeUdvIyqwj3XHjFKAAvA==
+"@aws-sdk/util-user-agent-browser@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.289.0.tgz#90dfb622d3f707d8cde9fb25c4bd548930821657"
+ integrity sha512-BDXYgNzzz2iNPTkl9MQf7pT4G80V6O6ICwJyH93a5EEdljl7oPrt8i4MS5S0BDAWx58LqjWtVw98GOZfy5BYhw==
dependencies:
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/types" "3.289.0"
bowser "^2.11.0"
tslib "^2.3.1"
-"@aws-sdk/util-user-agent-node@3.272.0":
- version "3.272.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.272.0.tgz#8e8c85d8c3ac4471a309589d91094be14a4260df"
- integrity sha512-ljK+R3l+Q1LIHrcR+Knhk0rmcSkfFadZ8V+crEGpABf/QUQRg7NkZMsoe814tfBO5F7tMxo8wwwSdaVNNHtoRA==
+"@aws-sdk/util-user-agent-node@3.289.0":
+ version "3.289.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.289.0.tgz#048f86cf5dd4822f703aaac5f6e5adbf6cf6175f"
+ integrity sha512-f32g9KS7pwO6FQ9N1CtqQPIS6jhvwv/y0+NHNoo9zLTBH0jol3+C2ELIE3N1wB6xvwhsdPqR3WuOiNiCiv8YAQ==
dependencies:
- "@aws-sdk/node-config-provider" "3.272.0"
- "@aws-sdk/types" "3.272.0"
+ "@aws-sdk/node-config-provider" "3.289.0"
+ "@aws-sdk/types" "3.289.0"
tslib "^2.3.1"
"@aws-sdk/util-utf8-browser@^3.0.0":
@@ -8833,10 +8833,10 @@ fast-url-parser@^1.1.3:
dependencies:
punycode "^1.3.2"
-fast-xml-parser@4.0.11:
- version "4.0.11"
- resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.0.11.tgz#42332a9aca544520631c8919e6ea871c0185a985"
- integrity sha512-4aUg3aNRR/WjQAcpceODG1C3x3lFANXRo8+1biqfieHmg9pyMt7qB4lQV/Ta6sJCTbA5vfD8fnA8S54JATiFUA==
+fast-xml-parser@4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-4.1.2.tgz#5a98c18238d28a57bbdfa9fe4cda01211fff8f4a"
+ integrity sha512-CDYeykkle1LiA/uqQyNwYpFbyF6Axec6YapmpUP+/RHWIoR1zKjocdvNaTsxCxZzQ6v9MLXaSYm9Qq0thv0DHg==
dependencies:
strnum "^1.0.5"
From f96b4e9eb7529dcd503c118fe5aa83a6fb6530c8 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Mon, 13 Mar 2023 05:14:45 +0000
Subject: [PATCH 0121/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/react-hotkeys-hook-4.3.7 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index e8e7cde6bad..a4449aef29c 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -249,7 +249,7 @@ dev:
'react': &react '18.2.0'
'react-copy-to-clipboard': &reactCopyToClipboard '5.1.0'
'react-dom': *react
- 'react-hotkeys-hook': &reactHotkeysHook '4.3.2'
+ 'react-hotkeys-hook': &reactHotkeysHook '4.3.7'
'react-instantsearch-dom': &reactInstantsearchDom '6.39.0'
'react-markdown': &reactMarkdown '8.0.5'
'react-swipeable': &reactSwipeable '7.0.0'
From 713203756497147978257eae91b52aaa5235a61b Mon Sep 17 00:00:00 2001
From: github-actions
Date: Mon, 13 Mar 2023 05:16:28 +0000
Subject: [PATCH 0122/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/aws-sdk/client-sesv2-3.289.0 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index e8e7cde6bad..521d3dc52ad 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -206,7 +206,7 @@ yuri:
backend:
_:
- '@aws-sdk/client-sesv2': '3.272.0'
+ '@aws-sdk/client-sesv2': '3.289.0'
'@prisma/client': &prisma '4.10.1'
'bcryptjs': '2.4.3'
'cors': '2.8.5'
From 49acedb983815a6812d142ed906acb79c5ad42b0 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Mar 2023 05:15:21 +0000
Subject: [PATCH 0123/1524] chore(deps-dev): bump prisma from 4.10.1 to 4.11.0
Bumps [prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli) from 4.10.1 to 4.11.0.
- [Release notes](https://github.com/prisma/prisma/releases)
- [Commits](https://github.com/prisma/prisma/commits/4.11.0/packages/cli)
---
updated-dependencies:
- dependency-name: prisma
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/backend/package.json | 2 +-
yarn.lock | 18 +++++++++---------
2 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/sites/backend/package.json b/sites/backend/package.json
index c60f894b1d6..2cbf2617aee 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -53,7 +53,7 @@
"mocha": "10.0.0",
"mocha-steps": "1.3.0",
"nodemon": "2.0.21",
- "prisma": "4.10.1"
+ "prisma": "4.11.0"
},
"engines": {
"node": ">=16.0.0",
diff --git a/yarn.lock b/yarn.lock
index 9e2a0f3895e..8c98a6df342 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3659,10 +3659,10 @@
resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19.tgz#312359d9d00e39e323136d0270876293d315658e"
integrity sha512-tsjTho7laDhf9EJ9EnDxAPEf7yrigSMDhniXeU4YoWc7azHAs4GPxRi2P9LTFonmHkJLMOLjR77J1oIP8Ife1w==
-"@prisma/engines@4.10.1":
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/@prisma/engines/-/engines-4.10.1.tgz#c7062747f254e5d5fce98a8cae566c25f9f29fb2"
- integrity sha512-B3tcTxjx196nuAu1GOTKO9cGPUgTFHYRdkPkTS4m5ptb2cejyBlH9X7GOfSt3xlI7p4zAJDshJP4JJivCg9ouA==
+"@prisma/engines@4.11.0":
+ version "4.11.0"
+ resolved "https://registry.yarnpkg.com/@prisma/engines/-/engines-4.11.0.tgz#c99749bfe20f58e8f4d2b5e04fee0785eba440e1"
+ integrity sha512-0AEBi2HXGV02cf6ASsBPhfsVIbVSDC9nbQed4iiY5eHttW9ZtMxHThuKZE1pnESbr8HRdgmFSa/Kn4OSNYuibg==
"@resvg/resvg-js-android-arm-eabi@2.4.1":
version "2.4.1"
@@ -15623,12 +15623,12 @@ pretty@^2.0.0:
extend-shallow "^2.0.1"
js-beautify "^1.6.12"
-prisma@4.10.1:
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/prisma/-/prisma-4.10.1.tgz#88084695d7b364ae6bebf93d5006f84439c4e7d1"
- integrity sha512-0jDxgg+DruB1kHVNlcspXQB9au62IFfVg9drkhzXudszHNUAQn0lVuu+T8np0uC2z1nKD5S3qPeCyR8u5YFLnA==
+prisma@4.11.0:
+ version "4.11.0"
+ resolved "https://registry.yarnpkg.com/prisma/-/prisma-4.11.0.tgz#9695ba4129a43eab3e76b5f7a033c6c020377725"
+ integrity sha512-4zZmBXssPUEiX+GeL0MUq/Yyie4ltiKmGu7jCJFnYMamNrrulTBc+D+QwAQSJ01tyzeGHlD13kOnqPwRipnlNw==
dependencies:
- "@prisma/engines" "4.10.1"
+ "@prisma/engines" "4.11.0"
prismjs@~1.27.0:
version "1.27.0"
From 09243af1b6653962493e6ae07fb7c23e9dad1ec3 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Mar 2023 05:18:00 +0000
Subject: [PATCH 0124/1524] chore(deps): bump @bugsnag/js from 7.18.0 to 7.20.0
Bumps [@bugsnag/js](https://github.com/bugsnag/bugsnag-js) from 7.18.0 to 7.20.0.
- [Release notes](https://github.com/bugsnag/bugsnag-js/releases)
- [Changelog](https://github.com/bugsnag/bugsnag-js/blob/next/CHANGELOG.md)
- [Commits](https://github.com/bugsnag/bugsnag-js/compare/v7.18.0...v7.20.0)
---
updated-dependencies:
- dependency-name: "@bugsnag/js"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/org/package.json | 2 +-
yarn.lock | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/sites/org/package.json b/sites/org/package.json
index c7a8ced6223..e27374f9d15 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -26,7 +26,7 @@
},
"peerDependencies": {},
"dependencies": {
- "@bugsnag/js": "7.18.0",
+ "@bugsnag/js": "7.20.0",
"@bugsnag/plugin-react": "7.18.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/mdx": "2.3.0",
diff --git a/yarn.lock b/yarn.lock
index 9e2a0f3895e..8e10f36264f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2073,7 +2073,7 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@bugsnag/browser@^7.18.0":
+"@bugsnag/browser@^7.20.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@bugsnag/browser/-/browser-7.20.0.tgz#1c18d7f78bb605cc85b005138f0f6a34793d0edc"
integrity sha512-LzZWI6q5cWYQSXvfJDcSl287d2xXESVn0L20lK+K5nwo/jXcK9IVZr9L+CYZ40HVXaC9jOmQbqZ18hsbO2QNIw==
@@ -2096,15 +2096,15 @@
resolved "https://registry.yarnpkg.com/@bugsnag/cuid/-/cuid-3.0.1.tgz#ed05265d17ecca8c93e5898a1b4ddeed52d48693"
integrity sha512-ZWOywEsXGWMBb9PULGGbP2S/mUDp30ZjaozrOy/pv2xyFoCFiCdk5PB2HA3muH4W/ppb9pXr3b5f7al74qZ5sg==
-"@bugsnag/js@7.18.0":
- version "7.18.0"
- resolved "https://registry.yarnpkg.com/@bugsnag/js/-/js-7.18.0.tgz#48261838a893a5e452f09ea75f27ad7ad964f199"
- integrity sha512-engv7itP6E5VcqapikA/ZPgnnImxZLMRZMyu14dgld/RCjCm3XFLhGcscnN8jJkTmp366e5Xqo8Lq7y9aI6Yhw==
+"@bugsnag/js@7.20.0":
+ version "7.20.0"
+ resolved "https://registry.yarnpkg.com/@bugsnag/js/-/js-7.20.0.tgz#a526d074e2d2719d290ebb3479ec4b9e26dbd164"
+ integrity sha512-lhUUSOveE8fP10RagAINqBmuH+eoOpyUOiTN1WRkjHUevWG0LZjRRUWEGN3AA+ZyTphmC6ljd2qE3/64qfOSGQ==
dependencies:
- "@bugsnag/browser" "^7.18.0"
- "@bugsnag/node" "^7.18.0"
+ "@bugsnag/browser" "^7.20.0"
+ "@bugsnag/node" "^7.19.0"
-"@bugsnag/node@^7.18.0":
+"@bugsnag/node@^7.19.0":
version "7.19.0"
resolved "https://registry.yarnpkg.com/@bugsnag/node/-/node-7.19.0.tgz#6a8e5d0f5e73a1d0bad19537def1a7ff65e19787"
integrity sha512-c4snyxx5d/fsMogmgehFBGc//daH6+4XCplia4zrEQYltjaQ+l8ud0dPx623DgJl/2j1+2zlRc7y7IHSd7Gm5w==
From 82817454da8d91f2236067e18baa24b523803700 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Tue, 14 Mar 2023 05:18:08 +0000
Subject: [PATCH 0125/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/prisma-4.11.0 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
sites/backend/package.json | 2 +-
yarn.lock | 18 +++++++++---------
3 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index d1a58b37655..93de48e3d04 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -207,7 +207,7 @@ yuri:
backend:
_:
'@aws-sdk/client-sesv2': '3.289.0'
- '@prisma/client': &prisma '4.10.1'
+ '@prisma/client': &prisma '4.11.0'
'bcryptjs': '2.4.3'
'cors': '2.8.5'
'crypto': '1.0.1'
diff --git a/sites/backend/package.json b/sites/backend/package.json
index 2cbf2617aee..6b271c6b4d7 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -29,7 +29,7 @@
"peerDependencies": {},
"dependencies": {
"@aws-sdk/client-sesv2": "3.289.0",
- "@prisma/client": "4.10.1",
+ "@prisma/client": "4.11.0",
"bcryptjs": "2.4.3",
"cors": "2.8.5",
"crypto": "1.0.1",
diff --git a/yarn.lock b/yarn.lock
index 8c98a6df342..7519c562563 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3647,17 +3647,17 @@
resolved "https://registry.npmjs.org/@portabletext/types/-/types-1.0.3.tgz#b23f832ae5331c1d864195a95eba34abf340597e"
integrity sha512-SDDsdury2SaTI2D5Ea6o+Y39SSZMYHRMWJHxkxYl3yzFP0n/0EknOhoXcoaV+bxGr2dTTqZi2TOEj+uWYuavSw==
-"@prisma/client@4.10.1":
- version "4.10.1"
- resolved "https://registry.yarnpkg.com/@prisma/client/-/client-4.10.1.tgz#c47fd54661ee74b174cee63e9dc418ecf57a6ccd"
- integrity sha512-VonXLJZybdt8e5XZH5vnIGCRNnIh6OMX1FS3H/yzMGLT3STj5TJ/OkMcednrvELgk8PK89Vo3aSh51MWNO0axA==
+"@prisma/client@4.11.0":
+ version "4.11.0"
+ resolved "https://registry.yarnpkg.com/@prisma/client/-/client-4.11.0.tgz#41d5664dea4172c954190a432f70b86d3e2e629b"
+ integrity sha512-0INHYkQIqgAjrt7NzhYpeDQi8x3Nvylc2uDngKyFDDj1tTRQ4uV1HnVmd1sQEraeVAN63SOK0dgCKQHlvjL0KA==
dependencies:
- "@prisma/engines-version" "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19"
+ "@prisma/engines-version" "4.11.0-57.8fde8fef4033376662cad983758335009d522acb"
-"@prisma/engines-version@4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19":
- version "4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19"
- resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-4.10.1-2.aead147aa326ccb985dcfed5b065b4fdabd44b19.tgz#312359d9d00e39e323136d0270876293d315658e"
- integrity sha512-tsjTho7laDhf9EJ9EnDxAPEf7yrigSMDhniXeU4YoWc7azHAs4GPxRi2P9LTFonmHkJLMOLjR77J1oIP8Ife1w==
+"@prisma/engines-version@4.11.0-57.8fde8fef4033376662cad983758335009d522acb":
+ version "4.11.0-57.8fde8fef4033376662cad983758335009d522acb"
+ resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-4.11.0-57.8fde8fef4033376662cad983758335009d522acb.tgz#74af5ff56170c78e93ce46c56510160f58cd3c01"
+ integrity sha512-3Vd8Qq06d5xD8Ch5WauWcUUrsVPdMC6Ge8ILji8RFfyhUpqon6qSyGM0apvr1O8n8qH8cKkEFqRPsYjuz5r83g==
"@prisma/engines@4.11.0":
version "4.11.0"
From a03cbf98d6433eee636e5ff398bf7555563c85b3 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Tue, 14 Mar 2023 05:20:56 +0000
Subject: [PATCH 0126/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/bugsnag/js-7.20.0 changes in config/dependencies.yaml
---
sites/org/package.json | 2 +-
yarn.lock | 16 ++++++++--------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/sites/org/package.json b/sites/org/package.json
index e27374f9d15..c7a8ced6223 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -26,7 +26,7 @@
},
"peerDependencies": {},
"dependencies": {
- "@bugsnag/js": "7.20.0",
+ "@bugsnag/js": "7.18.0",
"@bugsnag/plugin-react": "7.18.0",
"@mdx-js/loader": "2.3.0",
"@mdx-js/mdx": "2.3.0",
diff --git a/yarn.lock b/yarn.lock
index 8e10f36264f..9e2a0f3895e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2073,7 +2073,7 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
-"@bugsnag/browser@^7.20.0":
+"@bugsnag/browser@^7.18.0":
version "7.20.0"
resolved "https://registry.yarnpkg.com/@bugsnag/browser/-/browser-7.20.0.tgz#1c18d7f78bb605cc85b005138f0f6a34793d0edc"
integrity sha512-LzZWI6q5cWYQSXvfJDcSl287d2xXESVn0L20lK+K5nwo/jXcK9IVZr9L+CYZ40HVXaC9jOmQbqZ18hsbO2QNIw==
@@ -2096,15 +2096,15 @@
resolved "https://registry.yarnpkg.com/@bugsnag/cuid/-/cuid-3.0.1.tgz#ed05265d17ecca8c93e5898a1b4ddeed52d48693"
integrity sha512-ZWOywEsXGWMBb9PULGGbP2S/mUDp30ZjaozrOy/pv2xyFoCFiCdk5PB2HA3muH4W/ppb9pXr3b5f7al74qZ5sg==
-"@bugsnag/js@7.20.0":
- version "7.20.0"
- resolved "https://registry.yarnpkg.com/@bugsnag/js/-/js-7.20.0.tgz#a526d074e2d2719d290ebb3479ec4b9e26dbd164"
- integrity sha512-lhUUSOveE8fP10RagAINqBmuH+eoOpyUOiTN1WRkjHUevWG0LZjRRUWEGN3AA+ZyTphmC6ljd2qE3/64qfOSGQ==
+"@bugsnag/js@7.18.0":
+ version "7.18.0"
+ resolved "https://registry.yarnpkg.com/@bugsnag/js/-/js-7.18.0.tgz#48261838a893a5e452f09ea75f27ad7ad964f199"
+ integrity sha512-engv7itP6E5VcqapikA/ZPgnnImxZLMRZMyu14dgld/RCjCm3XFLhGcscnN8jJkTmp366e5Xqo8Lq7y9aI6Yhw==
dependencies:
- "@bugsnag/browser" "^7.20.0"
- "@bugsnag/node" "^7.19.0"
+ "@bugsnag/browser" "^7.18.0"
+ "@bugsnag/node" "^7.18.0"
-"@bugsnag/node@^7.19.0":
+"@bugsnag/node@^7.18.0":
version "7.19.0"
resolved "https://registry.yarnpkg.com/@bugsnag/node/-/node-7.19.0.tgz#6a8e5d0f5e73a1d0bad19537def1a7ff65e19787"
integrity sha512-c4snyxx5d/fsMogmgehFBGc//daH6+4XCplia4zrEQYltjaQ+l8ud0dPx623DgJl/2j1+2zlRc7y7IHSd7Gm5w==
From ec8522f121243ce22c7df1025ee6cd044b6887c7 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Mar 2023 05:20:57 +0000
Subject: [PATCH 0127/1524] chore(deps-dev): bump sinon from 15.0.1 to 15.0.2
Bumps [sinon](https://github.com/sinonjs/sinon) from 15.0.1 to 15.0.2.
- [Release notes](https://github.com/sinonjs/sinon/releases)
- [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md)
- [Commits](https://github.com/sinonjs/sinon/compare/v15.0.1...v15.0.2)
---
updated-dependencies:
- dependency-name: sinon
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 9e2a0f3895e..ae66fa16733 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4088,7 +4088,14 @@
dependencies:
type-detect "4.0.8"
-"@sinonjs/fake-timers@10.0.2", "@sinonjs/fake-timers@^10.0.2":
+"@sinonjs/commons@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72"
+ integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==
+ dependencies:
+ type-detect "4.0.8"
+
+"@sinonjs/fake-timers@^10.0.2":
version "10.0.2"
resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c"
integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw==
@@ -7544,7 +7551,7 @@ diff@^4.0.1:
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
-diff@^5.0.0:
+diff@^5.0.0, diff@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
@@ -13765,7 +13772,7 @@ next@13.2.4:
"@next/swc-win32-ia32-msvc" "13.2.4"
"@next/swc-win32-x64-msvc" "13.2.4"
-nise@^5.1.2:
+nise@^5.1.4:
version "5.1.4"
resolved "https://registry.yarnpkg.com/nise/-/nise-5.1.4.tgz#491ce7e7307d4ec546f5a659b2efe94a18b4bbc0"
integrity sha512-8+Ib8rRJ4L0o3kfmyVCL7gzrohyDe0cMFTBa2d364yIrEGMEoetznKJx899YxjybU6bL9SQkYPSBBs1gyYs8Xg==
@@ -17803,15 +17810,15 @@ simple-wcswidth@^1.0.1:
integrity sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==
sinon@^15.0.1:
- version "15.0.1"
- resolved "https://registry.yarnpkg.com/sinon/-/sinon-15.0.1.tgz#ce062611a0b131892e2c18f03055b8eb6e8dc234"
- integrity sha512-PZXKc08f/wcA/BMRGBze2Wmw50CWPiAH3E21EOi4B49vJ616vW4DQh4fQrqsYox2aNR/N3kCqLuB0PwwOucQrg==
+ version "15.0.2"
+ resolved "https://registry.yarnpkg.com/sinon/-/sinon-15.0.2.tgz#f3e3aacb990bbaa8a7bb976e86118c5dc0154e66"
+ integrity sha512-PCVP63XZkg0/LOqQH5rEU4LILuvTFMb5tNxTHfs6VUMNnZz2XrnGSTZbAGITjzwQWbl/Bl/8hi4G3zZWjyBwHg==
dependencies:
- "@sinonjs/commons" "^2.0.0"
- "@sinonjs/fake-timers" "10.0.2"
+ "@sinonjs/commons" "^3.0.0"
+ "@sinonjs/fake-timers" "^10.0.2"
"@sinonjs/samsam" "^7.0.1"
- diff "^5.0.0"
- nise "^5.1.2"
+ diff "^5.1.0"
+ nise "^5.1.4"
supports-color "^7.2.0"
sirv@^1.0.7:
From 10444b201d4e4a5248aa029b9997a83449cac86e Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Mar 2023 05:25:01 +0000
Subject: [PATCH 0128/1524] chore(deps): bump react-hotkeys-hook from 4.3.7 to
4.3.8
Bumps [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) from 4.3.7 to 4.3.8.
- [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases)
- [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md)
- [Commits](https://github.com/JohannesKlauss/react-keymap-hook/compare/v4.3.7...v4.3.8)
---
updated-dependencies:
- dependency-name: react-hotkeys-hook
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/dev/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
yarn.lock | 8 ++++----
4 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/sites/dev/package.json b/sites/dev/package.json
index dc6b79e17e0..5f3823a9206 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -40,7 +40,7 @@
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
- "react-hotkeys-hook": "4.3.7",
+ "react-hotkeys-hook": "4.3.8",
"react-instantsearch-dom": "6.39.0",
"react-markdown": "8.0.5",
"react-swipeable": "7.0.0",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 88e5cf0b9e2..b4f55629f93 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -44,7 +44,7 @@
"next-i18next": "13.1.4",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
- "react-hotkeys-hook": "4.3.7",
+ "react-hotkeys-hook": "4.3.8",
"react-i18next": "12.1.4",
"react-instantsearch-dom": "6.39.0",
"react-markdown": "8.0.5",
diff --git a/sites/org/package.json b/sites/org/package.json
index c7a8ced6223..593877a4782 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -42,7 +42,7 @@
"luxon": "3.3.0",
"next": "13.2.4",
"react-dropzone": "14.2.3",
- "react-hotkeys-hook": "4.3.7",
+ "react-hotkeys-hook": "4.3.8",
"react-instantsearch-dom": "6.39.0",
"react-hot-toast": "2.4.0",
"react-markdown": "8.0.5",
diff --git a/yarn.lock b/yarn.lock
index 9e2a0f3895e..83347ee403c 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -16000,10 +16000,10 @@ react-hot-toast@2.4.0:
dependencies:
goober "^2.1.10"
-react-hotkeys-hook@4.3.7:
- version "4.3.7"
- resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.3.7.tgz#87d4c2c939d190643acb66de84cdf586a8743dce"
- integrity sha512-qUcA5vl/liGWr9wLYI5/8oppHLa6nExFqOAMC6CyZhpj7C56PIzYZ76xAtJ+5lgxObgl4A4pQz8upy+nq7orSQ==
+react-hotkeys-hook@4.3.8:
+ version "4.3.8"
+ resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.3.8.tgz#75fa18e7edb393c2d308a59378932c6badf94b80"
+ integrity sha512-RmrIQ3M259c84MnYVEAQsmHkD6s7XUgLG0rW6S7qjt1Lh7q+SPIz5b6obVU8OJw1Utsj1mUCj6twtBPaK/ytww==
react-i18next@12.1.4:
version "12.1.4"
From 64f057d7cbc48290ead5c568849908ee8f65803b Mon Sep 17 00:00:00 2001
From: github-actions
Date: Tue, 14 Mar 2023 05:28:05 +0000
Subject: [PATCH 0129/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/react-hotkeys-hook-4.3.8 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index d1a58b37655..2ae47dabaf5 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -249,7 +249,7 @@ dev:
'react': &react '18.2.0'
'react-copy-to-clipboard': &reactCopyToClipboard '5.1.0'
'react-dom': *react
- 'react-hotkeys-hook': &reactHotkeysHook '4.3.7'
+ 'react-hotkeys-hook': &reactHotkeysHook '4.3.8'
'react-instantsearch-dom': &reactInstantsearchDom '6.39.0'
'react-markdown': &reactMarkdown '8.0.5'
'react-swipeable': &reactSwipeable '7.0.0'
From 800bba1a534d33dbdbb73de53c6317a4aa9f96ec Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 14 Mar 2023 17:46:15 +0000
Subject: [PATCH 0130/1524] chore(deps): bump react-i18next from 12.1.4 to
12.2.0
Bumps [react-i18next](https://github.com/i18next/react-i18next) from 12.1.4 to 12.2.0.
- [Release notes](https://github.com/i18next/react-i18next/releases)
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](https://github.com/i18next/react-i18next/compare/v12.1.4...v12.2.0)
---
updated-dependencies:
- dependency-name: react-i18next
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/lab/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sites/lab/package.json b/sites/lab/package.json
index b4f55629f93..46abebff888 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -45,7 +45,7 @@
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-hotkeys-hook": "4.3.8",
- "react-i18next": "12.1.4",
+ "react-i18next": "12.2.0",
"react-instantsearch-dom": "6.39.0",
"react-markdown": "8.0.5",
"react-swipeable": "7.0.0",
diff --git a/yarn.lock b/yarn.lock
index 83347ee403c..316fa390644 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -16005,10 +16005,10 @@ react-hotkeys-hook@4.3.8:
resolved "https://registry.yarnpkg.com/react-hotkeys-hook/-/react-hotkeys-hook-4.3.8.tgz#75fa18e7edb393c2d308a59378932c6badf94b80"
integrity sha512-RmrIQ3M259c84MnYVEAQsmHkD6s7XUgLG0rW6S7qjt1Lh7q+SPIz5b6obVU8OJw1Utsj1mUCj6twtBPaK/ytww==
-react-i18next@12.1.4:
- version "12.1.4"
- resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-12.1.4.tgz#be0a60d3a45acc4321909f8a4b8cde16518a2926"
- integrity sha512-XQND7jYtgM7ht5PH3yIZljCRpAMTlH/zmngM9ZjToqa+0BR6xuu8c7QF0WIIOEjcMTB2S3iOfpN/xG/ZrAnO6g==
+react-i18next@12.2.0:
+ version "12.2.0"
+ resolved "https://registry.yarnpkg.com/react-i18next/-/react-i18next-12.2.0.tgz#010e3f6070b8d700442947233352ebe4b252d7a1"
+ integrity sha512-5XeVgSygaGfyFmDd2WcXvINRw2WEC1XviW1LXY/xLOEMzsCFRwKqfnHN+hUjla8ZipbVJR27GCMSuTr0BhBBBQ==
dependencies:
"@babel/runtime" "^7.20.6"
html-parse-stringify "^3.0.1"
From 2de7e18cd9e3e48a83cc382c8b060a24462b93c3 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Tue, 14 Mar 2023 17:49:24 +0000
Subject: [PATCH 0131/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/react-i18next-12.2.0 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 2ae47dabaf5..c750d57d533 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -299,7 +299,7 @@ lab:
'react': *react
'react-copy-to-clipboard': *reactCopyToClipboard
'react-hotkeys-hook': *reactHotkeysHook
- 'react-i18next': &reactI18next '12.1.4'
+ 'react-i18next': &reactI18next '12.2.0'
'react-instantsearch-dom': *reactInstantsearchDom
'react-markdown': *reactMarkdown
'react-swipeable': *reactSwipeable
From b55f94f8b34af6d3137ba97606475a55041e8ba2 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Tue, 14 Mar 2023 18:37:53 -0500
Subject: [PATCH 0132/1524] chore (new-design) add files and plugins to make
new-design work with latest lab
---
config/scripts.yaml | 2 +-
packages/new-design/lib/config.mjs | 2 ++
packages/new-design/package.json | 2 +-
packages/new-design/templates/shared/package.json.mustache | 2 ++
4 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/config/scripts.yaml b/config/scripts.yaml
index e125d4b2bac..1a1f688cef3 100644
--- a/config/scripts.yaml
+++ b/config/scripts.yaml
@@ -29,7 +29,7 @@ i18n:
models:
test: 'npx mocha tests/*.test.mjs'
new-design:
- 18n-only: 'SITE="new-design/shared" node ../../sites/shared/prebuild/i18n-only.mjs'
+ i18n-only: 'SITE="new-design/shared" node ../../sites/shared/prebuild/i18n-only.mjs'
wbuild: '!'
lint: "npx eslint 'lib/*.mjs'"
mbuild: '!'
diff --git a/packages/new-design/lib/config.mjs b/packages/new-design/lib/config.mjs
index fa3b8d0fd16..40c091aa60b 100644
--- a/packages/new-design/lib/config.mjs
+++ b/packages/new-design/lib/config.mjs
@@ -160,6 +160,8 @@ yarn-error.log*
'shared/components/workbench/logs.mjs',
'shared/components/workbench/preloaders.mjs',
'shared/components/workbench/sample.mjs',
+ 'shared/components/workbench/edit/index.mjs',
+ 'shared/components/workbench/edit/gist-validator.mjs',
'shared/components/workbench/exporting/export-handler.mjs',
'shared/components/workbench/exporting/export-worker.js',
'shared/components/workbench/exporting/index.mjs',
diff --git a/packages/new-design/package.json b/packages/new-design/package.json
index 11ef9365544..9c1fd2d57e8 100644
--- a/packages/new-design/package.json
+++ b/packages/new-design/package.json
@@ -25,7 +25,7 @@
"lab": "cd ../../sites/lab && yarn start",
"tips": "node ../../scripts/help.mjs",
"lint": "npx eslint 'lib/*.mjs'",
- "18n-only": "SITE=\"new-design/shared\" node ../../sites/shared/prebuild/i18n-only.mjs",
+ "i18n-only": "SITE=\"new-design/shared\" node ../../sites/shared/prebuild/i18n-only.mjs",
"cibuild_step6": "node build.mjs",
"wbuild": "node build.mjs",
"wcibuild_step6": "node build.mjs"
diff --git a/packages/new-design/templates/shared/package.json.mustache b/packages/new-design/templates/shared/package.json.mustache
index 64c790c3aad..0b595c2d636 100644
--- a/packages/new-design/templates/shared/package.json.mustache
+++ b/packages/new-design/templates/shared/package.json.mustache
@@ -45,6 +45,8 @@
"@freesewing/plugin-bundle": "$$ tag $$"
},
"devDependencies": {
+ "@freesewing/plugin-cutlist": "$$ tag $$",
+ "@freesewing/plugin-flip": "$$ tag $$",
"@freesewing/plugin-svgattr": "$$ tag $$",
"@freesewing/plugin-theme": "$$ tag $$",
"@freesewing/plugin-i18n": "$$ tag $$",
From 6623b0e4820d841105d552d7677eee7e90c4470d Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Tue, 14 Mar 2023 19:05:10 -0500
Subject: [PATCH 0133/1524] fix (shared/prebuild/i18n) folders to check for
sidecars should be relative to prebuild file
---
sites/shared/prebuild/i18n.mjs | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/sites/shared/prebuild/i18n.mjs b/sites/shared/prebuild/i18n.mjs
index 45ce1d6979d..96c5929f741 100644
--- a/sites/shared/prebuild/i18n.mjs
+++ b/sites/shared/prebuild/i18n.mjs
@@ -4,6 +4,7 @@ import fs from 'fs'
import path from 'path'
import rdir from 'recursive-readdir'
import yaml from 'js-yaml'
+import { fileURLToPath } from 'url'
/*
* List of supported languages
@@ -14,12 +15,10 @@ const locales = ['en', 'es', 'de', 'fr', 'nl']
* This is where we configure what folders we should check for
* code-adjacent translation source files
*/
+const sitesFolder = path.join(fileURLToPath(import.meta.url), '..', '..', '..')
const folders = {
- org: [
- path.resolve(path.join('.', '..', 'org', 'pages')),
- path.resolve(path.join('.', '..', 'org', 'components')),
- ],
- shared: [path.resolve(path.join('.', '..', 'shared', 'components'))],
+ org: [path.join(sitesFolder, 'org', 'pages'), path.join(sitesFolder, 'org', 'components')],
+ shared: [path.join(sitesFolder, 'shared', 'components')],
}
/*
From 643bb76d6ae1b36e88759333e347bd10871c0fac Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 15 Mar 2023 05:03:26 +0000
Subject: [PATCH 0134/1524] chore(deps): bump @headlessui/react from 1.7.7 to
1.7.13
Bumps [@headlessui/react](https://github.com/tailwindlabs/headlessui/tree/HEAD/packages/@headlessui-react) from 1.7.7 to 1.7.13.
- [Release notes](https://github.com/tailwindlabs/headlessui/releases)
- [Changelog](https://github.com/tailwindlabs/headlessui/blob/main/packages/@headlessui-react/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/headlessui/commits/@headlessui/react@v1.7.13/packages/@headlessui-react)
---
updated-dependencies:
- dependency-name: "@headlessui/react"
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/lab/package.json | 2 +-
sites/shared/package.json | 2 +-
yarn.lock | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/sites/lab/package.json b/sites/lab/package.json
index b4f55629f93..43cd6c20441 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -25,7 +25,7 @@
},
"peerDependencies": {},
"dependencies": {
- "@headlessui/react": "1.7.7",
+ "@headlessui/react": "1.7.13",
"@mdx-js/loader": "2.3.0",
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
diff --git a/sites/shared/package.json b/sites/shared/package.json
index bd4212683c9..9a65c467c28 100644
--- a/sites/shared/package.json
+++ b/sites/shared/package.json
@@ -16,7 +16,7 @@
"scripts": {},
"peerDependencies": {},
"dependencies": {
- "@headlessui/react": "1.7.7",
+ "@headlessui/react": "1.7.13",
"@resvg/resvg-js": "2.4.1",
"@tailwindcss/typography": "0.5.9",
"Buffer": "0.0.0",
diff --git a/yarn.lock b/yarn.lock
index 83347ee403c..95aa4d0bd9e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2713,10 +2713,10 @@
resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
-"@headlessui/react@1.7.7":
- version "1.7.7"
- resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.7.tgz#d6f8708d8943ae8ebb1a6929108234e4515ac7e8"
- integrity sha512-BqDOd/tB9u2tA0T3Z0fn18ktw+KbVwMnkxxsGPIH2hzssrQhKB5n/6StZOyvLYP/FsYtvuXfi9I0YowKPv2c1w==
+"@headlessui/react@1.7.13":
+ version "1.7.13"
+ resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.13.tgz#fd150b394954e9f1d86ed2340cffd1217d6e7628"
+ integrity sha512-9n+EQKRtD9266xIHXdY5MfiXPDfYwl7zBM7KOx2Ae3Gdgxy8QML1FkCMjq6AsOf0l6N9uvI4HcFtuFlenaldKg==
dependencies:
client-only "^0.0.1"
From 2bfa72c9f25efba55e4efef3c82c678e52e79c47 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Wed, 15 Mar 2023 05:06:44 +0000
Subject: [PATCH 0135/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/headlessui/react-1.7.13 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 2ae47dabaf5..4e7e10b29cf 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -279,7 +279,7 @@ email:
lab:
_:
- '@headlessui/react': &headlessUiReact '1.7.7'
+ '@headlessui/react': &headlessUiReact '1.7.13'
'@mdx-js/loader': *mdx
'@mdx-js/mdx': *mdx
'@mdx-js/react': *mdx
From 4bf6e829e762130139a4b283e14970f9e7402f66 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 15 Mar 2023 05:27:23 +0000
Subject: [PATCH 0136/1524] chore(deps-dev): bump @types/node from 18.15.1 to
18.15.3
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.15.1 to 18.15.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
---
updated-dependencies:
- dependency-name: "@types/node"
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index 83347ee403c..3f9c727a166 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4428,9 +4428,9 @@
"@types/unist" "*"
"@types/node@*", "@types/node@>=10.0.0", "@types/node@^18.0.0":
- version "18.15.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.1.tgz#41dc2bf78e8085a250d4670d95edb7fba621dd29"
- integrity sha512-U2TWca8AeHSmbpi314QBESRk7oPjSZjDsR+c+H4ECC1l+kFgpZf8Ydhv3SJpPy51VyZHHqxlb6mTTqYNNRVAIw==
+ version "18.15.3"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.3.tgz#f0b991c32cfc6a4e7f3399d6cb4b8cf9a0315014"
+ integrity sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
From 2cc98da222c5575e3bf79846aadd752284c3b361 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Wed, 15 Mar 2023 20:33:48 -0500
Subject: [PATCH 0137/1524] fix (new-design) update for core breaking changes
---
.../templates/shared/part.mjs.mustache | 57 ++++++++++---------
plugins/plugin-cutlist/src/index.mjs | 3 +-
2 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/packages/new-design/templates/shared/part.mjs.mustache b/packages/new-design/templates/shared/part.mjs.mustache
index 539391c5269..ac01ac95965 100644
--- a/packages/new-design/templates/shared/part.mjs.mustache
+++ b/packages/new-design/templates/shared/part.mjs.mustache
@@ -103,34 +103,35 @@ export const $$ part $$ = {
$$ ^doesInherit $$
from: false,
$$ /doesInherit $$
- /*
- * hide: Set this to true to hide a part.
- *
- * We've set this to false here to clarify its use.
- * If you don't want to hide this part,
- * you can remove the hide key entirely.
- */
- hide: false,
- /*
- * hideDependecies: Set this to true to hide a part's dependencies.
- *
- $$ #doesInherit $$
- * We've set this to true here since you're extending $$ BaseName $$'s $$ part $$ part.
- $$ /doesInherit $$
- * If you don't want to hide this part's dependencies,
- * you can remove the hideDependencies key entirely.
- */
- hideDependencies: $$ doesInherit $$,
- /*
- * hideAll: Set this to true to hide both the part and its dependencies.
- *
- * This is a combination of the hide and hideDependencies keys in case
- * you want to both hide this part and its dependencies.
- * We've included it here with a value of false.
- * If you don't want to hide this a part and its dependencies,
- * you can remove the hideAll key entirely.
- */
- hideAll: false,
+ /* hide: */
+ hide: {
+ /*
+ * self: Set this to true to hide the part.
+ *
+ * We've set this to false here to clarify its use.
+ * If you don't want to hide this part,
+ * you can remove the hide key entirely.
+ */
+ self: false,
+ /*
+ * from: Set this to true to hide a part's from dependency.
+ *
+ $$ #doesInherit $$
+ * We've set this to true here since you're extending $$ BaseName $$'s $$ part $$ part.
+ $$ /doesInherit $$
+ * If you don't want to hide this part's from dependency,
+ * you can remove the from key entirely.
+ */
+ from: $$ doesInherit $$,
+ /*
+ * after: Set this to true to hide any parts specified in the after setting
+ *
+ * We've set this to false here to clarify its use.
+ * If you don't want to hide this part,
+ * you can remove the hide key entirely.
+ */
+ after: false
+ },
options: {
/*
* options: Holds (the configuration of) options for this part
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index 9ff14095d57..1a5d16a34de 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -1,5 +1,4 @@
import { name, version } from '../data.mjs'
-import { Point } from '@freesewing/core'
export const plugin = {
name,
@@ -71,7 +70,7 @@ function setCutOnFold(store, partName, p1, p2) {
if (p1 === false && typeof p2 === 'undefined') {
return store.unset(path)
}
- if (p1 instanceof Point && p2 instanceof Point) {
+ if (!isNaN(p1.x) && !isNaN(p1.y) && !isNaN(p2.x) && !isNaN(p2.y)) {
store.set(path, [p1, p2])
} else
store.log.error('Called part.setCutOnFold() but at least one parameter is not a Point instance')
From a88ace57db3d947b1e3cdfd31ba2ea75fbcb785c Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 16 Mar 2023 05:01:38 +0000
Subject: [PATCH 0138/1524] chore(deps): bump next-i18next from 13.1.4 to
13.2.2
Bumps [next-i18next](https://github.com/i18next/next-i18next) from 13.1.4 to 13.2.2.
- [Release notes](https://github.com/i18next/next-i18next/releases)
- [Changelog](https://github.com/i18next/next-i18next/blob/master/CHANGELOG.md)
- [Commits](https://github.com/i18next/next-i18next/compare/v13.1.4...v13.2.2)
---
updated-dependencies:
- dependency-name: next-i18next
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/lab/package.json | 2 +-
yarn.lock | 28 ++++++++++++++--------------
2 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 3e78bcb4760..74a92aec6f4 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -41,7 +41,7 @@
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
"next": "13.2.4",
- "next-i18next": "13.1.4",
+ "next-i18next": "13.2.2",
"react": "18.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-hotkeys-hook": "4.3.8",
diff --git a/yarn.lock b/yarn.lock
index c3bd7757319..a1c2a18c629 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1983,10 +1983,10 @@
core-js-pure "^3.20.2"
regenerator-runtime "^0.13.4"
-"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.6", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.6", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4":
- version "7.20.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.7.tgz#fcb41a5a70550e04a7b708037c7c32f7f356d8fd"
- integrity sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==
+"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.14.0", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.6", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.6", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4":
+ version "7.21.0"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673"
+ integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==
dependencies:
regenerator-runtime "^0.13.11"
@@ -10400,10 +10400,10 @@ husky@^8.0.1:
resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.3.tgz#4936d7212e46d1dea28fef29bb3a108872cd9184"
integrity sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==
-i18next-fs-backend@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/i18next-fs-backend/-/i18next-fs-backend-2.1.0.tgz#a90983df2992f478e1d5f3a4c794754d19a0bcdc"
- integrity sha512-gur0HAEkVDeUgZ9WNUcACYYl2N5FUt0C6bQCWsFPc+IYMXYWfiFQa8QQ930QAVYf71I75Ptl4XqQo5sl/u6/mA==
+i18next-fs-backend@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/i18next-fs-backend/-/i18next-fs-backend-2.1.1.tgz#07c6393be856c5a398e3dfc1257bf8439841cd89"
+ integrity sha512-FTnj+UmNgT3YRml5ruRv0jMZDG7odOL/OP5PF5mOqvXud2vHrPOOs68Zdk6iqzL47cnnM0ZVkK2BAvpFeDJToA==
i18next@22.4.9:
version "22.4.9"
@@ -13736,16 +13736,16 @@ new-github-release-url@^1.0.0:
dependencies:
type-fest "^0.4.1"
-next-i18next@13.1.4:
- version "13.1.4"
- resolved "https://registry.yarnpkg.com/next-i18next/-/next-i18next-13.1.4.tgz#02660bb936f9f80fbccea950731011a42a8657a9"
- integrity sha512-//Ub7TCdbbNnI5rA6XEe+TLsiXaHR/7OjFBlXw5caPirHNCLvVs24NsmXl9z0ZIqqAT8T8I5hnPWIL75d84ubA==
+next-i18next@13.2.2:
+ version "13.2.2"
+ resolved "https://registry.yarnpkg.com/next-i18next/-/next-i18next-13.2.2.tgz#9609546fab1d1d5f9b227e86c5ca23d0cbbbddb4"
+ integrity sha512-t0WU6K+HJoq2nVQ0n6OiiEZja9GyMqtDSU74FmOafgk4ljns+iZ18bsNJiI8rOUXfFfkW96ea1N7D5kbMyT+PA==
dependencies:
- "@babel/runtime" "^7.20.6"
+ "@babel/runtime" "^7.20.13"
"@types/hoist-non-react-statics" "^3.3.1"
core-js "^3"
hoist-non-react-statics "^3.3.2"
- i18next-fs-backend "^2.1.0"
+ i18next-fs-backend "^2.1.1"
next@13.2.4:
version "13.2.4"
From ffe6c8101f294d953346c4c8bb8f86ec1f987c09 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 16 Mar 2023 05:03:46 +0000
Subject: [PATCH 0139/1524] chore(deps): bump tlds from 1.236.0 to 1.237.0
Bumps [tlds](https://github.com/stephenmathieson/node-tlds) from 1.236.0 to 1.237.0.
- [Release notes](https://github.com/stephenmathieson/node-tlds/releases)
- [Changelog](https://github.com/stephenmathieson/node-tlds/blob/master/CHANGELOG.md)
- [Commits](https://github.com/stephenmathieson/node-tlds/commits)
---
updated-dependencies:
- dependency-name: tlds
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/shared/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sites/shared/package.json b/sites/shared/package.json
index 9a65c467c28..231aedb9c6c 100644
--- a/sites/shared/package.json
+++ b/sites/shared/package.json
@@ -46,7 +46,7 @@
"remark-smartypants": "2.0.0",
"sharp": "0.31.3",
"svg-to-pdfkit": "https://github.com/eriese/SVG-to-PDFKit",
- "tlds": "1.236.0",
+ "tlds": "1.237.0",
"to-vfile": "7.2.4",
"unist-util-visit": "4.1.2",
"web-worker": "1.2.0"
diff --git a/yarn.lock b/yarn.lock
index c3bd7757319..e8c5f70e118 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -18901,10 +18901,10 @@ tiny-warning@^1.0.0, tiny-warning@^1.0.3:
resolved "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz#94a30db453df4c643d0fd566060d60a875d84754"
integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==
-tlds@1.236.0:
- version "1.236.0"
- resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.236.0.tgz#a118eebe33261c577e3a3025144faeabb7dd813c"
- integrity sha512-oP2PZ3KeGlgpHgsEfrtva3/K9kzsJUNliQSbCfrJ7JMCWFoCdtG+9YMq/g2AnADQ1v5tVlbtvKJZ4KLpy/P6MA==
+tlds@1.237.0:
+ version "1.237.0"
+ resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.237.0.tgz#71e5ca558878a046bc9e253db7a1f2b602ce1a2d"
+ integrity sha512-4IA6zR7jQop4pEdziQaptOgkIwnnZ537fXM3MKAzOXjXLjiHm77SA3/E0nXWJGSVRnKcn/JxDJmwTqyPgQ+ozg==
tmp@^0.0.33:
version "0.0.33"
From 940649d0fd6e6725c327a7b19d8e3be81bfc54a0 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Thu, 16 Mar 2023 05:04:53 +0000
Subject: [PATCH 0140/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/next-i18next-13.2.2 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 5534e2ed441..16df5b10711 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -295,7 +295,7 @@ lab:
'lodash.orderby': *_orderby
'lodash.set': *_set
'next': *next
- 'next-i18next': &nextI18next '13.1.4'
+ 'next-i18next': &nextI18next '13.2.2'
'react': *react
'react-copy-to-clipboard': *reactCopyToClipboard
'react-hotkeys-hook': *reactHotkeysHook
From 1701e499967295a524be9ccd7de9ef2cb048bd84 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Thu, 16 Mar 2023 05:06:30 +0000
Subject: [PATCH 0141/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/tlds-1.237.0 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 5534e2ed441..2363ced1692 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -395,7 +395,7 @@ shared:
'remark-smartypants': '2.0.0'
'sharp': '0.31.3'
'svg-to-pdfkit': 'https://github.com/eriese/SVG-to-PDFKit'
- 'tlds': '1.236.0'
+ 'tlds': '1.237.0'
'to-vfile': '7.2.4'
'unist-util-visit': *unist-util-visit
'web-worker': '1.2.0'
From 9baf3b53c3c4b9273b5d21284a537584e241010f Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 16 Mar 2023 05:07:26 +0000
Subject: [PATCH 0142/1524] chore(deps): bump bezier-js from 6.1.0 to 6.1.3
Bumps [bezier-js](https://github.com/Pomax/bezierjs) from 6.1.0 to 6.1.3.
- [Release notes](https://github.com/Pomax/bezierjs/releases)
- [Commits](https://github.com/Pomax/bezierjs/compare/v6.1.0...v6.1.3)
---
updated-dependencies:
- dependency-name: bezier-js
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
packages/core/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/packages/core/package.json b/packages/core/package.json
index 44dec9d3660..c58929b5f90 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -50,7 +50,7 @@
},
"peerDependencies": {},
"dependencies": {
- "bezier-js": "6.1.0",
+ "bezier-js": "6.1.3",
"bin-pack-with-constraints": "1.0.1",
"hooks": "0.3.2",
"lodash.get": "4.4.2",
diff --git a/yarn.lock b/yarn.lock
index c3bd7757319..3c68e06884a 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5565,10 +5565,10 @@ before-after-hook@^2.2.0:
resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.2.tgz#a6e8ca41028d90ee2c24222f201c90956091613e"
integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
-bezier-js@6.1.0:
- version "6.1.0"
- resolved "https://registry.yarnpkg.com/bezier-js/-/bezier-js-6.1.0.tgz#162b7bdbabe866e3a796285a89d71085140755ec"
- integrity sha512-oc8fkHqG0R+dQuNiXVbPMB0cc8iDqkLAjbA2gq26QmV8tZqW9GGI7iNEX1ioRWlZperQS7v5BX03+9FLVWZbSw==
+bezier-js@6.1.3:
+ version "6.1.3"
+ resolved "https://registry.yarnpkg.com/bezier-js/-/bezier-js-6.1.3.tgz#45c6cac9455253f6b676d8ffda7aed42adfc8d5d"
+ integrity sha512-VPFvkyO98oCJ1Tsi+bFBrKEWLdefAj4DJVaWp3xTEsdCbunC7Pt/nTeIgu/UdskBNcmHv8TOfsgdMZb1GsICmg==
big.js@^5.2.2:
version "5.2.2"
From e3ffdac8638e7d3568ebdeba8596250562d1af58 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Thu, 16 Mar 2023 05:10:53 +0000
Subject: [PATCH 0143/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/bezier-js-6.1.3 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 5534e2ed441..83171e1f326 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -52,7 +52,7 @@ charlie:
'@freesewing/snapseries': *freesewing
core:
_:
- 'bezier-js': '6.1.0'
+ 'bezier-js': '6.1.3'
'bin-pack-with-constraints': '1.0.1'
'hooks': '0.3.2'
'lodash.get': &_get '4.4.2'
From 449ffec42e8cf966bb7b20e5aab9ccff449a7c93 Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Thu, 16 Mar 2023 20:08:52 +0100
Subject: [PATCH 0144/1524] fix(new-design): Set branch to develop
---
packages/new-design/lib/config.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/new-design/lib/config.mjs b/packages/new-design/lib/config.mjs
index 40c091aa60b..e70cc8906f4 100644
--- a/packages/new-design/lib/config.mjs
+++ b/packages/new-design/lib/config.mjs
@@ -8,7 +8,7 @@ export const config = {
// Repository to download from
repo: process.env.FS_REPO || 'freesewing/freesewing',
// Branch to download from
- branch: process.env.FS_BRANCH || 'joost',
+ branch: process.env.FS_BRANCH || 'develop',
i18n: [
'account',
'common',
From d9fd752ec1eaba296fa8318ee6f8b41afde8dde4 Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Thu, 16 Mar 2023 20:17:41 +0100
Subject: [PATCH 0145/1524] release: 3.0.0-alpha.7
---
designs/aaron/data.mjs | 2 +-
designs/aaron/package.json | 10 ++--
designs/albert/data.mjs | 2 +-
designs/albert/package.json | 6 +--
designs/bee/data.mjs | 2 +-
designs/bee/package.json | 8 ++--
designs/bella/data.mjs | 2 +-
designs/bella/package.json | 6 +--
designs/benjamin/data.mjs | 2 +-
designs/benjamin/package.json | 6 +--
designs/bent/data.mjs | 2 +-
designs/bent/package.json | 12 ++---
designs/bob/data.mjs | 2 +-
designs/bob/package.json | 6 +--
designs/breanna/data.mjs | 2 +-
designs/breanna/package.json | 8 ++--
designs/brian/data.mjs | 2 +-
designs/brian/package.json | 10 ++--
designs/bruce/data.mjs | 2 +-
designs/bruce/package.json | 6 +--
designs/carlita/data.mjs | 2 +-
designs/carlita/package.json | 16 +++----
designs/carlton/data.mjs | 2 +-
designs/carlton/package.json | 14 +++---
designs/cathrin/data.mjs | 2 +-
designs/cathrin/package.json | 6 +--
designs/charlie/data.mjs | 2 +-
designs/charlie/package.json | 14 +++---
designs/cornelius/data.mjs | 2 +-
designs/cornelius/package.json | 6 +--
designs/diana/data.mjs | 2 +-
designs/diana/package.json | 10 ++--
designs/examples/data.mjs | 2 +-
designs/examples/package.json | 10 ++--
designs/florence/data.mjs | 2 +-
designs/florence/package.json | 6 +--
designs/florent/data.mjs | 2 +-
designs/florent/package.json | 6 +--
designs/hi/data.mjs | 2 +-
designs/hi/package.json | 6 +--
designs/holmes/data.mjs | 2 +-
designs/holmes/package.json | 10 ++--
designs/hortensia/data.mjs | 2 +-
designs/hortensia/package.json | 6 +--
designs/huey/data.mjs | 2 +-
designs/huey/package.json | 10 ++--
designs/hugo/data.mjs | 2 +-
designs/hugo/package.json | 10 ++--
designs/jaeger/data.mjs | 2 +-
designs/jaeger/package.json | 14 +++---
designs/legend/data.mjs | 2 +-
designs/legend/package.json | 8 ++--
designs/lucy/data.mjs | 2 +-
designs/lucy/package.json | 6 +--
designs/lunetius/data.mjs | 2 +-
designs/lunetius/package.json | 6 +--
designs/noble/data.mjs | 2 +-
designs/noble/package.json | 8 ++--
designs/octoplushy/data.mjs | 2 +-
designs/octoplushy/package.json | 6 +--
designs/paco/data.mjs | 2 +-
designs/paco/package.json | 10 ++--
designs/penelope/data.mjs | 2 +-
designs/penelope/package.json | 6 +--
designs/plugintest/data.mjs | 2 +-
designs/plugintest/package.json | 48 ++++++++++----------
designs/rendertest/data.mjs | 2 +-
designs/rendertest/package.json | 6 +--
designs/sandy/data.mjs | 2 +-
designs/sandy/package.json | 8 ++--
designs/shin/data.mjs | 2 +-
designs/shin/package.json | 8 ++--
designs/simon/data.mjs | 2 +-
designs/simon/package.json | 12 ++---
designs/simone/data.mjs | 2 +-
designs/simone/package.json | 14 +++---
designs/sven/data.mjs | 2 +-
designs/sven/package.json | 10 ++--
designs/tamiko/data.mjs | 2 +-
designs/tamiko/package.json | 8 ++--
designs/teagan/data.mjs | 2 +-
designs/teagan/package.json | 10 ++--
designs/tiberius/data.mjs | 2 +-
designs/tiberius/package.json | 6 +--
designs/titan/data.mjs | 2 +-
designs/titan/package.json | 8 ++--
designs/trayvon/data.mjs | 2 +-
designs/trayvon/package.json | 8 ++--
designs/tutorial/data.mjs | 2 +-
designs/tutorial/package.json | 6 +--
designs/unice/data.mjs | 2 +-
designs/unice/package.json | 6 +--
designs/ursula/data.mjs | 2 +-
designs/ursula/package.json | 6 +--
designs/wahid/data.mjs | 2 +-
designs/wahid/package.json | 10 ++--
designs/walburga/data.mjs | 2 +-
designs/walburga/package.json | 6 +--
designs/waralee/data.mjs | 2 +-
designs/waralee/package.json | 6 +--
designs/yuri/data.mjs | 2 +-
designs/yuri/package.json | 10 ++--
lerna.json | 2 +-
packages/core/data.mjs | 2 +-
packages/core/package.json | 2 +-
packages/i18n/data.mjs | 2 +-
packages/i18n/package.json | 4 +-
packages/models/data.mjs | 2 +-
packages/models/package.json | 2 +-
packages/new-design/data.mjs | 2 +-
packages/new-design/package.json | 2 +-
packages/prettier-config/data.mjs | 2 +-
packages/prettier-config/package.json | 2 +-
packages/rehype-highlight-lines/data.mjs | 2 +-
packages/rehype-highlight-lines/package.json | 2 +-
packages/rehype-jargon/data.mjs | 2 +-
packages/rehype-jargon/package.json | 2 +-
packages/snapseries/data.mjs | 2 +-
packages/snapseries/package.json | 2 +-
plugins/plugin-banner/data.mjs | 2 +-
plugins/plugin-banner/package.json | 4 +-
plugins/plugin-bartack/data.mjs | 2 +-
plugins/plugin-bartack/package.json | 4 +-
plugins/plugin-bundle/data.mjs | 2 +-
plugins/plugin-bundle/package.json | 26 +++++------
plugins/plugin-bust/data.mjs | 2 +-
plugins/plugin-bust/package.json | 4 +-
plugins/plugin-buttons/data.mjs | 2 +-
plugins/plugin-buttons/package.json | 4 +-
plugins/plugin-cutlist/data.mjs | 2 +-
plugins/plugin-cutlist/package.json | 4 +-
plugins/plugin-cutonfold/data.mjs | 2 +-
plugins/plugin-cutonfold/package.json | 4 +-
plugins/plugin-dimension/data.mjs | 2 +-
plugins/plugin-dimension/package.json | 4 +-
plugins/plugin-flip/data.mjs | 2 +-
plugins/plugin-flip/package.json | 4 +-
plugins/plugin-gore/data.mjs | 2 +-
plugins/plugin-gore/package.json | 4 +-
plugins/plugin-grainline/data.mjs | 2 +-
plugins/plugin-grainline/package.json | 4 +-
plugins/plugin-i18n/data.mjs | 2 +-
plugins/plugin-i18n/package.json | 4 +-
plugins/plugin-logo/data.mjs | 2 +-
plugins/plugin-logo/package.json | 4 +-
plugins/plugin-measurements/data.mjs | 2 +-
plugins/plugin-measurements/package.json | 4 +-
plugins/plugin-mirror/data.mjs | 2 +-
plugins/plugin-mirror/package.json | 4 +-
plugins/plugin-notches/data.mjs | 2 +-
plugins/plugin-notches/package.json | 4 +-
plugins/plugin-round/data.mjs | 2 +-
plugins/plugin-round/package.json | 4 +-
plugins/plugin-scalebox/data.mjs | 2 +-
plugins/plugin-scalebox/package.json | 4 +-
plugins/plugin-sprinkle/data.mjs | 2 +-
plugins/plugin-sprinkle/package.json | 4 +-
plugins/plugin-svgattr/data.mjs | 2 +-
plugins/plugin-svgattr/package.json | 4 +-
plugins/plugin-theme/data.mjs | 2 +-
plugins/plugin-theme/package.json | 4 +-
plugins/plugin-timing/data.mjs | 2 +-
plugins/plugin-timing/package.json | 4 +-
plugins/plugin-title/data.mjs | 2 +-
plugins/plugin-title/package.json | 4 +-
plugins/plugin-versionfree-svg/data.mjs | 2 +-
plugins/plugin-versionfree-svg/package.json | 4 +-
sites/backend/package.json | 2 +-
sites/dev/package.json | 2 +-
sites/email/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
sites/sanity/package.json | 2 +-
sites/shared/package.json | 2 +-
174 files changed, 393 insertions(+), 393 deletions(-)
diff --git a/designs/aaron/data.mjs b/designs/aaron/data.mjs
index 07e90261c5a..7c52a3bbe96 100644
--- a/designs/aaron/data.mjs
+++ b/designs/aaron/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/aaron'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/aaron/package.json b/designs/aaron/package.json
index c189bf47fd8..5ee52b87d88 100644
--- a/designs/aaron/package.json
+++ b/designs/aaron/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/aaron",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a A-shirt or tank top",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/albert/data.mjs b/designs/albert/data.mjs
index e8875a9219d..cfe77e3484c 100644
--- a/designs/albert/data.mjs
+++ b/designs/albert/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/albert'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/albert/package.json b/designs/albert/package.json
index 78c2e0bb315..6c6df4fb559 100644
--- a/designs/albert/package.json
+++ b/designs/albert/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/albert",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for an apron",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bee/data.mjs b/designs/bee/data.mjs
index 06676faeb07..406d75a975f 100644
--- a/designs/bee/data.mjs
+++ b/designs/bee/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bee'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/bee/package.json b/designs/bee/package.json
index 1b0fef07311..dd314c642a1 100644
--- a/designs/bee/package.json
+++ b/designs/bee/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bee",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a bikini top",
"author": "bobgeorgethe3rd (https://github.com/bobgeorgethe3rd)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/bella": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/bella": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bella/data.mjs b/designs/bella/data.mjs
index e9a8f23e4ae..a9e243054c8 100644
--- a/designs/bella/data.mjs
+++ b/designs/bella/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bella'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/bella/package.json b/designs/bella/package.json
index 33f7c660248..2f6456865c9 100644
--- a/designs/bella/package.json
+++ b/designs/bella/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bella",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a womenswear bodice block",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/benjamin/data.mjs b/designs/benjamin/data.mjs
index 86d8fc52d14..5ac59c56e75 100644
--- a/designs/benjamin/data.mjs
+++ b/designs/benjamin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/benjamin'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/benjamin/package.json b/designs/benjamin/package.json
index 98ea3e49d32..990889ddc91 100644
--- a/designs/benjamin/package.json
+++ b/designs/benjamin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/benjamin",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a bow tie",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bent/data.mjs b/designs/bent/data.mjs
index ae4aac86e9c..7cc89d8cfa0 100644
--- a/designs/bent/data.mjs
+++ b/designs/bent/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bent'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/bent/package.json b/designs/bent/package.json
index d0900ae7910..293fc950eb9 100644
--- a/designs/bent/package.json
+++ b/designs/bent/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bent",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a menswear body block with a two-part sleeve",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,11 +46,11 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bob/data.mjs b/designs/bob/data.mjs
index 72a948f3434..e005d8bc0ed 100644
--- a/designs/bob/data.mjs
+++ b/designs/bob/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bob'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/bob/package.json b/designs/bob/package.json
index 46ac9b16faf..9a13de5822e 100644
--- a/designs/bob/package.json
+++ b/designs/bob/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bob",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a bib",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/breanna/data.mjs b/designs/breanna/data.mjs
index c9275d31389..ad19b582ea7 100644
--- a/designs/breanna/data.mjs
+++ b/designs/breanna/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/breanna'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/breanna/package.json b/designs/breanna/package.json
index 56b422c7ff7..9d1f9277efe 100644
--- a/designs/breanna/package.json
+++ b/designs/breanna/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/breanna",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a basic body block for womenswear",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/brian/data.mjs b/designs/brian/data.mjs
index af53fe45ad4..64e29c387c0 100644
--- a/designs/brian/data.mjs
+++ b/designs/brian/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/brian'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/brian/package.json b/designs/brian/package.json
index 579edc14702..754f1d952eb 100644
--- a/designs/brian/package.json
+++ b/designs/brian/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/brian",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a basic body block for menswear",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bruce/data.mjs b/designs/bruce/data.mjs
index 818e7da6a62..f86191ab4a7 100644
--- a/designs/bruce/data.mjs
+++ b/designs/bruce/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bruce'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/bruce/package.json b/designs/bruce/package.json
index a652bed492a..888f53efa51 100644
--- a/designs/bruce/package.json
+++ b/designs/bruce/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bruce",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for boxer briefs",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/carlita/data.mjs b/designs/carlita/data.mjs
index cc56be51163..958146af066 100644
--- a/designs/carlita/data.mjs
+++ b/designs/carlita/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/carlita'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/carlita/package.json b/designs/carlita/package.json
index b61eb84b816..049a8644f55 100644
--- a/designs/carlita/package.json
+++ b/designs/carlita/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/carlita",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,13 +46,13 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/bent": "3.0.0-alpha.4",
- "@freesewing/carlton": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/bent": "3.0.0-alpha.7",
+ "@freesewing/carlton": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/carlton/data.mjs b/designs/carlton/data.mjs
index 08cbb2e707b..18c4fed59c4 100644
--- a/designs/carlton/data.mjs
+++ b/designs/carlton/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/carlton'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/carlton/package.json b/designs/carlton/package.json
index 8532d0e6842..712832d5938 100644
--- a/designs/carlton/package.json
+++ b/designs/carlton/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/carlton",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/bent": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/bent": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/cathrin/data.mjs b/designs/cathrin/data.mjs
index cc44a19038a..ab5dcff0aef 100644
--- a/designs/cathrin/data.mjs
+++ b/designs/cathrin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/cathrin'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/cathrin/package.json b/designs/cathrin/package.json
index b3c11e9175c..4e0c9d55cc8 100644
--- a/designs/cathrin/package.json
+++ b/designs/cathrin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/cathrin",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a underbust corset / waist trainer",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/charlie/data.mjs b/designs/charlie/data.mjs
index 30434e96c62..c550d08a182 100644
--- a/designs/charlie/data.mjs
+++ b/designs/charlie/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/charlie'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/charlie/package.json b/designs/charlie/package.json
index 757173c3057..668d724466a 100644
--- a/designs/charlie/package.json
+++ b/designs/charlie/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/charlie",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for chino trousers",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-bartack": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/titan": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-bartack": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/titan": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/cornelius/data.mjs b/designs/cornelius/data.mjs
index a601f8ba6a4..32083943bc9 100644
--- a/designs/cornelius/data.mjs
+++ b/designs/cornelius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/cornelius'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/cornelius/package.json b/designs/cornelius/package.json
index 75dcfc98e59..e7c4883fcb4 100644
--- a/designs/cornelius/package.json
+++ b/designs/cornelius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/cornelius",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for cycling breeches, based on the Keystone drafting system",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/diana/data.mjs b/designs/diana/data.mjs
index 655c09c6ae0..a00308de9ef 100644
--- a/designs/diana/data.mjs
+++ b/designs/diana/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/diana'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/diana/package.json b/designs/diana/package.json
index 8a165670a16..106c04178c7 100644
--- a/designs/diana/package.json
+++ b/designs/diana/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/diana",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a top with a draped neck",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/examples/data.mjs b/designs/examples/data.mjs
index dc7dc5bc9ed..533c61773f6 100644
--- a/designs/examples/data.mjs
+++ b/designs/examples/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/examples'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/examples/package.json b/designs/examples/package.json
index 8eed47e9e36..8596720c7c1 100644
--- a/designs/examples/package.json
+++ b/designs/examples/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/examples",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern holding examples for our documentation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -41,10 +41,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-gore": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-gore": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/florence/data.mjs b/designs/florence/data.mjs
index 5092087f612..da5a87138c0 100644
--- a/designs/florence/data.mjs
+++ b/designs/florence/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/florence'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/florence/package.json b/designs/florence/package.json
index d049b064b5e..731631a7f13 100644
--- a/designs/florence/package.json
+++ b/designs/florence/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/florence",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a face mask",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/florent/data.mjs b/designs/florent/data.mjs
index ad5113b3af5..b6008163e79 100644
--- a/designs/florent/data.mjs
+++ b/designs/florent/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/florent'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/florent/package.json b/designs/florent/package.json
index e5f7ae63eda..c5ad7b2b370 100644
--- a/designs/florent/package.json
+++ b/designs/florent/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/florent",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a flat cap",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/hi/data.mjs b/designs/hi/data.mjs
index a5736382253..d4d14d8432a 100644
--- a/designs/hi/data.mjs
+++ b/designs/hi/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hi'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/hi/package.json b/designs/hi/package.json
index 8266efccc04..94ecee08715 100644
--- a/designs/hi/package.json
+++ b/designs/hi/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hi",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a shark plush toy",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/holmes/data.mjs b/designs/holmes/data.mjs
index f6d5f4406ef..9d405c3a458 100644
--- a/designs/holmes/data.mjs
+++ b/designs/holmes/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/holmes'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/holmes/package.json b/designs/holmes/package.json
index 6260c5046ab..434cf52ee4c 100644
--- a/designs/holmes/package.json
+++ b/designs/holmes/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/holmes",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a Sherlock Holmes hat",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {
- "@freesewing/plugin-gore": "3.0.0-alpha.4"
+ "@freesewing/plugin-gore": "3.0.0-alpha.7"
},
"devDependencies": {
"mocha": "10.0.0",
diff --git a/designs/hortensia/data.mjs b/designs/hortensia/data.mjs
index 612c5ee22aa..f950a52e0dc 100644
--- a/designs/hortensia/data.mjs
+++ b/designs/hortensia/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hortensia'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/hortensia/package.json b/designs/hortensia/package.json
index 3b4e2708a2a..3136134f7d7 100644
--- a/designs/hortensia/package.json
+++ b/designs/hortensia/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hortensia",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a handbag",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/huey/data.mjs b/designs/huey/data.mjs
index 9073f7b7683..cbe4b69ad13 100644
--- a/designs/huey/data.mjs
+++ b/designs/huey/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/huey'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/huey/package.json b/designs/huey/package.json
index 6570b423e25..70daa9c7dbf 100644
--- a/designs/huey/package.json
+++ b/designs/huey/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/huey",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a zip-up hoodie",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/hugo/data.mjs b/designs/hugo/data.mjs
index 2aed5e1b01e..bda9f0c33cc 100644
--- a/designs/hugo/data.mjs
+++ b/designs/hugo/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hugo'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/hugo/package.json b/designs/hugo/package.json
index 835e2f169c8..1cd4679a416 100644
--- a/designs/hugo/package.json
+++ b/designs/hugo/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hugo",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a hooded jumper with raglan sleeves",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/jaeger/data.mjs b/designs/jaeger/data.mjs
index 66b64f6d164..f6422e13a17 100644
--- a/designs/jaeger/data.mjs
+++ b/designs/jaeger/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/jaeger'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/jaeger/package.json b/designs/jaeger/package.json
index 155232cccd1..0abe136d607 100644
--- a/designs/jaeger/package.json
+++ b/designs/jaeger/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/jaeger",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a sport coat style jacket",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/bent": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/bent": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/legend/data.mjs b/designs/legend/data.mjs
index e0ff39183a9..eec5c60188c 100644
--- a/designs/legend/data.mjs
+++ b/designs/legend/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/legend'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/legend/package.json b/designs/legend/package.json
index f9f3202910d..af01889c6bc 100644
--- a/designs/legend/package.json
+++ b/designs/legend/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/legend",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern to document pattern notation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-buttons": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/lucy/data.mjs b/designs/lucy/data.mjs
index 8d3a5850486..98bb78602cf 100644
--- a/designs/lucy/data.mjs
+++ b/designs/lucy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/lucy'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/lucy/package.json b/designs/lucy/package.json
index 0ec63d34904..8b8d5dbda21 100644
--- a/designs/lucy/package.json
+++ b/designs/lucy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lucy",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a historical tie-on pocket",
"author": "SeaZeeZee (https://github.com/SeaZeeZee)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/lunetius/data.mjs b/designs/lunetius/data.mjs
index 88e3d15b411..e60e37d9605 100644
--- a/designs/lunetius/data.mjs
+++ b/designs/lunetius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/lunetius'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/lunetius/package.json b/designs/lunetius/package.json
index a0d478bd64b..8633f431aed 100644
--- a/designs/lunetius/package.json
+++ b/designs/lunetius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lunetius",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a lacerna, a historical Roman cloak",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/noble/data.mjs b/designs/noble/data.mjs
index 8252192eb39..beb9f319481 100644
--- a/designs/noble/data.mjs
+++ b/designs/noble/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/noble'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/noble/package.json b/designs/noble/package.json
index 8ce4d05a068..35ecac7ea7f 100644
--- a/designs/noble/package.json
+++ b/designs/noble/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/noble",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a princess seam bodice block",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/bella": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/bella": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/octoplushy/data.mjs b/designs/octoplushy/data.mjs
index b35449ec0aa..8dacbcd194d 100644
--- a/designs/octoplushy/data.mjs
+++ b/designs/octoplushy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/octoplushy'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/octoplushy/package.json b/designs/octoplushy/package.json
index e19536dd9e2..37e78ca439d 100644
--- a/designs/octoplushy/package.json
+++ b/designs/octoplushy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/octoplushy",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for an octopus plushy toy",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/paco/data.mjs b/designs/paco/data.mjs
index 2da135bfa89..48909bc2447 100644
--- a/designs/paco/data.mjs
+++ b/designs/paco/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/paco'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/paco/package.json b/designs/paco/package.json
index 9ffb098c785..aa2e75347a4 100644
--- a/designs/paco/package.json
+++ b/designs/paco/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/paco",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for summer pants",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/titan": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/titan": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/penelope/data.mjs b/designs/penelope/data.mjs
index dbdee60acbe..b4a455cdc4f 100644
--- a/designs/penelope/data.mjs
+++ b/designs/penelope/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/penelope'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/penelope/package.json b/designs/penelope/package.json
index 0a36dee9c44..1b9ccd49d48 100644
--- a/designs/penelope/package.json
+++ b/designs/penelope/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/penelope",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a pencil skirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/plugintest/data.mjs b/designs/plugintest/data.mjs
index 95bb57e66e6..99eb3d51c25 100644
--- a/designs/plugintest/data.mjs
+++ b/designs/plugintest/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugintest'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/plugintest/package.json b/designs/plugintest/package.json
index 3b076af46f3..74428779de5 100644
--- a/designs/plugintest/package.json
+++ b/designs/plugintest/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugintest",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern to test (y)our plugins",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,29 +46,29 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-banner": "3.0.0-alpha.4",
- "@freesewing/plugin-bartack": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4",
- "@freesewing/plugin-buttons": "3.0.0-alpha.4",
- "@freesewing/plugin-cutonfold": "3.0.0-alpha.4",
- "@freesewing/plugin-dimension": "3.0.0-alpha.4",
- "@freesewing/plugin-flip": "3.0.0-alpha.4",
- "@freesewing/plugin-gore": "3.0.0-alpha.4",
- "@freesewing/plugin-grainline": "3.0.0-alpha.4",
- "@freesewing/plugin-i18n": "3.0.0-alpha.4",
- "@freesewing/plugin-logo": "3.0.0-alpha.4",
- "@freesewing/plugin-measurements": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-notches": "3.0.0-alpha.4",
- "@freesewing/plugin-round": "3.0.0-alpha.4",
- "@freesewing/plugin-scalebox": "3.0.0-alpha.4",
- "@freesewing/plugin-sprinkle": "3.0.0-alpha.4",
- "@freesewing/plugin-svgattr": "3.0.0-alpha.4",
- "@freesewing/plugin-theme": "3.0.0-alpha.4",
- "@freesewing/plugin-title": "3.0.0-alpha.4",
- "@freesewing/plugin-validate": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-banner": "3.0.0-alpha.7",
+ "@freesewing/plugin-bartack": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.7",
+ "@freesewing/plugin-cutonfold": "3.0.0-alpha.7",
+ "@freesewing/plugin-dimension": "3.0.0-alpha.7",
+ "@freesewing/plugin-flip": "3.0.0-alpha.7",
+ "@freesewing/plugin-gore": "3.0.0-alpha.7",
+ "@freesewing/plugin-grainline": "3.0.0-alpha.7",
+ "@freesewing/plugin-i18n": "3.0.0-alpha.7",
+ "@freesewing/plugin-logo": "3.0.0-alpha.7",
+ "@freesewing/plugin-measurements": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-notches": "3.0.0-alpha.7",
+ "@freesewing/plugin-round": "3.0.0-alpha.7",
+ "@freesewing/plugin-scalebox": "3.0.0-alpha.7",
+ "@freesewing/plugin-sprinkle": "3.0.0-alpha.7",
+ "@freesewing/plugin-svgattr": "3.0.0-alpha.7",
+ "@freesewing/plugin-theme": "3.0.0-alpha.7",
+ "@freesewing/plugin-title": "3.0.0-alpha.7",
+ "@freesewing/plugin-validate": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/rendertest/data.mjs b/designs/rendertest/data.mjs
index 73295d4db36..fb2755519d7 100644
--- a/designs/rendertest/data.mjs
+++ b/designs/rendertest/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/rendertest'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/rendertest/package.json b/designs/rendertest/package.json
index 3883a838255..a344c25b3dc 100644
--- a/designs/rendertest/package.json
+++ b/designs/rendertest/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/rendertest",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern to test (y)our render engine our CSS",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/sandy/data.mjs b/designs/sandy/data.mjs
index fe924abfdfd..723c6c63542 100644
--- a/designs/sandy/data.mjs
+++ b/designs/sandy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/sandy'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/sandy/package.json b/designs/sandy/package.json
index 29772842f54..1c4f93e853f 100644
--- a/designs/sandy/package.json
+++ b/designs/sandy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sandy",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a circle skirt",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/shin/data.mjs b/designs/shin/data.mjs
index e04845ede15..a8f446a56bd 100644
--- a/designs/shin/data.mjs
+++ b/designs/shin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/shin'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/shin/package.json b/designs/shin/package.json
index 5ff162561ac..fbb07259b85 100644
--- a/designs/shin/package.json
+++ b/designs/shin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/shin",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for swim trunks",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/simon/data.mjs b/designs/simon/data.mjs
index ee05cc2c38a..3076363dd59 100644
--- a/designs/simon/data.mjs
+++ b/designs/simon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/simon'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/simon/package.json b/designs/simon/package.json
index 8591e8abb37..43d63535a7b 100644
--- a/designs/simon/package.json
+++ b/designs/simon/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/simon",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a button down shirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,11 +46,11 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4",
- "@freesewing/plugin-flip": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7",
+ "@freesewing/plugin-flip": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/simone/data.mjs b/designs/simone/data.mjs
index 32a7fda2dbb..98fe303c3f8 100644
--- a/designs/simone/data.mjs
+++ b/designs/simone/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/simone'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/simone/package.json b/designs/simone/package.json
index 47e6de06082..d645eb705fc 100644
--- a/designs/simone/package.json
+++ b/designs/simone/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/simone",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a button down shirt (Simone = Simon for people with breasts)",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/simon": "3.0.0-alpha.4",
- "@freesewing/plugin-flip": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/simon": "3.0.0-alpha.7",
+ "@freesewing/plugin-flip": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/sven/data.mjs b/designs/sven/data.mjs
index 8b155031989..2e272bcfebf 100644
--- a/designs/sven/data.mjs
+++ b/designs/sven/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/sven'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/sven/package.json b/designs/sven/package.json
index f9d333a4fed..a8f14bed6ee 100644
--- a/designs/sven/package.json
+++ b/designs/sven/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sven",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a straightforward sweater",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tamiko/data.mjs b/designs/tamiko/data.mjs
index e9b71ca8869..03f5df987fd 100644
--- a/designs/tamiko/data.mjs
+++ b/designs/tamiko/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tamiko'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/tamiko/package.json b/designs/tamiko/package.json
index ab5504b59aa..c2544937906 100644
--- a/designs/tamiko/package.json
+++ b/designs/tamiko/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tamiko",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a zero-waste top",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/teagan/data.mjs b/designs/teagan/data.mjs
index 3cfcfb66c9a..3abb68d9c42 100644
--- a/designs/teagan/data.mjs
+++ b/designs/teagan/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/teagan'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/teagan/package.json b/designs/teagan/package.json
index 66de0b6655b..2c9b0586e4f 100644
--- a/designs/teagan/package.json
+++ b/designs/teagan/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/teagan",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a T-shirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tiberius/data.mjs b/designs/tiberius/data.mjs
index bda915eebdf..b1a26d0ae15 100644
--- a/designs/tiberius/data.mjs
+++ b/designs/tiberius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tiberius'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/tiberius/package.json b/designs/tiberius/package.json
index 93896c33113..92ea9e1b9db 100644
--- a/designs/tiberius/package.json
+++ b/designs/tiberius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tiberius",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a tunica, a historical Roman tunic",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/titan/data.mjs b/designs/titan/data.mjs
index 27ac2456461..cb57e65f207 100644
--- a/designs/titan/data.mjs
+++ b/designs/titan/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/titan'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/titan/package.json b/designs/titan/package.json
index e807a29bb57..0ae54e1d010 100644
--- a/designs/titan/package.json
+++ b/designs/titan/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/titan",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a unisex trouser block",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/trayvon/data.mjs b/designs/trayvon/data.mjs
index 7b22194cebb..f9084300ee0 100644
--- a/designs/trayvon/data.mjs
+++ b/designs/trayvon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/trayvon'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/trayvon/package.json b/designs/trayvon/package.json
index 7625e069eda..88011c23222 100644
--- a/designs/trayvon/package.json
+++ b/designs/trayvon/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/trayvon",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a tie",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/snapseries": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/snapseries": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tutorial/data.mjs b/designs/tutorial/data.mjs
index d89f18456cc..c2cf2209ddf 100644
--- a/designs/tutorial/data.mjs
+++ b/designs/tutorial/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tutorial'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/tutorial/package.json b/designs/tutorial/package.json
index bb3d6b0458c..6a9a4f387c9 100644
--- a/designs/tutorial/package.json
+++ b/designs/tutorial/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tutorial",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a baby bib that's used in our tutorial",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/unice/data.mjs b/designs/unice/data.mjs
index f3963896cb9..2d779a815f6 100644
--- a/designs/unice/data.mjs
+++ b/designs/unice/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/unice'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/unice/package.json b/designs/unice/package.json
index e4bf23283a5..2507f9bf815 100644
--- a/designs/unice/package.json
+++ b/designs/unice/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/unice",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a basic, highly-customizable underwear pattern",
"author": "Anna Puk (https://github.com/anna-puk)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/ursula/data.mjs b/designs/ursula/data.mjs
index 653d32540c4..cf7df173e2a 100644
--- a/designs/ursula/data.mjs
+++ b/designs/ursula/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/ursula'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/ursula/package.json b/designs/ursula/package.json
index 8a363b458d9..181c177ec70 100644
--- a/designs/ursula/package.json
+++ b/designs/ursula/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/ursula",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a basic, highly-customizable underwear pattern",
"author": "Natalia Sayang (https://github.com/nataliasayang)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/wahid/data.mjs b/designs/wahid/data.mjs
index 11322e5d82c..a02c1e5c9a1 100644
--- a/designs/wahid/data.mjs
+++ b/designs/wahid/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/wahid'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/wahid/package.json b/designs/wahid/package.json
index 0a4601cef7d..5ed2bc736a7 100644
--- a/designs/wahid/package.json
+++ b/designs/wahid/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/wahid",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a classic fitted waistcoat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/walburga/data.mjs b/designs/walburga/data.mjs
index 76da49d81b3..7a7bb01b34c 100644
--- a/designs/walburga/data.mjs
+++ b/designs/walburga/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/walburga'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/walburga/package.json b/designs/walburga/package.json
index e60a8a579f9..4e3abdfe20d 100644
--- a/designs/walburga/package.json
+++ b/designs/walburga/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/walburga",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a wappenrock (tabard/surcoat), a historical European/medieval (ish) garment",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/waralee/data.mjs b/designs/waralee/data.mjs
index e6359700996..5defe600bed 100644
--- a/designs/waralee/data.mjs
+++ b/designs/waralee/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/waralee'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/waralee/package.json b/designs/waralee/package.json
index 56ec145391b..19bcde735d8 100644
--- a/designs/waralee/package.json
+++ b/designs/waralee/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/waralee",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for wrap pants",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/yuri/data.mjs b/designs/yuri/data.mjs
index 9f6cc6cfc00..24a2c98badb 100644
--- a/designs/yuri/data.mjs
+++ b/designs/yuri/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/yuri'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/designs/yuri/package.json b/designs/yuri/package.json
index 2d13b7702a0..db07e836c99 100644
--- a/designs/yuri/package.json
+++ b/designs/yuri/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/yuri",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing pattern for a fancy zipless sweater based on the Huey hoodie",
"author": "biou (https://github.com/biou)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4",
- "@freesewing/plugin-bundle": "3.0.0-alpha.4",
- "@freesewing/brian": "3.0.0-alpha.4",
- "@freesewing/plugin-bust": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.7",
+ "@freesewing/brian": "3.0.0-alpha.7",
+ "@freesewing/plugin-bust": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/lerna.json b/lerna.json
index 6165d665013..1bb80f0c1d2 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/core/data.mjs b/packages/core/data.mjs
index 1cde1acba61..429b5387710 100644
--- a/packages/core/data.mjs
+++ b/packages/core/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/core'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/core/package.json b/packages/core/package.json
index c58929b5f90..6abea85100d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/core",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A library for creating made-to-measure sewing patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/i18n/data.mjs b/packages/i18n/data.mjs
index eb16332841d..12f6c227359 100644
--- a/packages/i18n/data.mjs
+++ b/packages/i18n/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/i18n'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/i18n/package.json b/packages/i18n/package.json
index 0c3aa6a558c..1c124817bc6 100644
--- a/packages/i18n/package.json
+++ b/packages/i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/i18n",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Translations for the FreeSewing project",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -44,7 +44,7 @@
"wcibuild_step7": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/pattern-info": "3.0.0-alpha.4"
+ "@freesewing/pattern-info": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/packages/models/data.mjs b/packages/models/data.mjs
index b0ce863e722..4ae6857148f 100644
--- a/packages/models/data.mjs
+++ b/packages/models/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/models'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/models/package.json b/packages/models/package.json
index af0a7e037fc..f58b768e032 100644
--- a/packages/models/package.json
+++ b/packages/models/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/models",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Body measurements data for a range of default sizes",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/new-design/data.mjs b/packages/new-design/data.mjs
index bb68fceb4d0..d80117b4d68 100644
--- a/packages/new-design/data.mjs
+++ b/packages/new-design/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/new-design'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/new-design/package.json b/packages/new-design/package.json
index 9c1fd2d57e8..6bae0a3cce3 100644
--- a/packages/new-design/package.json
+++ b/packages/new-design/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/new-design",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Initializer package for a new FreeSewing design: npx @freesewing/new-design",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/prettier-config/data.mjs b/packages/prettier-config/data.mjs
index 8d41a7fec4b..746a43fe9b8 100644
--- a/packages/prettier-config/data.mjs
+++ b/packages/prettier-config/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/prettier-config'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json
index 0ad9940c691..d5680f1ee28 100644
--- a/packages/prettier-config/package.json
+++ b/packages/prettier-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/prettier-config",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "FreeSewing's shared configuration for prettier",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/rehype-highlight-lines/data.mjs b/packages/rehype-highlight-lines/data.mjs
index 20d5b112a87..125b660f16d 100644
--- a/packages/rehype-highlight-lines/data.mjs
+++ b/packages/rehype-highlight-lines/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = 'rehype-highlight-lines'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/rehype-highlight-lines/package.json b/packages/rehype-highlight-lines/package.json
index f30cccff249..31978859d86 100644
--- a/packages/rehype-highlight-lines/package.json
+++ b/packages/rehype-highlight-lines/package.json
@@ -1,6 +1,6 @@
{
"name": "rehype-highlight-lines",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A Rehype plugin to add highlighted lines to code blocks",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/rehype-jargon/data.mjs b/packages/rehype-jargon/data.mjs
index 79bc96a8b48..81f9db330a2 100644
--- a/packages/rehype-jargon/data.mjs
+++ b/packages/rehype-jargon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = 'rehype-jargon'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/rehype-jargon/package.json b/packages/rehype-jargon/package.json
index b6573717750..7fd5fab0ca8 100644
--- a/packages/rehype-jargon/package.json
+++ b/packages/rehype-jargon/package.json
@@ -1,6 +1,6 @@
{
"name": "rehype-jargon",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A Rehype plugin for jargon terms",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/snapseries/data.mjs b/packages/snapseries/data.mjs
index c91bfeabf65..0fcc426f4ac 100644
--- a/packages/snapseries/data.mjs
+++ b/packages/snapseries/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/snapseries'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/packages/snapseries/package.json b/packages/snapseries/package.json
index dcba5def691..54c4fd1b98d 100644
--- a/packages/snapseries/package.json
+++ b/packages/snapseries/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/snapseries",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A series of common sizes for elastics and other series to be used with snapped percentage options",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/plugins/plugin-banner/data.mjs b/plugins/plugin-banner/data.mjs
index 9c2dfeeca30..5fe4cd649f2 100644
--- a/plugins/plugin-banner/data.mjs
+++ b/plugins/plugin-banner/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-banner'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-banner/package.json b/plugins/plugin-banner/package.json
index 7cebca75d59..74edc47acd9 100644
--- a/plugins/plugin-banner/package.json
+++ b/plugins/plugin-banner/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-banner",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to repeat text on a path",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-bartack/data.mjs b/plugins/plugin-bartack/data.mjs
index 0d050eaa056..3466459e0ed 100644
--- a/plugins/plugin-bartack/data.mjs
+++ b/plugins/plugin-bartack/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bartack'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-bartack/package.json b/plugins/plugin-bartack/package.json
index cbc7441e9bd..ff5c7370c15 100644
--- a/plugins/plugin-bartack/package.json
+++ b/plugins/plugin-bartack/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bartack",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add bartacks to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-bundle/data.mjs b/plugins/plugin-bundle/data.mjs
index fdd6b82c46b..54a125d44c6 100644
--- a/plugins/plugin-bundle/data.mjs
+++ b/plugins/plugin-bundle/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bundle'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-bundle/package.json b/plugins/plugin-bundle/package.json
index 9159ea74ff2..616d5cfb31a 100644
--- a/plugins/plugin-bundle/package.json
+++ b/plugins/plugin-bundle/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bundle",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "An umbrella package of 8 essential FreeSewing build-time plugins",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -47,23 +47,23 @@
"wcibuild_step2": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
"mocha": "10.0.0",
"chai": "4.2.0",
- "@freesewing/plugin-banner": "3.0.0-alpha.4",
- "@freesewing/plugin-buttons": "3.0.0-alpha.4",
- "@freesewing/plugin-cutonfold": "3.0.0-alpha.4",
- "@freesewing/plugin-dimension": "3.0.0-alpha.4",
- "@freesewing/plugin-grainline": "3.0.0-alpha.4",
- "@freesewing/plugin-logo": "3.0.0-alpha.4",
- "@freesewing/plugin-mirror": "3.0.0-alpha.4",
- "@freesewing/plugin-title": "3.0.0-alpha.4",
- "@freesewing/plugin-scalebox": "3.0.0-alpha.4",
- "@freesewing/plugin-round": "3.0.0-alpha.4",
- "@freesewing/plugin-sprinkle": "3.0.0-alpha.4"
+ "@freesewing/plugin-banner": "3.0.0-alpha.7",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.7",
+ "@freesewing/plugin-cutonfold": "3.0.0-alpha.7",
+ "@freesewing/plugin-dimension": "3.0.0-alpha.7",
+ "@freesewing/plugin-grainline": "3.0.0-alpha.7",
+ "@freesewing/plugin-logo": "3.0.0-alpha.7",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.7",
+ "@freesewing/plugin-title": "3.0.0-alpha.7",
+ "@freesewing/plugin-scalebox": "3.0.0-alpha.7",
+ "@freesewing/plugin-round": "3.0.0-alpha.7",
+ "@freesewing/plugin-sprinkle": "3.0.0-alpha.7"
},
"files": [
"dist/*",
diff --git a/plugins/plugin-bust/data.mjs b/plugins/plugin-bust/data.mjs
index b16d1d56dc7..894edec7946 100644
--- a/plugins/plugin-bust/data.mjs
+++ b/plugins/plugin-bust/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bust'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-bust/package.json b/plugins/plugin-bust/package.json
index c56f0623652..36944705879 100644
--- a/plugins/plugin-bust/package.json
+++ b/plugins/plugin-bust/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bust",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin that helps with bust-adjusting menswear patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-buttons/data.mjs b/plugins/plugin-buttons/data.mjs
index 7770a858272..b403a278561 100644
--- a/plugins/plugin-buttons/data.mjs
+++ b/plugins/plugin-buttons/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-buttons'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-buttons/package.json b/plugins/plugin-buttons/package.json
index 0f6b0d9aa32..41e2e78b6d8 100644
--- a/plugins/plugin-buttons/package.json
+++ b/plugins/plugin-buttons/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-buttons",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin that provides button, buttonhole, and snap snippets",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-cutlist/data.mjs b/plugins/plugin-cutlist/data.mjs
index 7ca571e6e5f..d10621fda9f 100644
--- a/plugins/plugin-cutlist/data.mjs
+++ b/plugins/plugin-cutlist/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-cutlist'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-cutlist/package.json b/plugins/plugin-cutlist/package.json
index 877a74671f2..87ffd4bcf1c 100644
--- a/plugins/plugin-cutlist/package.json
+++ b/plugins/plugin-cutlist/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-cutlist",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to store data regarding a pattern's cutlist",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-cutonfold/data.mjs b/plugins/plugin-cutonfold/data.mjs
index 0c74bc30573..35f7eb5ce88 100644
--- a/plugins/plugin-cutonfold/data.mjs
+++ b/plugins/plugin-cutonfold/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-cutonfold'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-cutonfold/package.json b/plugins/plugin-cutonfold/package.json
index 4c5108a0be6..02d540b32cf 100644
--- a/plugins/plugin-cutonfold/package.json
+++ b/plugins/plugin-cutonfold/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-cutonfold",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add cut-on-fold indicators on your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-dimension/data.mjs b/plugins/plugin-dimension/data.mjs
index 2157d95674c..8a6284b9af3 100644
--- a/plugins/plugin-dimension/data.mjs
+++ b/plugins/plugin-dimension/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-dimension'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-dimension/package.json b/plugins/plugin-dimension/package.json
index 33e67448239..d979356ed55 100644
--- a/plugins/plugin-dimension/package.json
+++ b/plugins/plugin-dimension/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-dimension",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add dimensions to your (paperless) pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-flip/data.mjs b/plugins/plugin-flip/data.mjs
index d61c473ed7c..add09398beb 100644
--- a/plugins/plugin-flip/data.mjs
+++ b/plugins/plugin-flip/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-flip'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-flip/package.json b/plugins/plugin-flip/package.json
index 02c97802b1e..b471daf243b 100644
--- a/plugins/plugin-flip/package.json
+++ b/plugins/plugin-flip/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-flip",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to flip parts horizontally",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-gore/data.mjs b/plugins/plugin-gore/data.mjs
index 445c645cc4b..17272c52c54 100644
--- a/plugins/plugin-gore/data.mjs
+++ b/plugins/plugin-gore/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-gore'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-gore/package.json b/plugins/plugin-gore/package.json
index 3ae89fa7eeb..e8db799728c 100644
--- a/plugins/plugin-gore/package.json
+++ b/plugins/plugin-gore/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-gore",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to generate gores for a semi-sphere or dome",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-grainline/data.mjs b/plugins/plugin-grainline/data.mjs
index 13664b7cb6a..344d1a836ea 100644
--- a/plugins/plugin-grainline/data.mjs
+++ b/plugins/plugin-grainline/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-grainline'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-grainline/package.json b/plugins/plugin-grainline/package.json
index 165666f7afd..bbdf96a0b4c 100644
--- a/plugins/plugin-grainline/package.json
+++ b/plugins/plugin-grainline/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-grainline",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add grainline indicators on your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-i18n/data.mjs b/plugins/plugin-i18n/data.mjs
index 892029a2a72..c6cb172e23f 100644
--- a/plugins/plugin-i18n/data.mjs
+++ b/plugins/plugin-i18n/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-i18n'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-i18n/package.json b/plugins/plugin-i18n/package.json
index e490cbf23ea..0db50199437 100644
--- a/plugins/plugin-i18n/package.json
+++ b/plugins/plugin-i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-i18n",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin for pattern translation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-logo/data.mjs b/plugins/plugin-logo/data.mjs
index e6636323887..75873cf77da 100644
--- a/plugins/plugin-logo/data.mjs
+++ b/plugins/plugin-logo/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-logo'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-logo/package.json b/plugins/plugin-logo/package.json
index ce7464ffb0b..ddc275578ff 100644
--- a/plugins/plugin-logo/package.json
+++ b/plugins/plugin-logo/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-logo",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add our logo to your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-measurements/data.mjs b/plugins/plugin-measurements/data.mjs
index 0c71554382e..cc3e2275bdf 100644
--- a/plugins/plugin-measurements/data.mjs
+++ b/plugins/plugin-measurements/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-measurements'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-measurements/package.json b/plugins/plugin-measurements/package.json
index e71ccd4a1f2..c6f9f9105c5 100644
--- a/plugins/plugin-measurements/package.json
+++ b/plugins/plugin-measurements/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-measurements",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin that adds additional measurements that can be calculated from existing ones",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-mirror/data.mjs b/plugins/plugin-mirror/data.mjs
index 87079e53796..032ae08234a 100644
--- a/plugins/plugin-mirror/data.mjs
+++ b/plugins/plugin-mirror/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-mirror'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-mirror/package.json b/plugins/plugin-mirror/package.json
index bec9fc9440a..d85fd057b98 100644
--- a/plugins/plugin-mirror/package.json
+++ b/plugins/plugin-mirror/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-mirror",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to mirror points or paths",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-notches/data.mjs b/plugins/plugin-notches/data.mjs
index 35125163f11..3a0ea107a09 100644
--- a/plugins/plugin-notches/data.mjs
+++ b/plugins/plugin-notches/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-notches'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-notches/package.json b/plugins/plugin-notches/package.json
index 973693fbf53..712d6f37d45 100644
--- a/plugins/plugin-notches/package.json
+++ b/plugins/plugin-notches/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-notches",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin that provides front and back notch snippets",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-round/data.mjs b/plugins/plugin-round/data.mjs
index 9d708a66bee..5224334a6d0 100644
--- a/plugins/plugin-round/data.mjs
+++ b/plugins/plugin-round/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-round'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-round/package.json b/plugins/plugin-round/package.json
index 942a41995cb..e44c6998693 100644
--- a/plugins/plugin-round/package.json
+++ b/plugins/plugin-round/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-round",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to round corners",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-scalebox/data.mjs b/plugins/plugin-scalebox/data.mjs
index 80238db6e3d..d7ecbf41b15 100644
--- a/plugins/plugin-scalebox/data.mjs
+++ b/plugins/plugin-scalebox/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-scalebox'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-scalebox/package.json b/plugins/plugin-scalebox/package.json
index 46b5d713a06..db32c624be7 100644
--- a/plugins/plugin-scalebox/package.json
+++ b/plugins/plugin-scalebox/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-scalebox",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add a scalebox to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-sprinkle/data.mjs b/plugins/plugin-sprinkle/data.mjs
index c6f71588b93..1e022dad75e 100644
--- a/plugins/plugin-sprinkle/data.mjs
+++ b/plugins/plugin-sprinkle/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-sprinkle'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-sprinkle/package.json b/plugins/plugin-sprinkle/package.json
index bb3f79efc5d..3910fd61d00 100644
--- a/plugins/plugin-sprinkle/package.json
+++ b/plugins/plugin-sprinkle/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-sprinkle",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to bulk-add snippets to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-svgattr/data.mjs b/plugins/plugin-svgattr/data.mjs
index a6b51033d84..c322768b05e 100644
--- a/plugins/plugin-svgattr/data.mjs
+++ b/plugins/plugin-svgattr/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-svgattr'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-svgattr/package.json b/plugins/plugin-svgattr/package.json
index c8744143d7d..7ee83a056e9 100644
--- a/plugins/plugin-svgattr/package.json
+++ b/plugins/plugin-svgattr/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-svgattr",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to set SVG attributes",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-theme/data.mjs b/plugins/plugin-theme/data.mjs
index 6acf41b38dc..ce2a95a9e6b 100644
--- a/plugins/plugin-theme/data.mjs
+++ b/plugins/plugin-theme/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-theme'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-theme/package.json b/plugins/plugin-theme/package.json
index 561a4f3c9d9..fd4273c8ca7 100644
--- a/plugins/plugin-theme/package.json
+++ b/plugins/plugin-theme/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-theme",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin that provides a default theme",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-timing/data.mjs b/plugins/plugin-timing/data.mjs
index 382e55a0804..6355f521dd2 100644
--- a/plugins/plugin-timing/data.mjs
+++ b/plugins/plugin-timing/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-timing'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-timing/package.json b/plugins/plugin-timing/package.json
index 73b69dfc7ee..5e5acd7adfb 100644
--- a/plugins/plugin-timing/package.json
+++ b/plugins/plugin-timing/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-timing",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to record the time it takes to draft your pattern parts",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-title/data.mjs b/plugins/plugin-title/data.mjs
index b9afaf18a73..3e54a8da070 100644
--- a/plugins/plugin-title/data.mjs
+++ b/plugins/plugin-title/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-title'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-title/package.json b/plugins/plugin-title/package.json
index bd919bd0271..2c708dcfdcc 100644
--- a/plugins/plugin-title/package.json
+++ b/plugins/plugin-title/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-title",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to add a title to your pattern parts",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-versionfree-svg/data.mjs b/plugins/plugin-versionfree-svg/data.mjs
index fc1051bb0d3..93b4313959f 100644
--- a/plugins/plugin-versionfree-svg/data.mjs
+++ b/plugins/plugin-versionfree-svg/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-versionfree-svg'
-export const version = '3.0.0-alpha.4'
+export const version = '3.0.0-alpha.7'
export const data = { name, version }
diff --git a/plugins/plugin-versionfree-svg/package.json b/plugins/plugin-versionfree-svg/package.json
index 653fcfd4a15..28966eb922b 100644
--- a/plugins/plugin-versionfree-svg/package.json
+++ b/plugins/plugin-versionfree-svg/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-versionfree-svg",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "A FreeSewing plugin to keep version info out of your SVG to allow easy diffs across versions",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.4"
+ "@freesewing/core": "3.0.0-alpha.7"
},
"dependencies": {},
"devDependencies": {
diff --git a/sites/backend/package.json b/sites/backend/package.json
index 6b271c6b4d7..8cc1a866808 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "backend.freesewing.org",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "FreeSewing backend",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/dev/package.json b/sites/dev/package.json
index 5f3823a9206..db0331f0341 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/dev",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "FreeSewing website with documentation for contributors & developers",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/email/package.json b/sites/email/package.json
index c33980dc69e..f631baa0b5c 100644
--- a/sites/email/package.json
+++ b/sites/email/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/email",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Holds maizzle instance to generate the FreeSewing email templates",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 74a92aec6f4..47a29196e24 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lab",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "FreeSewing website to test various patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/org/package.json b/sites/org/package.json
index 593877a4782..d8971618bb7 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/org",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "FreeSewing website",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index bf6b4b78d31..f5245ad4b1f 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sanity",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Code for the sanity.io CMS",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/shared/package.json b/sites/shared/package.json
index 231aedb9c6c..ab1edbc3575 100644
--- a/sites/shared/package.json
+++ b/sites/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/shared",
- "version": "3.0.0-alpha.4",
+ "version": "3.0.0-alpha.7",
"description": "Shared code and React components for different websites",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
From 0b84449aa0ce332f9bebc0cbf1f686b0ce0a221b Mon Sep 17 00:00:00 2001
From: Joost De Cock
Date: Thu, 16 Mar 2023 20:36:45 +0100
Subject: [PATCH 0146/1524] release: 3.0.0-alpha.8
---
designs/aaron/data.mjs | 2 +-
designs/aaron/package.json | 10 ++--
designs/albert/data.mjs | 2 +-
designs/albert/package.json | 6 +--
designs/bee/data.mjs | 2 +-
designs/bee/package.json | 8 ++--
designs/bella/data.mjs | 2 +-
designs/bella/package.json | 6 +--
designs/benjamin/data.mjs | 2 +-
designs/benjamin/package.json | 6 +--
designs/bent/data.mjs | 2 +-
designs/bent/package.json | 12 ++---
designs/bob/data.mjs | 2 +-
designs/bob/package.json | 6 +--
designs/breanna/data.mjs | 2 +-
designs/breanna/package.json | 8 ++--
designs/brian/data.mjs | 2 +-
designs/brian/package.json | 10 ++--
designs/bruce/data.mjs | 2 +-
designs/bruce/package.json | 6 +--
designs/carlita/data.mjs | 2 +-
designs/carlita/package.json | 16 +++----
designs/carlton/data.mjs | 2 +-
designs/carlton/package.json | 14 +++---
designs/cathrin/data.mjs | 2 +-
designs/cathrin/package.json | 6 +--
designs/charlie/data.mjs | 2 +-
designs/charlie/package.json | 14 +++---
designs/cornelius/data.mjs | 2 +-
designs/cornelius/package.json | 6 +--
designs/diana/data.mjs | 2 +-
designs/diana/package.json | 10 ++--
designs/examples/data.mjs | 2 +-
designs/examples/package.json | 10 ++--
designs/florence/data.mjs | 2 +-
designs/florence/package.json | 6 +--
designs/florent/data.mjs | 2 +-
designs/florent/package.json | 6 +--
designs/hi/data.mjs | 2 +-
designs/hi/package.json | 6 +--
designs/holmes/data.mjs | 2 +-
designs/holmes/package.json | 10 ++--
designs/hortensia/data.mjs | 2 +-
designs/hortensia/package.json | 6 +--
designs/huey/data.mjs | 2 +-
designs/huey/package.json | 10 ++--
designs/hugo/data.mjs | 2 +-
designs/hugo/package.json | 10 ++--
designs/jaeger/data.mjs | 2 +-
designs/jaeger/package.json | 14 +++---
designs/legend/data.mjs | 2 +-
designs/legend/package.json | 8 ++--
designs/lucy/data.mjs | 2 +-
designs/lucy/package.json | 6 +--
designs/lunetius/data.mjs | 2 +-
designs/lunetius/package.json | 6 +--
designs/noble/data.mjs | 2 +-
designs/noble/package.json | 8 ++--
designs/octoplushy/data.mjs | 2 +-
designs/octoplushy/package.json | 6 +--
designs/paco/data.mjs | 2 +-
designs/paco/package.json | 10 ++--
designs/penelope/data.mjs | 2 +-
designs/penelope/package.json | 6 +--
designs/plugintest/data.mjs | 2 +-
designs/plugintest/package.json | 48 ++++++++++----------
designs/rendertest/data.mjs | 2 +-
designs/rendertest/package.json | 6 +--
designs/sandy/data.mjs | 2 +-
designs/sandy/package.json | 8 ++--
designs/shin/data.mjs | 2 +-
designs/shin/package.json | 8 ++--
designs/simon/data.mjs | 2 +-
designs/simon/package.json | 12 ++---
designs/simone/data.mjs | 2 +-
designs/simone/package.json | 14 +++---
designs/sven/data.mjs | 2 +-
designs/sven/package.json | 10 ++--
designs/tamiko/data.mjs | 2 +-
designs/tamiko/package.json | 8 ++--
designs/teagan/data.mjs | 2 +-
designs/teagan/package.json | 10 ++--
designs/tiberius/data.mjs | 2 +-
designs/tiberius/package.json | 6 +--
designs/titan/data.mjs | 2 +-
designs/titan/package.json | 8 ++--
designs/trayvon/data.mjs | 2 +-
designs/trayvon/package.json | 8 ++--
designs/tutorial/data.mjs | 2 +-
designs/tutorial/package.json | 6 +--
designs/unice/data.mjs | 2 +-
designs/unice/package.json | 6 +--
designs/ursula/data.mjs | 2 +-
designs/ursula/package.json | 6 +--
designs/wahid/data.mjs | 2 +-
designs/wahid/package.json | 10 ++--
designs/walburga/data.mjs | 2 +-
designs/walburga/package.json | 6 +--
designs/waralee/data.mjs | 2 +-
designs/waralee/package.json | 6 +--
designs/yuri/data.mjs | 2 +-
designs/yuri/package.json | 10 ++--
lerna.json | 2 +-
packages/core/data.mjs | 2 +-
packages/core/package.json | 2 +-
packages/i18n/data.mjs | 2 +-
packages/i18n/package.json | 4 +-
packages/models/data.mjs | 2 +-
packages/models/package.json | 2 +-
packages/new-design/data.mjs | 2 +-
packages/new-design/package.json | 2 +-
packages/prettier-config/data.mjs | 2 +-
packages/prettier-config/package.json | 2 +-
packages/rehype-highlight-lines/data.mjs | 2 +-
packages/rehype-highlight-lines/package.json | 2 +-
packages/rehype-jargon/data.mjs | 2 +-
packages/rehype-jargon/package.json | 2 +-
packages/snapseries/data.mjs | 2 +-
packages/snapseries/package.json | 2 +-
plugins/plugin-banner/data.mjs | 2 +-
plugins/plugin-banner/package.json | 4 +-
plugins/plugin-bartack/data.mjs | 2 +-
plugins/plugin-bartack/package.json | 4 +-
plugins/plugin-bundle/data.mjs | 2 +-
plugins/plugin-bundle/package.json | 26 +++++------
plugins/plugin-bust/data.mjs | 2 +-
plugins/plugin-bust/package.json | 4 +-
plugins/plugin-buttons/data.mjs | 2 +-
plugins/plugin-buttons/package.json | 4 +-
plugins/plugin-cutlist/data.mjs | 2 +-
plugins/plugin-cutlist/package.json | 4 +-
plugins/plugin-cutonfold/data.mjs | 2 +-
plugins/plugin-cutonfold/package.json | 4 +-
plugins/plugin-dimension/data.mjs | 2 +-
plugins/plugin-dimension/package.json | 4 +-
plugins/plugin-flip/data.mjs | 2 +-
plugins/plugin-flip/package.json | 4 +-
plugins/plugin-gore/data.mjs | 2 +-
plugins/plugin-gore/package.json | 4 +-
plugins/plugin-grainline/data.mjs | 2 +-
plugins/plugin-grainline/package.json | 4 +-
plugins/plugin-i18n/data.mjs | 2 +-
plugins/plugin-i18n/package.json | 4 +-
plugins/plugin-logo/data.mjs | 2 +-
plugins/plugin-logo/package.json | 4 +-
plugins/plugin-measurements/data.mjs | 2 +-
plugins/plugin-measurements/package.json | 4 +-
plugins/plugin-mirror/data.mjs | 2 +-
plugins/plugin-mirror/package.json | 4 +-
plugins/plugin-notches/data.mjs | 2 +-
plugins/plugin-notches/package.json | 4 +-
plugins/plugin-round/data.mjs | 2 +-
plugins/plugin-round/package.json | 4 +-
plugins/plugin-scalebox/data.mjs | 2 +-
plugins/plugin-scalebox/package.json | 4 +-
plugins/plugin-sprinkle/data.mjs | 2 +-
plugins/plugin-sprinkle/package.json | 4 +-
plugins/plugin-svgattr/data.mjs | 2 +-
plugins/plugin-svgattr/package.json | 4 +-
plugins/plugin-theme/data.mjs | 2 +-
plugins/plugin-theme/package.json | 4 +-
plugins/plugin-timing/data.mjs | 2 +-
plugins/plugin-timing/package.json | 4 +-
plugins/plugin-title/data.mjs | 2 +-
plugins/plugin-title/package.json | 4 +-
plugins/plugin-versionfree-svg/data.mjs | 2 +-
plugins/plugin-versionfree-svg/package.json | 4 +-
sites/backend/package.json | 2 +-
sites/dev/package.json | 2 +-
sites/email/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
sites/sanity/package.json | 2 +-
sites/shared/package.json | 2 +-
174 files changed, 393 insertions(+), 393 deletions(-)
diff --git a/designs/aaron/data.mjs b/designs/aaron/data.mjs
index 7c52a3bbe96..d9ade4f429a 100644
--- a/designs/aaron/data.mjs
+++ b/designs/aaron/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/aaron'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/aaron/package.json b/designs/aaron/package.json
index 5ee52b87d88..cde4b732c60 100644
--- a/designs/aaron/package.json
+++ b/designs/aaron/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/aaron",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a A-shirt or tank top",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/albert/data.mjs b/designs/albert/data.mjs
index cfe77e3484c..ba866b48b5a 100644
--- a/designs/albert/data.mjs
+++ b/designs/albert/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/albert'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/albert/package.json b/designs/albert/package.json
index 6c6df4fb559..e855e07cbd2 100644
--- a/designs/albert/package.json
+++ b/designs/albert/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/albert",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for an apron",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bee/data.mjs b/designs/bee/data.mjs
index 406d75a975f..256c4c3fca6 100644
--- a/designs/bee/data.mjs
+++ b/designs/bee/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bee'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/bee/package.json b/designs/bee/package.json
index dd314c642a1..2eb83ba5677 100644
--- a/designs/bee/package.json
+++ b/designs/bee/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bee",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a bikini top",
"author": "bobgeorgethe3rd (https://github.com/bobgeorgethe3rd)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/bella": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/bella": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bella/data.mjs b/designs/bella/data.mjs
index a9e243054c8..92f2f704d4a 100644
--- a/designs/bella/data.mjs
+++ b/designs/bella/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bella'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/bella/package.json b/designs/bella/package.json
index 2f6456865c9..184a03c27c2 100644
--- a/designs/bella/package.json
+++ b/designs/bella/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bella",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a womenswear bodice block",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/benjamin/data.mjs b/designs/benjamin/data.mjs
index 5ac59c56e75..14f82a1fe4a 100644
--- a/designs/benjamin/data.mjs
+++ b/designs/benjamin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/benjamin'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/benjamin/package.json b/designs/benjamin/package.json
index 990889ddc91..376c5d0ba29 100644
--- a/designs/benjamin/package.json
+++ b/designs/benjamin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/benjamin",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a bow tie",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bent/data.mjs b/designs/bent/data.mjs
index 7cc89d8cfa0..271ec268810 100644
--- a/designs/bent/data.mjs
+++ b/designs/bent/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bent'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/bent/package.json b/designs/bent/package.json
index 293fc950eb9..357b1717a62 100644
--- a/designs/bent/package.json
+++ b/designs/bent/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bent",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a menswear body block with a two-part sleeve",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,11 +46,11 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bob/data.mjs b/designs/bob/data.mjs
index e005d8bc0ed..26750dcbf5b 100644
--- a/designs/bob/data.mjs
+++ b/designs/bob/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bob'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/bob/package.json b/designs/bob/package.json
index 9a13de5822e..6accafe981b 100644
--- a/designs/bob/package.json
+++ b/designs/bob/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bob",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a bib",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/breanna/data.mjs b/designs/breanna/data.mjs
index ad19b582ea7..d72758e3a08 100644
--- a/designs/breanna/data.mjs
+++ b/designs/breanna/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/breanna'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/breanna/package.json b/designs/breanna/package.json
index 9d1f9277efe..c6abe3f3517 100644
--- a/designs/breanna/package.json
+++ b/designs/breanna/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/breanna",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a basic body block for womenswear",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/brian/data.mjs b/designs/brian/data.mjs
index 64e29c387c0..1f552a7a79c 100644
--- a/designs/brian/data.mjs
+++ b/designs/brian/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/brian'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/brian/package.json b/designs/brian/package.json
index 754f1d952eb..cee905a28f7 100644
--- a/designs/brian/package.json
+++ b/designs/brian/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/brian",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a basic body block for menswear",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/bruce/data.mjs b/designs/bruce/data.mjs
index f86191ab4a7..a6d634dff9a 100644
--- a/designs/bruce/data.mjs
+++ b/designs/bruce/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/bruce'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/bruce/package.json b/designs/bruce/package.json
index 888f53efa51..db695af6f82 100644
--- a/designs/bruce/package.json
+++ b/designs/bruce/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/bruce",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for boxer briefs",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/carlita/data.mjs b/designs/carlita/data.mjs
index 958146af066..fb07132140a 100644
--- a/designs/carlita/data.mjs
+++ b/designs/carlita/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/carlita'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/carlita/package.json b/designs/carlita/package.json
index 049a8644f55..71db2ce0926 100644
--- a/designs/carlita/package.json
+++ b/designs/carlita/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/carlita",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,13 +46,13 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/bent": "3.0.0-alpha.7",
- "@freesewing/carlton": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/bent": "3.0.0-alpha.8",
+ "@freesewing/carlton": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/carlton/data.mjs b/designs/carlton/data.mjs
index 18c4fed59c4..2fd4a3b08f4 100644
--- a/designs/carlton/data.mjs
+++ b/designs/carlton/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/carlton'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/carlton/package.json b/designs/carlton/package.json
index 712832d5938..591c6b44b5f 100644
--- a/designs/carlton/package.json
+++ b/designs/carlton/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/carlton",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for Sherlock Holmes cosplay; Or just a nice long coat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/bent": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/bent": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/cathrin/data.mjs b/designs/cathrin/data.mjs
index ab5dcff0aef..937e4b4860f 100644
--- a/designs/cathrin/data.mjs
+++ b/designs/cathrin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/cathrin'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/cathrin/package.json b/designs/cathrin/package.json
index 4e0c9d55cc8..54293275b5d 100644
--- a/designs/cathrin/package.json
+++ b/designs/cathrin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/cathrin",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a underbust corset / waist trainer",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/charlie/data.mjs b/designs/charlie/data.mjs
index c550d08a182..006565dedc9 100644
--- a/designs/charlie/data.mjs
+++ b/designs/charlie/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/charlie'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/charlie/package.json b/designs/charlie/package.json
index 668d724466a..0be813dc479 100644
--- a/designs/charlie/package.json
+++ b/designs/charlie/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/charlie",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for chino trousers",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-bartack": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/titan": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-bartack": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/titan": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/cornelius/data.mjs b/designs/cornelius/data.mjs
index 32083943bc9..87e8dcf80e3 100644
--- a/designs/cornelius/data.mjs
+++ b/designs/cornelius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/cornelius'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/cornelius/package.json b/designs/cornelius/package.json
index e7c4883fcb4..31d604e1f60 100644
--- a/designs/cornelius/package.json
+++ b/designs/cornelius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/cornelius",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for cycling breeches, based on the Keystone drafting system",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/diana/data.mjs b/designs/diana/data.mjs
index a00308de9ef..8c81f05c964 100644
--- a/designs/diana/data.mjs
+++ b/designs/diana/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/diana'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/diana/package.json b/designs/diana/package.json
index 106c04178c7..6502175b722 100644
--- a/designs/diana/package.json
+++ b/designs/diana/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/diana",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a top with a draped neck",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/examples/data.mjs b/designs/examples/data.mjs
index 533c61773f6..f27f5c33a1f 100644
--- a/designs/examples/data.mjs
+++ b/designs/examples/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/examples'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/examples/package.json b/designs/examples/package.json
index 8596720c7c1..1121b724579 100644
--- a/designs/examples/package.json
+++ b/designs/examples/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/examples",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern holding examples for our documentation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -41,10 +41,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-gore": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-gore": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/florence/data.mjs b/designs/florence/data.mjs
index da5a87138c0..e34cbedca9b 100644
--- a/designs/florence/data.mjs
+++ b/designs/florence/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/florence'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/florence/package.json b/designs/florence/package.json
index 731631a7f13..eb6b94c0e88 100644
--- a/designs/florence/package.json
+++ b/designs/florence/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/florence",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a face mask",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/florent/data.mjs b/designs/florent/data.mjs
index b6008163e79..1f1c4f3ef21 100644
--- a/designs/florent/data.mjs
+++ b/designs/florent/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/florent'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/florent/package.json b/designs/florent/package.json
index c5ad7b2b370..239a395e5ba 100644
--- a/designs/florent/package.json
+++ b/designs/florent/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/florent",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a flat cap",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/hi/data.mjs b/designs/hi/data.mjs
index d4d14d8432a..aa18ff1a363 100644
--- a/designs/hi/data.mjs
+++ b/designs/hi/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hi'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/hi/package.json b/designs/hi/package.json
index 94ecee08715..a30f3b5f3fc 100644
--- a/designs/hi/package.json
+++ b/designs/hi/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hi",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a shark plush toy",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/holmes/data.mjs b/designs/holmes/data.mjs
index 9d405c3a458..512a3ec8879 100644
--- a/designs/holmes/data.mjs
+++ b/designs/holmes/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/holmes'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/holmes/package.json b/designs/holmes/package.json
index 434cf52ee4c..70ee71d3ff9 100644
--- a/designs/holmes/package.json
+++ b/designs/holmes/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/holmes",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a Sherlock Holmes hat",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {
- "@freesewing/plugin-gore": "3.0.0-alpha.7"
+ "@freesewing/plugin-gore": "3.0.0-alpha.8"
},
"devDependencies": {
"mocha": "10.0.0",
diff --git a/designs/hortensia/data.mjs b/designs/hortensia/data.mjs
index f950a52e0dc..b2f4df7ec08 100644
--- a/designs/hortensia/data.mjs
+++ b/designs/hortensia/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hortensia'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/hortensia/package.json b/designs/hortensia/package.json
index 3136134f7d7..8dd04038bda 100644
--- a/designs/hortensia/package.json
+++ b/designs/hortensia/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hortensia",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a handbag",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/huey/data.mjs b/designs/huey/data.mjs
index cbe4b69ad13..29c00244361 100644
--- a/designs/huey/data.mjs
+++ b/designs/huey/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/huey'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/huey/package.json b/designs/huey/package.json
index 70daa9c7dbf..c2abdeb8e7d 100644
--- a/designs/huey/package.json
+++ b/designs/huey/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/huey",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a zip-up hoodie",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/hugo/data.mjs b/designs/hugo/data.mjs
index bda9f0c33cc..5ea60d3f5d9 100644
--- a/designs/hugo/data.mjs
+++ b/designs/hugo/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/hugo'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/hugo/package.json b/designs/hugo/package.json
index 1cd4679a416..176b3f7356f 100644
--- a/designs/hugo/package.json
+++ b/designs/hugo/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/hugo",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a hooded jumper with raglan sleeves",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/jaeger/data.mjs b/designs/jaeger/data.mjs
index f6422e13a17..31f1f9a98a8 100644
--- a/designs/jaeger/data.mjs
+++ b/designs/jaeger/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/jaeger'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/jaeger/package.json b/designs/jaeger/package.json
index 0abe136d607..1309d1c07e5 100644
--- a/designs/jaeger/package.json
+++ b/designs/jaeger/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/jaeger",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a sport coat style jacket",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/bent": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/bent": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/legend/data.mjs b/designs/legend/data.mjs
index eec5c60188c..b73b89d264d 100644
--- a/designs/legend/data.mjs
+++ b/designs/legend/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/legend'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/legend/package.json b/designs/legend/package.json
index af01889c6bc..b8890cd8ee0 100644
--- a/designs/legend/package.json
+++ b/designs/legend/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/legend",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern to document pattern notation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-buttons": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/lucy/data.mjs b/designs/lucy/data.mjs
index 98bb78602cf..90bf93fdf9d 100644
--- a/designs/lucy/data.mjs
+++ b/designs/lucy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/lucy'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/lucy/package.json b/designs/lucy/package.json
index 8b8d5dbda21..09c662bb95f 100644
--- a/designs/lucy/package.json
+++ b/designs/lucy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lucy",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a historical tie-on pocket",
"author": "SeaZeeZee (https://github.com/SeaZeeZee)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/lunetius/data.mjs b/designs/lunetius/data.mjs
index e60e37d9605..9a6a76d7712 100644
--- a/designs/lunetius/data.mjs
+++ b/designs/lunetius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/lunetius'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/lunetius/package.json b/designs/lunetius/package.json
index 8633f431aed..8c8a5c8ee0e 100644
--- a/designs/lunetius/package.json
+++ b/designs/lunetius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lunetius",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a lacerna, a historical Roman cloak",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/noble/data.mjs b/designs/noble/data.mjs
index beb9f319481..0b472186f1e 100644
--- a/designs/noble/data.mjs
+++ b/designs/noble/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/noble'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/noble/package.json b/designs/noble/package.json
index 35ecac7ea7f..f84f3331acc 100644
--- a/designs/noble/package.json
+++ b/designs/noble/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/noble",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a princess seam bodice block",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/bella": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/bella": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/octoplushy/data.mjs b/designs/octoplushy/data.mjs
index 8dacbcd194d..7b3f6153f78 100644
--- a/designs/octoplushy/data.mjs
+++ b/designs/octoplushy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/octoplushy'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/octoplushy/package.json b/designs/octoplushy/package.json
index 37e78ca439d..cb29006c91f 100644
--- a/designs/octoplushy/package.json
+++ b/designs/octoplushy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/octoplushy",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for an octopus plushy toy",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/paco/data.mjs b/designs/paco/data.mjs
index 48909bc2447..5eca91a51eb 100644
--- a/designs/paco/data.mjs
+++ b/designs/paco/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/paco'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/paco/package.json b/designs/paco/package.json
index aa2e75347a4..b81e1ba3765 100644
--- a/designs/paco/package.json
+++ b/designs/paco/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/paco",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for summer pants",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/titan": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/titan": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/penelope/data.mjs b/designs/penelope/data.mjs
index b4a455cdc4f..639a8eee1a2 100644
--- a/designs/penelope/data.mjs
+++ b/designs/penelope/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/penelope'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/penelope/package.json b/designs/penelope/package.json
index 1b9ccd49d48..2d41450c434 100644
--- a/designs/penelope/package.json
+++ b/designs/penelope/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/penelope",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a pencil skirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/plugintest/data.mjs b/designs/plugintest/data.mjs
index 99eb3d51c25..928d6273ba0 100644
--- a/designs/plugintest/data.mjs
+++ b/designs/plugintest/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugintest'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/plugintest/package.json b/designs/plugintest/package.json
index 74428779de5..88a900a531c 100644
--- a/designs/plugintest/package.json
+++ b/designs/plugintest/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugintest",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern to test (y)our plugins",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,29 +46,29 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-banner": "3.0.0-alpha.7",
- "@freesewing/plugin-bartack": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7",
- "@freesewing/plugin-buttons": "3.0.0-alpha.7",
- "@freesewing/plugin-cutonfold": "3.0.0-alpha.7",
- "@freesewing/plugin-dimension": "3.0.0-alpha.7",
- "@freesewing/plugin-flip": "3.0.0-alpha.7",
- "@freesewing/plugin-gore": "3.0.0-alpha.7",
- "@freesewing/plugin-grainline": "3.0.0-alpha.7",
- "@freesewing/plugin-i18n": "3.0.0-alpha.7",
- "@freesewing/plugin-logo": "3.0.0-alpha.7",
- "@freesewing/plugin-measurements": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-notches": "3.0.0-alpha.7",
- "@freesewing/plugin-round": "3.0.0-alpha.7",
- "@freesewing/plugin-scalebox": "3.0.0-alpha.7",
- "@freesewing/plugin-sprinkle": "3.0.0-alpha.7",
- "@freesewing/plugin-svgattr": "3.0.0-alpha.7",
- "@freesewing/plugin-theme": "3.0.0-alpha.7",
- "@freesewing/plugin-title": "3.0.0-alpha.7",
- "@freesewing/plugin-validate": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-banner": "3.0.0-alpha.8",
+ "@freesewing/plugin-bartack": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.8",
+ "@freesewing/plugin-cutonfold": "3.0.0-alpha.8",
+ "@freesewing/plugin-dimension": "3.0.0-alpha.8",
+ "@freesewing/plugin-flip": "3.0.0-alpha.8",
+ "@freesewing/plugin-gore": "3.0.0-alpha.8",
+ "@freesewing/plugin-grainline": "3.0.0-alpha.8",
+ "@freesewing/plugin-i18n": "3.0.0-alpha.8",
+ "@freesewing/plugin-logo": "3.0.0-alpha.8",
+ "@freesewing/plugin-measurements": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-notches": "3.0.0-alpha.8",
+ "@freesewing/plugin-round": "3.0.0-alpha.8",
+ "@freesewing/plugin-scalebox": "3.0.0-alpha.8",
+ "@freesewing/plugin-sprinkle": "3.0.0-alpha.8",
+ "@freesewing/plugin-svgattr": "3.0.0-alpha.8",
+ "@freesewing/plugin-theme": "3.0.0-alpha.8",
+ "@freesewing/plugin-title": "3.0.0-alpha.8",
+ "@freesewing/plugin-validate": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/rendertest/data.mjs b/designs/rendertest/data.mjs
index fb2755519d7..8cbeee64674 100644
--- a/designs/rendertest/data.mjs
+++ b/designs/rendertest/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/rendertest'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/rendertest/package.json b/designs/rendertest/package.json
index a344c25b3dc..6c2794366ed 100644
--- a/designs/rendertest/package.json
+++ b/designs/rendertest/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/rendertest",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern to test (y)our render engine our CSS",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/sandy/data.mjs b/designs/sandy/data.mjs
index 723c6c63542..9f55f8aeae0 100644
--- a/designs/sandy/data.mjs
+++ b/designs/sandy/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/sandy'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/sandy/package.json b/designs/sandy/package.json
index 1c4f93e853f..d468229b5c3 100644
--- a/designs/sandy/package.json
+++ b/designs/sandy/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sandy",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a circle skirt",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/shin/data.mjs b/designs/shin/data.mjs
index a8f446a56bd..674ff684ef3 100644
--- a/designs/shin/data.mjs
+++ b/designs/shin/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/shin'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/shin/package.json b/designs/shin/package.json
index fbb07259b85..6e4a0ec55a0 100644
--- a/designs/shin/package.json
+++ b/designs/shin/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/shin",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for swim trunks",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/simon/data.mjs b/designs/simon/data.mjs
index 3076363dd59..dee16aac339 100644
--- a/designs/simon/data.mjs
+++ b/designs/simon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/simon'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/simon/package.json b/designs/simon/package.json
index 43d63535a7b..a64e63e22bf 100644
--- a/designs/simon/package.json
+++ b/designs/simon/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/simon",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a button down shirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,11 +46,11 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7",
- "@freesewing/plugin-flip": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8",
+ "@freesewing/plugin-flip": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/simone/data.mjs b/designs/simone/data.mjs
index 98fe303c3f8..1d318d53887 100644
--- a/designs/simone/data.mjs
+++ b/designs/simone/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/simone'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/simone/package.json b/designs/simone/package.json
index d645eb705fc..7737f21c5fb 100644
--- a/designs/simone/package.json
+++ b/designs/simone/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/simone",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a button down shirt (Simone = Simon for people with breasts)",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,12 +46,12 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/simon": "3.0.0-alpha.7",
- "@freesewing/plugin-flip": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/simon": "3.0.0-alpha.8",
+ "@freesewing/plugin-flip": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/sven/data.mjs b/designs/sven/data.mjs
index 2e272bcfebf..08595312265 100644
--- a/designs/sven/data.mjs
+++ b/designs/sven/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/sven'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/sven/package.json b/designs/sven/package.json
index a8f14bed6ee..aa71a0cfd36 100644
--- a/designs/sven/package.json
+++ b/designs/sven/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sven",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a straightforward sweater",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tamiko/data.mjs b/designs/tamiko/data.mjs
index 03f5df987fd..9623f4300e1 100644
--- a/designs/tamiko/data.mjs
+++ b/designs/tamiko/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tamiko'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/tamiko/package.json b/designs/tamiko/package.json
index c2544937906..a768d822f80 100644
--- a/designs/tamiko/package.json
+++ b/designs/tamiko/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tamiko",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a zero-waste top",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/teagan/data.mjs b/designs/teagan/data.mjs
index 3abb68d9c42..44260ff1c09 100644
--- a/designs/teagan/data.mjs
+++ b/designs/teagan/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/teagan'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/teagan/package.json b/designs/teagan/package.json
index 2c9b0586e4f..0d185fdf27c 100644
--- a/designs/teagan/package.json
+++ b/designs/teagan/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/teagan",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a T-shirt",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tiberius/data.mjs b/designs/tiberius/data.mjs
index b1a26d0ae15..fe236ff91fd 100644
--- a/designs/tiberius/data.mjs
+++ b/designs/tiberius/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tiberius'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/tiberius/package.json b/designs/tiberius/package.json
index 92ea9e1b9db..7b6b253e8a9 100644
--- a/designs/tiberius/package.json
+++ b/designs/tiberius/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tiberius",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a tunica, a historical Roman tunic",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/titan/data.mjs b/designs/titan/data.mjs
index cb57e65f207..98c2a8aa279 100644
--- a/designs/titan/data.mjs
+++ b/designs/titan/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/titan'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/titan/package.json b/designs/titan/package.json
index 0ae54e1d010..c68e8e3c9e3 100644
--- a/designs/titan/package.json
+++ b/designs/titan/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/titan",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a unisex trouser block",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step3": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/trayvon/data.mjs b/designs/trayvon/data.mjs
index f9084300ee0..e3f6d4fd067 100644
--- a/designs/trayvon/data.mjs
+++ b/designs/trayvon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/trayvon'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/trayvon/package.json b/designs/trayvon/package.json
index 88011c23222..6c1785cb1fb 100644
--- a/designs/trayvon/package.json
+++ b/designs/trayvon/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/trayvon",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a tie",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,9 +46,9 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/snapseries": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/snapseries": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/tutorial/data.mjs b/designs/tutorial/data.mjs
index c2cf2209ddf..ec0f4f10bb9 100644
--- a/designs/tutorial/data.mjs
+++ b/designs/tutorial/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/tutorial'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/tutorial/package.json b/designs/tutorial/package.json
index 6a9a4f387c9..b27be30bda1 100644
--- a/designs/tutorial/package.json
+++ b/designs/tutorial/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/tutorial",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a baby bib that's used in our tutorial",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/unice/data.mjs b/designs/unice/data.mjs
index 2d779a815f6..23964bb7a1e 100644
--- a/designs/unice/data.mjs
+++ b/designs/unice/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/unice'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/unice/package.json b/designs/unice/package.json
index 2507f9bf815..507c5aad46f 100644
--- a/designs/unice/package.json
+++ b/designs/unice/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/unice",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a basic, highly-customizable underwear pattern",
"author": "Anna Puk (https://github.com/anna-puk)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/ursula/data.mjs b/designs/ursula/data.mjs
index cf7df173e2a..1f082b3a100 100644
--- a/designs/ursula/data.mjs
+++ b/designs/ursula/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/ursula'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/ursula/package.json b/designs/ursula/package.json
index 181c177ec70..6b562d6514e 100644
--- a/designs/ursula/package.json
+++ b/designs/ursula/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/ursula",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a basic, highly-customizable underwear pattern",
"author": "Natalia Sayang (https://github.com/nataliasayang)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step4": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/wahid/data.mjs b/designs/wahid/data.mjs
index a02c1e5c9a1..5444c0d84b3 100644
--- a/designs/wahid/data.mjs
+++ b/designs/wahid/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/wahid'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/wahid/package.json b/designs/wahid/package.json
index 5ed2bc736a7..abe5806f224 100644
--- a/designs/wahid/package.json
+++ b/designs/wahid/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/wahid",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a classic fitted waistcoat",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/walburga/data.mjs b/designs/walburga/data.mjs
index 7a7bb01b34c..4f8a29eff6f 100644
--- a/designs/walburga/data.mjs
+++ b/designs/walburga/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/walburga'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/walburga/package.json b/designs/walburga/package.json
index 4e3abdfe20d..17dfd67cac9 100644
--- a/designs/walburga/package.json
+++ b/designs/walburga/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/walburga",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a wappenrock (tabard/surcoat), a historical European/medieval (ish) garment",
"author": "Starfetch (https://github.com/starfetch)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/waralee/data.mjs b/designs/waralee/data.mjs
index 5defe600bed..46007352f32 100644
--- a/designs/waralee/data.mjs
+++ b/designs/waralee/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/waralee'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/waralee/package.json b/designs/waralee/package.json
index 19bcde735d8..aaa319b9855 100644
--- a/designs/waralee/package.json
+++ b/designs/waralee/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/waralee",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for wrap pants",
"author": "woutervdub (https://github.com/woutervdub)",
"homepage": "https://freesewing.org/",
@@ -46,8 +46,8 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/designs/yuri/data.mjs b/designs/yuri/data.mjs
index 24a2c98badb..580994fc47b 100644
--- a/designs/yuri/data.mjs
+++ b/designs/yuri/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/yuri'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/designs/yuri/package.json b/designs/yuri/package.json
index db07e836c99..e22c18410ea 100644
--- a/designs/yuri/package.json
+++ b/designs/yuri/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/yuri",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing pattern for a fancy zipless sweater based on the Huey hoodie",
"author": "biou (https://github.com/biou)",
"homepage": "https://freesewing.org/",
@@ -46,10 +46,10 @@
"wcibuild_step5": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7",
- "@freesewing/plugin-bundle": "3.0.0-alpha.7",
- "@freesewing/brian": "3.0.0-alpha.7",
- "@freesewing/plugin-bust": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8",
+ "@freesewing/plugin-bundle": "3.0.0-alpha.8",
+ "@freesewing/brian": "3.0.0-alpha.8",
+ "@freesewing/plugin-bust": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/lerna.json b/lerna.json
index 1bb80f0c1d2..2d2999809b8 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"npmClient": "yarn",
"command": {
"publish": {
diff --git a/packages/core/data.mjs b/packages/core/data.mjs
index 429b5387710..4cc870d4a15 100644
--- a/packages/core/data.mjs
+++ b/packages/core/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/core'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/core/package.json b/packages/core/package.json
index 6abea85100d..29466531afd 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/core",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A library for creating made-to-measure sewing patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/i18n/data.mjs b/packages/i18n/data.mjs
index 12f6c227359..9ae40d88e96 100644
--- a/packages/i18n/data.mjs
+++ b/packages/i18n/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/i18n'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/i18n/package.json b/packages/i18n/package.json
index 1c124817bc6..248f5b3d288 100644
--- a/packages/i18n/package.json
+++ b/packages/i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/i18n",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Translations for the FreeSewing project",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -44,7 +44,7 @@
"wcibuild_step7": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/pattern-info": "3.0.0-alpha.7"
+ "@freesewing/pattern-info": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/packages/models/data.mjs b/packages/models/data.mjs
index 4ae6857148f..f4a658164f5 100644
--- a/packages/models/data.mjs
+++ b/packages/models/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/models'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/models/package.json b/packages/models/package.json
index f58b768e032..c83079cfa9e 100644
--- a/packages/models/package.json
+++ b/packages/models/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/models",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Body measurements data for a range of default sizes",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/new-design/data.mjs b/packages/new-design/data.mjs
index d80117b4d68..b26ee33a99b 100644
--- a/packages/new-design/data.mjs
+++ b/packages/new-design/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/new-design'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/new-design/package.json b/packages/new-design/package.json
index 6bae0a3cce3..76110e4f959 100644
--- a/packages/new-design/package.json
+++ b/packages/new-design/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/new-design",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Initializer package for a new FreeSewing design: npx @freesewing/new-design",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/prettier-config/data.mjs b/packages/prettier-config/data.mjs
index 746a43fe9b8..d358da3e552 100644
--- a/packages/prettier-config/data.mjs
+++ b/packages/prettier-config/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/prettier-config'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json
index d5680f1ee28..7bd9729d599 100644
--- a/packages/prettier-config/package.json
+++ b/packages/prettier-config/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/prettier-config",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "FreeSewing's shared configuration for prettier",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/rehype-highlight-lines/data.mjs b/packages/rehype-highlight-lines/data.mjs
index 125b660f16d..36fea48f6a6 100644
--- a/packages/rehype-highlight-lines/data.mjs
+++ b/packages/rehype-highlight-lines/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = 'rehype-highlight-lines'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/rehype-highlight-lines/package.json b/packages/rehype-highlight-lines/package.json
index 31978859d86..c61044f83e6 100644
--- a/packages/rehype-highlight-lines/package.json
+++ b/packages/rehype-highlight-lines/package.json
@@ -1,6 +1,6 @@
{
"name": "rehype-highlight-lines",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A Rehype plugin to add highlighted lines to code blocks",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/rehype-jargon/data.mjs b/packages/rehype-jargon/data.mjs
index 81f9db330a2..620063374df 100644
--- a/packages/rehype-jargon/data.mjs
+++ b/packages/rehype-jargon/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = 'rehype-jargon'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/rehype-jargon/package.json b/packages/rehype-jargon/package.json
index 7fd5fab0ca8..82537bedf2d 100644
--- a/packages/rehype-jargon/package.json
+++ b/packages/rehype-jargon/package.json
@@ -1,6 +1,6 @@
{
"name": "rehype-jargon",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A Rehype plugin for jargon terms",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/packages/snapseries/data.mjs b/packages/snapseries/data.mjs
index 0fcc426f4ac..3f4f4588bcc 100644
--- a/packages/snapseries/data.mjs
+++ b/packages/snapseries/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/snapseries'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/packages/snapseries/package.json b/packages/snapseries/package.json
index 54c4fd1b98d..24179fdb3a1 100644
--- a/packages/snapseries/package.json
+++ b/packages/snapseries/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/snapseries",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A series of common sizes for elastics and other series to be used with snapped percentage options",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/plugins/plugin-banner/data.mjs b/plugins/plugin-banner/data.mjs
index 5fe4cd649f2..1c1881fec6b 100644
--- a/plugins/plugin-banner/data.mjs
+++ b/plugins/plugin-banner/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-banner'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-banner/package.json b/plugins/plugin-banner/package.json
index 74edc47acd9..782681c6ab3 100644
--- a/plugins/plugin-banner/package.json
+++ b/plugins/plugin-banner/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-banner",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to repeat text on a path",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-bartack/data.mjs b/plugins/plugin-bartack/data.mjs
index 3466459e0ed..ba9e1372df3 100644
--- a/plugins/plugin-bartack/data.mjs
+++ b/plugins/plugin-bartack/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bartack'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-bartack/package.json b/plugins/plugin-bartack/package.json
index ff5c7370c15..bde4ffa7498 100644
--- a/plugins/plugin-bartack/package.json
+++ b/plugins/plugin-bartack/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bartack",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add bartacks to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-bundle/data.mjs b/plugins/plugin-bundle/data.mjs
index 54a125d44c6..481fe0ac437 100644
--- a/plugins/plugin-bundle/data.mjs
+++ b/plugins/plugin-bundle/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bundle'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-bundle/package.json b/plugins/plugin-bundle/package.json
index 616d5cfb31a..0d0aed9dd43 100644
--- a/plugins/plugin-bundle/package.json
+++ b/plugins/plugin-bundle/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bundle",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "An umbrella package of 8 essential FreeSewing build-time plugins",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -47,23 +47,23 @@
"wcibuild_step2": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
"mocha": "10.0.0",
"chai": "4.2.0",
- "@freesewing/plugin-banner": "3.0.0-alpha.7",
- "@freesewing/plugin-buttons": "3.0.0-alpha.7",
- "@freesewing/plugin-cutonfold": "3.0.0-alpha.7",
- "@freesewing/plugin-dimension": "3.0.0-alpha.7",
- "@freesewing/plugin-grainline": "3.0.0-alpha.7",
- "@freesewing/plugin-logo": "3.0.0-alpha.7",
- "@freesewing/plugin-mirror": "3.0.0-alpha.7",
- "@freesewing/plugin-title": "3.0.0-alpha.7",
- "@freesewing/plugin-scalebox": "3.0.0-alpha.7",
- "@freesewing/plugin-round": "3.0.0-alpha.7",
- "@freesewing/plugin-sprinkle": "3.0.0-alpha.7"
+ "@freesewing/plugin-banner": "3.0.0-alpha.8",
+ "@freesewing/plugin-buttons": "3.0.0-alpha.8",
+ "@freesewing/plugin-cutonfold": "3.0.0-alpha.8",
+ "@freesewing/plugin-dimension": "3.0.0-alpha.8",
+ "@freesewing/plugin-grainline": "3.0.0-alpha.8",
+ "@freesewing/plugin-logo": "3.0.0-alpha.8",
+ "@freesewing/plugin-mirror": "3.0.0-alpha.8",
+ "@freesewing/plugin-title": "3.0.0-alpha.8",
+ "@freesewing/plugin-scalebox": "3.0.0-alpha.8",
+ "@freesewing/plugin-round": "3.0.0-alpha.8",
+ "@freesewing/plugin-sprinkle": "3.0.0-alpha.8"
},
"files": [
"dist/*",
diff --git a/plugins/plugin-bust/data.mjs b/plugins/plugin-bust/data.mjs
index 894edec7946..7fececf5e55 100644
--- a/plugins/plugin-bust/data.mjs
+++ b/plugins/plugin-bust/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-bust'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-bust/package.json b/plugins/plugin-bust/package.json
index 36944705879..52a9a91d12e 100644
--- a/plugins/plugin-bust/package.json
+++ b/plugins/plugin-bust/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-bust",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin that helps with bust-adjusting menswear patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-buttons/data.mjs b/plugins/plugin-buttons/data.mjs
index b403a278561..b05bea8fee2 100644
--- a/plugins/plugin-buttons/data.mjs
+++ b/plugins/plugin-buttons/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-buttons'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-buttons/package.json b/plugins/plugin-buttons/package.json
index 41e2e78b6d8..612b66c4557 100644
--- a/plugins/plugin-buttons/package.json
+++ b/plugins/plugin-buttons/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-buttons",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin that provides button, buttonhole, and snap snippets",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-cutlist/data.mjs b/plugins/plugin-cutlist/data.mjs
index d10621fda9f..d3144d872da 100644
--- a/plugins/plugin-cutlist/data.mjs
+++ b/plugins/plugin-cutlist/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-cutlist'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-cutlist/package.json b/plugins/plugin-cutlist/package.json
index 87ffd4bcf1c..b72004fc131 100644
--- a/plugins/plugin-cutlist/package.json
+++ b/plugins/plugin-cutlist/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-cutlist",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to store data regarding a pattern's cutlist",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-cutonfold/data.mjs b/plugins/plugin-cutonfold/data.mjs
index 35f7eb5ce88..261c3241aaf 100644
--- a/plugins/plugin-cutonfold/data.mjs
+++ b/plugins/plugin-cutonfold/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-cutonfold'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-cutonfold/package.json b/plugins/plugin-cutonfold/package.json
index 02d540b32cf..c772b98daf1 100644
--- a/plugins/plugin-cutonfold/package.json
+++ b/plugins/plugin-cutonfold/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-cutonfold",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add cut-on-fold indicators on your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-dimension/data.mjs b/plugins/plugin-dimension/data.mjs
index 8a6284b9af3..27aca705483 100644
--- a/plugins/plugin-dimension/data.mjs
+++ b/plugins/plugin-dimension/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-dimension'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-dimension/package.json b/plugins/plugin-dimension/package.json
index d979356ed55..0d5ff6c937f 100644
--- a/plugins/plugin-dimension/package.json
+++ b/plugins/plugin-dimension/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-dimension",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add dimensions to your (paperless) pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-flip/data.mjs b/plugins/plugin-flip/data.mjs
index add09398beb..657e897573c 100644
--- a/plugins/plugin-flip/data.mjs
+++ b/plugins/plugin-flip/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-flip'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-flip/package.json b/plugins/plugin-flip/package.json
index b471daf243b..f17d447465f 100644
--- a/plugins/plugin-flip/package.json
+++ b/plugins/plugin-flip/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-flip",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to flip parts horizontally",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-gore/data.mjs b/plugins/plugin-gore/data.mjs
index 17272c52c54..eaf0c330874 100644
--- a/plugins/plugin-gore/data.mjs
+++ b/plugins/plugin-gore/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-gore'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-gore/package.json b/plugins/plugin-gore/package.json
index e8db799728c..3bc96a5baae 100644
--- a/plugins/plugin-gore/package.json
+++ b/plugins/plugin-gore/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-gore",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to generate gores for a semi-sphere or dome",
"author": "AlfaLyr (https://github.com/alfalyr)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-grainline/data.mjs b/plugins/plugin-grainline/data.mjs
index 344d1a836ea..ecd5ac09512 100644
--- a/plugins/plugin-grainline/data.mjs
+++ b/plugins/plugin-grainline/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-grainline'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-grainline/package.json b/plugins/plugin-grainline/package.json
index bbdf96a0b4c..93a12bcd983 100644
--- a/plugins/plugin-grainline/package.json
+++ b/plugins/plugin-grainline/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-grainline",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add grainline indicators on your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-i18n/data.mjs b/plugins/plugin-i18n/data.mjs
index c6cb172e23f..072702e311c 100644
--- a/plugins/plugin-i18n/data.mjs
+++ b/plugins/plugin-i18n/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-i18n'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-i18n/package.json b/plugins/plugin-i18n/package.json
index 0db50199437..9450cc866c7 100644
--- a/plugins/plugin-i18n/package.json
+++ b/plugins/plugin-i18n/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-i18n",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin for pattern translation",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-logo/data.mjs b/plugins/plugin-logo/data.mjs
index 75873cf77da..b6509cb9cf3 100644
--- a/plugins/plugin-logo/data.mjs
+++ b/plugins/plugin-logo/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-logo'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-logo/package.json b/plugins/plugin-logo/package.json
index ddc275578ff..9573c3cde9e 100644
--- a/plugins/plugin-logo/package.json
+++ b/plugins/plugin-logo/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-logo",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add our logo to your patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-measurements/data.mjs b/plugins/plugin-measurements/data.mjs
index cc3e2275bdf..104a2f94338 100644
--- a/plugins/plugin-measurements/data.mjs
+++ b/plugins/plugin-measurements/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-measurements'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-measurements/package.json b/plugins/plugin-measurements/package.json
index c6f9f9105c5..6f4cf4c98aa 100644
--- a/plugins/plugin-measurements/package.json
+++ b/plugins/plugin-measurements/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-measurements",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin that adds additional measurements that can be calculated from existing ones",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-mirror/data.mjs b/plugins/plugin-mirror/data.mjs
index 032ae08234a..8ddb77ed183 100644
--- a/plugins/plugin-mirror/data.mjs
+++ b/plugins/plugin-mirror/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-mirror'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-mirror/package.json b/plugins/plugin-mirror/package.json
index d85fd057b98..c19b67d3439 100644
--- a/plugins/plugin-mirror/package.json
+++ b/plugins/plugin-mirror/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-mirror",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to mirror points or paths",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-notches/data.mjs b/plugins/plugin-notches/data.mjs
index 3a0ea107a09..285393b3fc5 100644
--- a/plugins/plugin-notches/data.mjs
+++ b/plugins/plugin-notches/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-notches'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-notches/package.json b/plugins/plugin-notches/package.json
index 712d6f37d45..960e70018c5 100644
--- a/plugins/plugin-notches/package.json
+++ b/plugins/plugin-notches/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-notches",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin that provides front and back notch snippets",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-round/data.mjs b/plugins/plugin-round/data.mjs
index 5224334a6d0..046aaa333ec 100644
--- a/plugins/plugin-round/data.mjs
+++ b/plugins/plugin-round/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-round'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-round/package.json b/plugins/plugin-round/package.json
index e44c6998693..5d194837de1 100644
--- a/plugins/plugin-round/package.json
+++ b/plugins/plugin-round/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-round",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to round corners",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-scalebox/data.mjs b/plugins/plugin-scalebox/data.mjs
index d7ecbf41b15..e257efcedd6 100644
--- a/plugins/plugin-scalebox/data.mjs
+++ b/plugins/plugin-scalebox/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-scalebox'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-scalebox/package.json b/plugins/plugin-scalebox/package.json
index db32c624be7..f0bb771f084 100644
--- a/plugins/plugin-scalebox/package.json
+++ b/plugins/plugin-scalebox/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-scalebox",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add a scalebox to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-sprinkle/data.mjs b/plugins/plugin-sprinkle/data.mjs
index 1e022dad75e..5661c1226ed 100644
--- a/plugins/plugin-sprinkle/data.mjs
+++ b/plugins/plugin-sprinkle/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-sprinkle'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-sprinkle/package.json b/plugins/plugin-sprinkle/package.json
index 3910fd61d00..ffccbee5f96 100644
--- a/plugins/plugin-sprinkle/package.json
+++ b/plugins/plugin-sprinkle/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-sprinkle",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to bulk-add snippets to your pattern",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-svgattr/data.mjs b/plugins/plugin-svgattr/data.mjs
index c322768b05e..8e473507412 100644
--- a/plugins/plugin-svgattr/data.mjs
+++ b/plugins/plugin-svgattr/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-svgattr'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-svgattr/package.json b/plugins/plugin-svgattr/package.json
index 7ee83a056e9..909ac2f9c72 100644
--- a/plugins/plugin-svgattr/package.json
+++ b/plugins/plugin-svgattr/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-svgattr",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to set SVG attributes",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-theme/data.mjs b/plugins/plugin-theme/data.mjs
index ce2a95a9e6b..7fc8a0a7a0f 100644
--- a/plugins/plugin-theme/data.mjs
+++ b/plugins/plugin-theme/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-theme'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-theme/package.json b/plugins/plugin-theme/package.json
index fd4273c8ca7..9cede645b6f 100644
--- a/plugins/plugin-theme/package.json
+++ b/plugins/plugin-theme/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-theme",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin that provides a default theme",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-timing/data.mjs b/plugins/plugin-timing/data.mjs
index 6355f521dd2..065573043b6 100644
--- a/plugins/plugin-timing/data.mjs
+++ b/plugins/plugin-timing/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-timing'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-timing/package.json b/plugins/plugin-timing/package.json
index 5e5acd7adfb..d1c9cc569e0 100644
--- a/plugins/plugin-timing/package.json
+++ b/plugins/plugin-timing/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-timing",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to record the time it takes to draft your pattern parts",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-title/data.mjs b/plugins/plugin-title/data.mjs
index 3e54a8da070..3269b1828d5 100644
--- a/plugins/plugin-title/data.mjs
+++ b/plugins/plugin-title/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-title'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-title/package.json b/plugins/plugin-title/package.json
index 2c708dcfdcc..b263fe2ba5a 100644
--- a/plugins/plugin-title/package.json
+++ b/plugins/plugin-title/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-title",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to add a title to your pattern parts",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/plugins/plugin-versionfree-svg/data.mjs b/plugins/plugin-versionfree-svg/data.mjs
index 93b4313959f..1e01ebddc4e 100644
--- a/plugins/plugin-versionfree-svg/data.mjs
+++ b/plugins/plugin-versionfree-svg/data.mjs
@@ -1,4 +1,4 @@
// This file is auto-generated | All changes you make will be overwritten.
export const name = '@freesewing/plugin-versionfree-svg'
-export const version = '3.0.0-alpha.7'
+export const version = '3.0.0-alpha.8'
export const data = { name, version }
diff --git a/plugins/plugin-versionfree-svg/package.json b/plugins/plugin-versionfree-svg/package.json
index 28966eb922b..9beb068166c 100644
--- a/plugins/plugin-versionfree-svg/package.json
+++ b/plugins/plugin-versionfree-svg/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/plugin-versionfree-svg",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "A FreeSewing plugin to keep version info out of your SVG to allow easy diffs across versions",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
@@ -46,7 +46,7 @@
"wcibuild_step1": "node build.mjs"
},
"peerDependencies": {
- "@freesewing/core": "3.0.0-alpha.7"
+ "@freesewing/core": "3.0.0-alpha.8"
},
"dependencies": {},
"devDependencies": {
diff --git a/sites/backend/package.json b/sites/backend/package.json
index 8cc1a866808..f8b70e09849 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "backend.freesewing.org",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "FreeSewing backend",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/dev/package.json b/sites/dev/package.json
index db0331f0341..934c65e9fc8 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/dev",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "FreeSewing website with documentation for contributors & developers",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/email/package.json b/sites/email/package.json
index f631baa0b5c..2d2551a3613 100644
--- a/sites/email/package.json
+++ b/sites/email/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/email",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Holds maizzle instance to generate the FreeSewing email templates",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 47a29196e24..0b80bd09156 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/lab",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "FreeSewing website to test various patterns",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/org/package.json b/sites/org/package.json
index d8971618bb7..e6f01cd4316 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/org",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "FreeSewing website",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index f5245ad4b1f..6bf81c9aad4 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/sanity",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Code for the sanity.io CMS",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
diff --git a/sites/shared/package.json b/sites/shared/package.json
index ab1edbc3575..0c211efe9a1 100644
--- a/sites/shared/package.json
+++ b/sites/shared/package.json
@@ -1,6 +1,6 @@
{
"name": "@freesewing/shared",
- "version": "3.0.0-alpha.7",
+ "version": "3.0.0-alpha.8",
"description": "Shared code and React components for different websites",
"author": "Joost De Cock (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
From 2e2d6ba18467689dc2de11bc099c60a144022c08 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 05:14:58 +0000
Subject: [PATCH 0147/1524] chore(deps-dev): bump @babel/eslint-parser from
7.19.1 to 7.21.3
Bumps [@babel/eslint-parser](https://github.com/babel/babel/tree/HEAD/eslint/babel-eslint-parser) from 7.19.1 to 7.21.3.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.21.3/eslint/babel-eslint-parser)
---
updated-dependencies:
- dependency-name: "@babel/eslint-parser"
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index dcbe031cdad..db553a6cb35 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -914,9 +914,9 @@
semver "^6.3.0"
"@babel/eslint-parser@^7.19.1":
- version "7.19.1"
- resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz#4f68f6b0825489e00a24b41b6a1ae35414ecd2f4"
- integrity sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==
+ version "7.21.3"
+ resolved "https://registry.yarnpkg.com/@babel/eslint-parser/-/eslint-parser-7.21.3.tgz#d79e822050f2de65d7f368a076846e7184234af7"
+ integrity sha512-kfhmPimwo6k4P8zxNs8+T7yR44q1LdpsZdE1NkCsVlfiuTPRfnGgjaF8Qgug9q9Pou17u6wneYF0lDCZJATMFg==
dependencies:
"@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1"
eslint-visitor-keys "^2.1.0"
From a87805b56dfbe0ad182fb3e0a47b79229f9d04ed Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 05:22:24 +0000
Subject: [PATCH 0148/1524] chore(deps-dev): bump eslint-config-next from
13.2.3 to 13.2.4
Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 13.2.3 to 13.2.4.
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](https://github.com/vercel/next.js/commits/v13.2.4/packages/eslint-config-next)
---
updated-dependencies:
- dependency-name: eslint-config-next
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
yarn.lock | 24 +-----------------------
1 file changed, 1 insertion(+), 23 deletions(-)
diff --git a/yarn.lock b/yarn.lock
index dcbe031cdad..492a58343b2 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3103,13 +3103,6 @@
resolved "https://registry.yarnpkg.com/@next/env/-/env-13.2.4.tgz#8b763700262b2445140a44a8c8d088cef676dbae"
integrity sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==
-"@next/eslint-plugin-next@13.2.3":
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.3.tgz#5af8ddeac6dbe028c812a0e59c41952c004d95d5"
- integrity sha512-QmMPItnU7VeojI1KnuwL9SLFWEwmaNHNlnOGpoTwdLoSiP9sc8KYiAHWEc4/44L+cAdCxcZYvn7frcRNP5l84Q==
- dependencies:
- glob "7.1.7"
-
"@next/eslint-plugin-next@13.2.4":
version "13.2.4"
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.4.tgz#3e124cd10ce24dab5d3448ce04104b4f1f4c6ca7"
@@ -8206,7 +8199,7 @@ escodegen@^2.0.0:
optionalDependencies:
source-map "~0.6.1"
-eslint-config-next@13.2.4:
+eslint-config-next@13.2.4, eslint-config-next@^13.0.6:
version "13.2.4"
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.4.tgz#8aa4d42da3a575a814634ba9c88c8d25266c5fdd"
integrity sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==
@@ -8221,21 +8214,6 @@ eslint-config-next@13.2.4:
eslint-plugin-react "^7.31.7"
eslint-plugin-react-hooks "^4.5.0"
-eslint-config-next@^13.0.6:
- version "13.2.3"
- resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.3.tgz#8a952bfd856f492684a30dd5fcdc8979c97c1cc2"
- integrity sha512-kPulHiQEHGei9hIaaNGygHRc0UzlWM+3euOmYbxNkd2Nbhci5rrCDeMBMPSV8xgUssphDGmwDHWbk4VZz3rlZQ==
- dependencies:
- "@next/eslint-plugin-next" "13.2.3"
- "@rushstack/eslint-patch" "^1.1.3"
- "@typescript-eslint/parser" "^5.42.0"
- eslint-import-resolver-node "^0.3.6"
- eslint-import-resolver-typescript "^3.5.2"
- eslint-plugin-import "^2.26.0"
- eslint-plugin-jsx-a11y "^6.5.1"
- eslint-plugin-react "^7.31.7"
- eslint-plugin-react-hooks "^4.5.0"
-
eslint-config-standard-jsx@^11.0.0:
version "11.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-11.0.0.tgz#70852d395731a96704a592be5b0bfaccfeded239"
From c0002237376a65ccdd7a69c934b274712e46dce9 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 05:27:54 +0000
Subject: [PATCH 0149/1524] chore(deps-dev): bump eslint from 8.34.0 to 8.36.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.34.0 to 8.36.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.34.0...v8.36.0)
---
updated-dependencies:
- dependency-name: eslint
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
packages/core/package.json | 2 +-
sites/sanity/package.json | 2 +-
yarn.lock | 62 ++++++++++++++++++++++++--------------
3 files changed, 42 insertions(+), 24 deletions(-)
diff --git a/packages/core/package.json b/packages/core/package.json
index 29466531afd..03e2662d5fc 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -59,7 +59,7 @@
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
- "eslint": "8.34.0",
+ "eslint": "8.36.0",
"nyc": "15.1.0",
"mocha": "10.0.0",
"chai": "4.2.0",
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index 6bf81c9aad4..b4bc6650ca7 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -30,7 +30,7 @@
},
"devDependencies": {
"@sanity/eslint-config-studio": "2.0.1",
- "eslint": "8.34.0",
+ "eslint": "8.36.0",
"prettier": "2.8.4",
"typescript": "4.9.5",
"@sanity/cli": "3.6.0"
diff --git a/yarn.lock b/yarn.lock
index dcbe031cdad..95ff67fbf0f 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2674,14 +2674,26 @@
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1"
integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ==
-"@eslint/eslintrc@^1.4.1":
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.4.1.tgz#af58772019a2d271b7e2d4c23ff4ddcba3ccfb3e"
- integrity sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.3.0.tgz#a556790523a351b4e47e9d385f47265eaaf9780a"
+ integrity sha512-v3oplH6FYCULtFuCeqyuTd9D2WKO937Dxdq+GmHOLL72TTRriLxz2VLlNfkZRsvj6PKnOPAtuT6dwrs/pA5DvA==
+ dependencies:
+ eslint-visitor-keys "^3.3.0"
+
+"@eslint-community/regexpp@^4.4.0":
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403"
+ integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==
+
+"@eslint/eslintrc@^2.0.1":
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.1.tgz#7888fe7ec8f21bc26d646dbd2c11cd776e21192d"
+ integrity sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==
dependencies:
ajv "^6.12.4"
debug "^4.3.2"
- espree "^9.4.0"
+ espree "^9.5.0"
globals "^13.19.0"
ignore "^5.2.0"
import-fresh "^3.2.1"
@@ -2689,6 +2701,11 @@
minimatch "^3.1.2"
strip-json-comments "^3.1.1"
+"@eslint/js@8.36.0":
+ version "8.36.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.36.0.tgz#9837f768c03a1e4a30bd304a64fb8844f0e72efe"
+ integrity sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==
+
"@floating-ui/core@^1.2.2":
version "1.2.2"
resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.2.2.tgz#66f62cf1b7de2ed23a09c101808536e68caffaec"
@@ -8442,12 +8459,15 @@ eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
-eslint@8.34.0, eslint@^8.13.0, eslint@^8.23.1:
- version "8.34.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.34.0.tgz#fe0ab0ef478104c1f9ebc5537e303d25a8fb22d6"
- integrity sha512-1Z8iFsucw+7kSqXNZVslXS8Ioa4u2KM7GPwuKtkTFAqZ/cHMcEaR+1+Br0wLlot49cNxIiZk5wp8EAbPcYZxTg==
+eslint@8.36.0, eslint@^8.13.0, eslint@^8.23.1:
+ version "8.36.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf"
+ integrity sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==
dependencies:
- "@eslint/eslintrc" "^1.4.1"
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.4.0"
+ "@eslint/eslintrc" "^2.0.1"
+ "@eslint/js" "8.36.0"
"@humanwhocodes/config-array" "^0.11.8"
"@humanwhocodes/module-importer" "^1.0.1"
"@nodelib/fs.walk" "^1.2.8"
@@ -8458,10 +8478,9 @@ eslint@8.34.0, eslint@^8.13.0, eslint@^8.23.1:
doctrine "^3.0.0"
escape-string-regexp "^4.0.0"
eslint-scope "^7.1.1"
- eslint-utils "^3.0.0"
eslint-visitor-keys "^3.3.0"
- espree "^9.4.0"
- esquery "^1.4.0"
+ espree "^9.5.0"
+ esquery "^1.4.2"
esutils "^2.0.2"
fast-deep-equal "^3.1.3"
file-entry-cache "^6.0.1"
@@ -8482,7 +8501,6 @@ eslint@8.34.0, eslint@^8.13.0, eslint@^8.23.1:
minimatch "^3.1.2"
natural-compare "^1.4.0"
optionator "^0.9.1"
- regexpp "^3.2.0"
strip-ansi "^6.0.1"
strip-json-comments "^3.1.0"
text-table "^0.2.0"
@@ -8492,10 +8510,10 @@ esm@^3.2.25:
resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
-espree@^9.0.0, espree@^9.4.0:
- version "9.4.0"
- resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a"
- integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==
+espree@^9.0.0, espree@^9.5.0:
+ version "9.5.0"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.0.tgz#3646d4e3f58907464edba852fa047e6a27bdf113"
+ integrity sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==
dependencies:
acorn "^8.8.0"
acorn-jsx "^5.3.2"
@@ -8506,10 +8524,10 @@ esprima@^4.0.0, esprima@^4.0.1:
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
-esquery@^1.0.1, esquery@^1.4.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
- integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
+esquery@^1.0.1, esquery@^1.4.2:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b"
+ integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==
dependencies:
estraverse "^5.1.0"
From 326005e6203bb20c26fb446ac8bb5d5a7ba9e8e9 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 05:29:51 +0000
Subject: [PATCH 0150/1524] chore(deps): bump @sanity/vision from 3.5.1 to
3.7.0
Bumps [@sanity/vision](https://github.com/sanity-io/sanity/tree/HEAD/packages/@sanity/vision) from 3.5.1 to 3.7.0.
- [Release notes](https://github.com/sanity-io/sanity/releases)
- [Commits](https://github.com/sanity-io/sanity/commits/v3.7.0/packages/@sanity/vision)
---
updated-dependencies:
- dependency-name: "@sanity/vision"
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot]
---
sites/sanity/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index 6bf81c9aad4..bbe8f5febf5 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -20,7 +20,7 @@
},
"peerDependencies": {},
"dependencies": {
- "@sanity/vision": "3.5.1",
+ "@sanity/vision": "3.7.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
diff --git a/yarn.lock b/yarn.lock
index dcbe031cdad..6f8d4da56aa 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4042,10 +4042,10 @@
lodash "^4.17.21"
rxjs "^7.8.0"
-"@sanity/vision@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/vision/-/vision-3.5.1.tgz#7d90ef9ef2b2fd45ebf8788e67508225d0b53c60"
- integrity sha512-LKHojIJY5yNCBQWL+V8vPCd693qx+mc4hEavZ6w0fPa9kiaJ4G/fql1tfSzqzpRF9N9cKZQzb5LQNANzG3BYDw==
+"@sanity/vision@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/vision/-/vision-3.7.0.tgz#6a3765938b081cb2dc30d3a91fcdb51d93828042"
+ integrity sha512-WjPi8LqU0Rbl01Ld+q+KZltbgPCb6RyuvhwlPgkGy4PWNvTJJ7AiTiKoMwwmjkj1MHDS/vUnSnuDiPE7TIGjGg==
dependencies:
"@codemirror/autocomplete" "^6.1.0"
"@codemirror/commands" "^6.0.1"
From a4c833eeea23651246558c99ec3667309d0dd9b1 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 17 Mar 2023 05:30:19 +0000
Subject: [PATCH 0151/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/eslint-8.36.0 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index adc13dadf00..48e6fab0dbc 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -60,7 +60,7 @@ core:
'lodash.unset': &_unset '4.5.2'
'lodash.clonedeep': '^4.5.0'
dev:
- 'eslint': &eslint '8.34.0'
+ 'eslint': &eslint '8.36.0'
'nyc': '15.1.0'
'mocha': *mocha
'chai': *chai
From 12c30b4f567f7f87b8fc2505b97964205ab2a018 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 05:31:25 +0000
Subject: [PATCH 0152/1524] chore(deps): bump i18next from 22.4.9 to 22.4.11
Bumps [i18next](https://github.com/i18next/i18next) from 22.4.9 to 22.4.11.
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](https://github.com/i18next/i18next/compare/v22.4.9...v22.4.11)
---
updated-dependencies:
- dependency-name: i18next
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/lab/package.json | 2 +-
yarn.lock | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 0b80bd09156..79a9c8c32a2 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -36,7 +36,7 @@
"d3-drag": "3.0.0",
"d3-selection": "3.0.0",
"daisyui": "2.51.3",
- "i18next": "22.4.9",
+ "i18next": "22.4.11",
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
diff --git a/yarn.lock b/yarn.lock
index dcbe031cdad..9e930c93fb1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -10405,10 +10405,10 @@ i18next-fs-backend@^2.1.1:
resolved "https://registry.yarnpkg.com/i18next-fs-backend/-/i18next-fs-backend-2.1.1.tgz#07c6393be856c5a398e3dfc1257bf8439841cd89"
integrity sha512-FTnj+UmNgT3YRml5ruRv0jMZDG7odOL/OP5PF5mOqvXud2vHrPOOs68Zdk6iqzL47cnnM0ZVkK2BAvpFeDJToA==
-i18next@22.4.9:
- version "22.4.9"
- resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.4.9.tgz#98c8384c6bd41ff937da98b1e809ba03d3b41053"
- integrity sha512-8gWMmUz460KJDQp/ob3MNUX84cVuDRY9PLFPnV8d+Qezz/6dkjxwOaH70xjrCNDO+JrUL25iXfAIN9wUkInNZw==
+i18next@22.4.11:
+ version "22.4.11"
+ resolved "https://registry.yarnpkg.com/i18next/-/i18next-22.4.11.tgz#8b6c9be95176de90d3f10a78af125d95d3a3258d"
+ integrity sha512-ShfTzXVMjXdF2iPiT/wbizOrssLh9Ab6VpuVROihLCAu+u25KbZiEYVgsA0W6g0SgjPa/JmGWcUEV/g6cKzEjQ==
dependencies:
"@babel/runtime" "^7.20.6"
From 2a87faf335d1e2f20b639da678547070af2c5391 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 17 Mar 2023 05:32:41 +0000
Subject: [PATCH 0153/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/sanity/vision-3.7.0 changes in
config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
sites/sanity/package.json | 2 +-
yarn.lock | 148 ++++++++++++++++++--------------------
3 files changed, 73 insertions(+), 79 deletions(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index adc13dadf00..0dd6e33f5c3 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -349,7 +349,7 @@ org:
sanity:
_:
- '@sanity/vision': &sanity '3.5.1'
+ '@sanity/vision': &sanity '3.7.0'
'react': *react
'react-dom': *react
'react-is': *react
diff --git a/sites/sanity/package.json b/sites/sanity/package.json
index bbe8f5febf5..5609cc52895 100644
--- a/sites/sanity/package.json
+++ b/sites/sanity/package.json
@@ -24,7 +24,7 @@
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
- "sanity": "3.5.1",
+ "sanity": "3.7.0",
"styled-components": "5.3.8",
"sanity-plugin-markdown": "3.0.1"
},
diff --git a/yarn.lock b/yarn.lock
index 6f8d4da56aa..05659061586 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -3785,18 +3785,18 @@
nanoid "^3.1.12"
rxjs "^7.0.0"
-"@sanity/block-tools@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/block-tools/-/block-tools-3.5.1.tgz#49f1201a41ca8bfbafad5b2b1227a499a627403d"
- integrity sha512-jvK71mczAU7xwqWGkPI97+Wi5SlxKJKUdtcDOHF70tV5yFUWL4NLoCBdWxcx2MpO/2uJUIlcawobHtor7S46aQ==
+"@sanity/block-tools@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/block-tools/-/block-tools-3.7.0.tgz#3e61d028749616970c0eac6a8752570908379fca"
+ integrity sha512-R8Ctxksz2Bwslskmakozk2apOvSrX9M0IAfoLKC0vGdhBS0bPDyJxjruT1VS9hwgThFDPQBs8FStUtb7Cxi8UA==
dependencies:
get-random-values-esm "^1.0.0"
lodash "^4.17.21"
-"@sanity/cli@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.5.1.tgz#e32e918244958807c702c55174767fbce2d9dd9f"
- integrity sha512-OIVW82qc+lipcofNHW0BDeA4cq9eKl8n8kTlCOHgDioZyVSRkpC7Khxcd0tA6hEW/nX2hzoTrYKK7eDd5Cb9IQ==
+"@sanity/cli@3.6.0":
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.6.0.tgz#1267735c075756f2743a7d5a41a56e4c6faff553"
+ integrity sha512-s9R57PnnQ9GN8zY0ySBvZGnw8pt4yFfy0Cym3fn2TDyQnvBzmqTGVV/1FiFQYV/u3DyWfmxtv73JHK6xYLBORw==
dependencies:
"@babel/traverse" "^7.19.0"
chalk "^4.1.2"
@@ -3805,10 +3805,10 @@
get-it "^8.0.9"
pkg-dir "^5.0.0"
-"@sanity/cli@3.6.0":
- version "3.6.0"
- resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.6.0.tgz#1267735c075756f2743a7d5a41a56e4c6faff553"
- integrity sha512-s9R57PnnQ9GN8zY0ySBvZGnw8pt4yFfy0Cym3fn2TDyQnvBzmqTGVV/1FiFQYV/u3DyWfmxtv73JHK6xYLBORw==
+"@sanity/cli@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/cli/-/cli-3.7.0.tgz#4b22d53cefbc1f173629aa833dc874295c2a4b4b"
+ integrity sha512-C+rRy3l2ggjfCxvVXz8BvUIM0MT9Obv9z903DeEPrGSETFEwuMpVXhh3rTXg6/69hN47rfIvOlLn7B7TzDCrrA==
dependencies:
"@babel/traverse" "^7.19.0"
chalk "^4.1.2"
@@ -3831,10 +3831,10 @@
resolved "https://registry.yarnpkg.com/@sanity/color/-/color-2.2.3.tgz#ec8d9ba4bd42163f6487df3e47350a9a828c3210"
integrity sha512-b4e6JAHHa/tKpAnLOAHaJyNEHO1l/g2oecN22FWkhTAuKCINPNhPeoeUn5rK5ngKzbXrvynBd/h2849lld3FRg==
-"@sanity/diff@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/diff/-/diff-3.5.1.tgz#0d159d2be57088f5d607da1e922fd2b7c29a3bfd"
- integrity sha512-u0rP1KbxDSj1neVSZA/ompnAZ4uJWZA1Tbau9tq8FzIciZzx+iSkyCaUbpvE1J7Jvn1z1kn3tR2QFK0DZRcpFw==
+"@sanity/diff@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/diff/-/diff-3.7.0.tgz#1d020b3eaf45da8bcef5a54745e2b2a73bb5d659"
+ integrity sha512-Bac70jFBAOnoeNp1uEgOFA5gubSCNYRGdFyr5oYerJxeIHNRmsQCWPbqSNMEihj5gVTwUXPwatCPrtcfigK7oQ==
dependencies:
diff-match-patch "^1.0.4"
@@ -3871,10 +3871,10 @@
event-source-polyfill "1.0.25"
eventsource "^2.0.2"
-"@sanity/export@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/export/-/export-3.5.1.tgz#450779dde0c12953548fc8e476bcf8a05defbe2d"
- integrity sha512-aTjkYTzKKfr36tjbPQHSIpZ4Z3Y081sIR/bmeBJySdQv8WbnDGhPBE0dGOeIiJOde4rJVI15aETQUgsUo0aBXQ==
+"@sanity/export@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/export/-/export-3.7.0.tgz#778ef465935e8da073eb2c510deb3e236743db25"
+ integrity sha512-M9rxlyURBviTfZZ5/zXj/8s8rXTzpKcW6WOG1jpmNcZ7yxVyWdwvDhBeNjiDDyqHjmMfOQNu0WVqNRKZmJH18A==
dependencies:
archiver "^5.0.0"
debug "^3.2.7"
@@ -3905,14 +3905,14 @@
resolved "https://registry.yarnpkg.com/@sanity/image-url/-/image-url-1.0.2.tgz#1ff7259e9bad6bfca4169f21c53a4123f6ac78c3"
integrity sha512-C4+jb2ny3ZbMgEkLd7Z3C75DsxcTEoE+axXQJsQ75ou0AKWGdVsP351hqK6mJUUxn5HCSlu3vznoh7Yljye4cQ==
-"@sanity/import@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/import/-/import-3.5.1.tgz#f4c215acb3574934f49324f9f627ceaca5d2d86d"
- integrity sha512-L1JeN6SVohkXqI0/HNnuljNCQCfhNXoNZw+w5V6zXwYLgU+lLA8kehjbCu+vzxYsrPbHV222zep07791xXQCyA==
+"@sanity/import@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/import/-/import-3.7.0.tgz#1c6ea623c81a23b1bbe75722372831dccc835a70"
+ integrity sha512-/9PPUo+ufX0lJNNPHFmz15Aj1mctTB3eCrwo2XIIfhOGvz11AQMTkKnGf2n+PYJlFHlCTQZHIWDrlGWq3g87BA==
dependencies:
"@sanity/asset-utils" "^1.2.5"
"@sanity/generate-help-url" "^3.0.0"
- "@sanity/mutator" "3.5.1"
+ "@sanity/mutator" "3.7.0"
"@sanity/uuid" "^3.0.1"
debug "^3.2.7"
file-url "^2.0.2"
@@ -3942,10 +3942,10 @@
resolved "https://registry.yarnpkg.com/@sanity/logos/-/logos-2.0.2.tgz#d1b10a32e51d0c35ecbd32b43991a7c89f77a5f6"
integrity sha512-BsBNt4ldWNAuKeHge4nKHnN43BN8BwLJuf+HDhrg/ngnORUjty5WV4KVoQkQ2FSTv5YtpJjSuNGSXwT+Araegw==
-"@sanity/mutator@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/mutator/-/mutator-3.5.1.tgz#9a528c122ddc01ff7cc030abf3cc4b9a437fa458"
- integrity sha512-+7GQrIKR88Nj3ZUPRvx7JAr3EVSJi42nVE5IdHYJStFQB7lLbFX4QNGV9W7/dMucQy9b8IpHeT7c/rguyZ8Arg==
+"@sanity/mutator@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/mutator/-/mutator-3.7.0.tgz#ea88caa940825abaf9d06523cb35a7a2ed19fcbf"
+ integrity sha512-gP/4PZ66G1zo7ncztV/YjMtcVr2ibpYjFE3j2sHy93rygKb+wQ0LDHLUZByd5hEtfJQI8jljCiVBvtOl+06DgA==
dependencies:
"@sanity/uuid" "^3.0.1"
"@types/diff-match-patch" "^1.0.32"
@@ -3953,28 +3953,28 @@
diff-match-patch "^1.0.4"
lodash "^4.17.21"
-"@sanity/portable-text-editor@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/portable-text-editor/-/portable-text-editor-3.5.1.tgz#f8e6b22d7a9477912eaff65ad6df787d6415d35a"
- integrity sha512-dQ3GHYdJHAP0eIwvglBoqEHOu+v97G4Wzr0O/zabx6BOqeyW2ElFjzaxyKvLm4v0B8AKK3ygwm8CWH6c26WpXQ==
+"@sanity/portable-text-editor@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/portable-text-editor/-/portable-text-editor-3.7.0.tgz#aa82010b8881ad0ed4c296426801bcfdf2dab781"
+ integrity sha512-8RM2RF8T1OignCFzF2UHHoNDEhjJY59V9y2YeaKKZlJR/M8JI8X8EmwzmJjYjpKFFOeRJy60a4zw5xX7Ql0Yww==
dependencies:
- "@sanity/block-tools" "3.5.1"
- "@sanity/schema" "3.5.1"
+ "@sanity/block-tools" "3.7.0"
+ "@sanity/schema" "3.7.0"
"@sanity/slate-react" "2.30.1"
- "@sanity/types" "3.5.1"
- "@sanity/util" "3.5.1"
+ "@sanity/types" "3.7.0"
+ "@sanity/util" "3.7.0"
debug "^3.2.7"
is-hotkey "^0.1.6"
lodash "^4.17.21"
slate "0.81.1"
-"@sanity/schema@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/schema/-/schema-3.5.1.tgz#c01a80857650d4886ed7db5c0afb667858f19b1a"
- integrity sha512-8yiMOppAL3P3iGJVAXrV0SA6KTzdcoAk4pGm+MmK1126SIqVN60C4W61/fFQnGbvGDqa9oaEEikScKfB/lpZBg==
+"@sanity/schema@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/schema/-/schema-3.7.0.tgz#888b726ca9da322b1e74351b0343a717b7339399"
+ integrity sha512-wxcCFJnaz6JHxHrOZFVhpZ4NrWldt3yb5+vybFBOwRWMp6tNPaILqgQ34WINOqcl+P91f4JYXyZifu7/jkSY5w==
dependencies:
"@sanity/generate-help-url" "^3.0.0"
- "@sanity/types" "3.5.1"
+ "@sanity/types" "3.7.0"
arrify "^1.0.1"
humanize-list "^1.0.1"
leven "^3.1.0"
@@ -3995,10 +3995,10 @@
scroll-into-view-if-needed "^2.2.20"
tiny-invariant "1.0.6"
-"@sanity/types@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/types/-/types-3.5.1.tgz#625797574526f4d45141b3c6ccf9b3b968dc16eb"
- integrity sha512-zGhqqhdeF+CcUiOS6576LyNmJfASmeLUzWAIvpy9c8Bp9wYkFmj5VXFSuGjH+nDIRurcBrg58dJtkSIaL/MCYA==
+"@sanity/types@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/types/-/types-3.7.0.tgz#6c69d57b224f7e06c0b294b5e5b196b8e3ed52a0"
+ integrity sha512-Q9oX79QnX4nvTSG9Yh21JgyIKjtdGWARVdDlXao58TpUeSFg9BJHdQa4xUUZ2trY2GEaXjTTl5jaLc6v16vOJw==
dependencies:
"@sanity/client" "^5.2.0"
"@types/react" "^18.0.25"
@@ -4015,12 +4015,12 @@
framer-motion "^9.0.4"
react-refractor "^2.1.7"
-"@sanity/util@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/util/-/util-3.5.1.tgz#2008b0d1e655f36bda817ee292128c03bd27b18d"
- integrity sha512-4/haAhlYfxgtM8WZ54YZrpiO/lGKDQOUelhzjhuwWz852SkRHMWSkZ/CgfdGwVEl1kaUr++PTp4tgVLFKt2y5A==
+"@sanity/util@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/util/-/util-3.7.0.tgz#52e1d139c51fb474665c06d7ba75138af321c165"
+ integrity sha512-0VtXdRV+uxfyvn3KPYf6fZu3gYeWz8L/cKuOzMPFMTI3aqOIaciu2Q/Vg1BUqmE2UC2bgVrzm7RUs9Pkxlvbfw==
dependencies:
- "@sanity/types" "3.5.1"
+ "@sanity/types" "3.7.0"
get-random-values-esm "^1.0.0"
moment "^2.29.4"
@@ -4032,12 +4032,12 @@
"@types/uuid" "^8.0.0"
uuid "^8.0.0"
-"@sanity/validation@3.5.1":
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/@sanity/validation/-/validation-3.5.1.tgz#bd475870f2c8676e49cb7808dd2b551df69bac32"
- integrity sha512-zpABumhsjO361bGlFa1MvKFPI0LOulv51JN4jVLPMHnSHWoWSEl6cUTAOXXE+sLQDzBoe1ti/7uVuBFPPHo5MQ==
+"@sanity/validation@3.7.0":
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/@sanity/validation/-/validation-3.7.0.tgz#de80749834264c5c61d68205e9440fbf67af4e57"
+ integrity sha512-2VZQYj/gjUjBaOcG3B0zukXyPVZczv3NhMSybQ6hG6vBUSGmiKIBSw/0mALofriUyXXRppHWzYhx2MKjn/ZYlg==
dependencies:
- "@sanity/types" "3.5.1"
+ "@sanity/types" "3.7.0"
date-fns "^2.26.1"
lodash "^4.17.21"
rxjs "^7.8.0"
@@ -17426,10 +17426,10 @@ sanity-plugin-markdown@3.0.1:
"@uiw/react-md-editor" "^3.19.7"
rehype-sanitize "^5.0.1"
-sanity@3.5.1:
- version "3.5.1"
- resolved "https://registry.yarnpkg.com/sanity/-/sanity-3.5.1.tgz#df09e502437ddbe3ce802a9a84e9dc2c3946e41a"
- integrity sha512-nxtVfjQsS97AJ0m489SkdMO+znbPQIv8JlocAiWCz0Fy1wdcNm0mxbJWvl4q8Ln4j//fYnndSzyAnsbo7wIgRQ==
+sanity@3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/sanity/-/sanity-3.7.0.tgz#6cd3810ef00c24d7208eb66a0c1683f03c603312"
+ integrity sha512-SXMefd4ZZJuqGUrlYeTvIlmLv+KXcZS766ZgA/AJaKcUX1MZNdZzTA/vQTyahIhLVRzhjomwxxajk9FqWRLukQ==
dependencies:
"@dnd-kit/core" "^6.0.5"
"@dnd-kit/modifiers" "^6.0.0"
@@ -17441,26 +17441,26 @@ sanity@3.5.1:
"@rexxars/react-json-inspector" "^8.0.1"
"@sanity/asset-utils" "^1.2.5"
"@sanity/bifur-client" "^0.3.1"
- "@sanity/block-tools" "3.5.1"
- "@sanity/cli" "3.5.1"
+ "@sanity/block-tools" "3.7.0"
+ "@sanity/cli" "3.7.0"
"@sanity/client" "^5.2.0"
"@sanity/color" "^2.1.20"
- "@sanity/diff" "3.5.1"
+ "@sanity/diff" "3.7.0"
"@sanity/eventsource" "^3.0.1"
- "@sanity/export" "3.5.1"
+ "@sanity/export" "3.7.0"
"@sanity/generate-help-url" "^3.0.0"
"@sanity/icons" "^2.1.0"
"@sanity/image-url" "^1.0.2"
- "@sanity/import" "3.5.1"
+ "@sanity/import" "3.7.0"
"@sanity/logos" "^2.0.2"
- "@sanity/mutator" "3.5.1"
- "@sanity/portable-text-editor" "3.5.1"
- "@sanity/schema" "3.5.1"
- "@sanity/types" "3.5.1"
+ "@sanity/mutator" "3.7.0"
+ "@sanity/portable-text-editor" "3.7.0"
+ "@sanity/schema" "3.7.0"
+ "@sanity/types" "3.7.0"
"@sanity/ui" "^1.2.0"
- "@sanity/util" "3.5.1"
+ "@sanity/util" "3.7.0"
"@sanity/uuid" "^3.0.1"
- "@sanity/validation" "3.5.1"
+ "@sanity/validation" "3.7.0"
"@tanstack/react-virtual" "3.0.0-beta.29"
"@types/is-hotkey" "^0.1.7"
"@types/react-copy-to-clipboard" "^5.0.2"
@@ -17529,7 +17529,6 @@ sanity@3.5.1:
shallow-equals "^1.0.0"
speakingurl "^14.0.1"
tar-fs "^2.1.1"
- ts-md5 "^1.3.1"
use-device-pixel-ratio "^1.1.0"
use-hot-module-reload "^1.0.1"
vite "^4.0.1"
@@ -19019,11 +19018,6 @@ trough@^2.0.0:
resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==
-ts-md5@^1.3.1:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/ts-md5/-/ts-md5-1.3.1.tgz#f5b860c0d5241dd9bb4e909dd73991166403f511"
- integrity sha512-DiwiXfwvcTeZ5wCE0z+2A9EseZsztaiZtGrtSaY5JOD7ekPnR/GoIVD5gXZAlK9Na9Kvpo9Waz5rW64WKAWApg==
-
ts-node@^10.8.1:
version "10.9.1"
resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
From e5dc932a11c4adc5f55ee4bd2ee372f65abca420 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 17 Mar 2023 05:34:23 +0000
Subject: [PATCH 0154/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/i18next-22.4.11 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index adc13dadf00..a8c308f1d64 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -290,7 +290,7 @@ lab:
'd3-drag': '3.0.0'
'd3-selection': '3.0.0'
'daisyui': *daisyui
- 'i18next': &i18next '22.4.9'
+ 'i18next': &i18next '22.4.11'
'lodash.get': *_get
'lodash.orderby': *_orderby
'lodash.set': *_set
From e6f685c54d88a64a213764e12f7c39b79cc06db5 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Fri, 17 Mar 2023 18:32:54 +0000
Subject: [PATCH 0155/1524] chore(deps): bump daisyui from 2.51.3 to 2.51.4
Bumps [daisyui](https://github.com/saadeghi/daisyui) from 2.51.3 to 2.51.4.
- [Release notes](https://github.com/saadeghi/daisyui/releases)
- [Changelog](https://github.com/saadeghi/daisyui/blob/master/CHANGELOG.md)
- [Commits](https://github.com/saadeghi/daisyui/compare/v2.51.3...v2.51.4)
---
updated-dependencies:
- dependency-name: daisyui
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/dev/package.json | 2 +-
sites/lab/package.json | 2 +-
sites/org/package.json | 2 +-
sites/shared/package.json | 2 +-
yarn.lock | 8 ++++----
5 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/sites/dev/package.json b/sites/dev/package.json
index 934c65e9fc8..b45fc67184a 100644
--- a/sites/dev/package.json
+++ b/sites/dev/package.json
@@ -32,7 +32,7 @@
"@next/bundle-analyzer": "13.2.4",
"@tailwindcss/typography": "0.5.9",
"algoliasearch": "4.15.0",
- "daisyui": "2.51.3",
+ "daisyui": "2.51.4",
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
diff --git a/sites/lab/package.json b/sites/lab/package.json
index 79a9c8c32a2..adf8fd6441a 100644
--- a/sites/lab/package.json
+++ b/sites/lab/package.json
@@ -35,7 +35,7 @@
"d3-dispatch": "3.0.1",
"d3-drag": "3.0.0",
"d3-selection": "3.0.0",
- "daisyui": "2.51.3",
+ "daisyui": "2.51.4",
"i18next": "22.4.11",
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
diff --git a/sites/org/package.json b/sites/org/package.json
index e6f01cd4316..26979051400 100644
--- a/sites/org/package.json
+++ b/sites/org/package.json
@@ -35,7 +35,7 @@
"@tailwindcss/typography": "0.5.9",
"algoliasearch": "4.15.0",
"react-copy-to-clipboard": "5.1.0",
- "daisyui": "2.51.3",
+ "daisyui": "2.51.4",
"lodash.get": "4.4.2",
"lodash.orderby": "4.6.0",
"lodash.set": "4.3.2",
diff --git a/sites/shared/package.json b/sites/shared/package.json
index 0c211efe9a1..f806fbb36f3 100644
--- a/sites/shared/package.json
+++ b/sites/shared/package.json
@@ -23,7 +23,7 @@
"d3-dispatch": "3.0.1",
"d3-drag": "3.0.0",
"d3-selection": "3.0.0",
- "daisyui": "2.51.3",
+ "daisyui": "2.51.4",
"feed": "4.2.2",
"file-saver": "2.0.5",
"front-matter": "4.0.2",
diff --git a/yarn.lock b/yarn.lock
index 76ac5f67a36..076f89c6a71 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -7153,10 +7153,10 @@ d3-selection@3, d3-selection@3.0.0:
resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31"
integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==
-daisyui@2.51.3:
- version "2.51.3"
- resolved "https://registry.yarnpkg.com/daisyui/-/daisyui-2.51.3.tgz#95dd0444f27f55326845db80076e76dcf8d31a92"
- integrity sha512-AQa9exq/DsnvjyDi6bwOqHExQr9LJJag0iKRXNvRRtHXPo1gaAQ3ASJWylUB8J8KMH2M9zIpr7cvPHc7yGckyQ==
+daisyui@2.51.4:
+ version "2.51.4"
+ resolved "https://registry.yarnpkg.com/daisyui/-/daisyui-2.51.4.tgz#dd4f70aeb603af9dfe42d1a1e2a8456fc57c5110"
+ integrity sha512-TGYD2BQCduxkKbDALlaWWaUdi33tryUuO/MxxBtAmLJ9zKn04gF6xduMxbrAUesR4AFr6LZW187TqF2H5c1AoA==
dependencies:
color "^4.2"
css-selector-tokenizer "^0.8.0"
From e8a6877d04770cee5ae262887f9686e0cfba8311 Mon Sep 17 00:00:00 2001
From: github-actions
Date: Fri, 17 Mar 2023 18:36:18 +0000
Subject: [PATCH 0156/1524] [dependabot skip] chore(deps): bumped
dependabot/npm_and_yarn/daisyui-2.51.4 changes in config/dependencies.yaml
---
config/dependencies.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/config/dependencies.yaml b/config/dependencies.yaml
index 354a5197d99..6c574ec4458 100644
--- a/config/dependencies.yaml
+++ b/config/dependencies.yaml
@@ -241,7 +241,7 @@ dev:
'@next/bundle-analyzer': &next '13.2.4'
'@tailwindcss/typography': &tailwindTypography '0.5.9'
'algoliasearch': '4.15.0'
- 'daisyui': &daisyui '2.51.3'
+ 'daisyui': &daisyui '2.51.4'
'lodash.get': *_get
'lodash.orderby': &_orderby '4.6.0'
'lodash.set': *_set
From 8890362032d9ebeda6778a244819ed33375bc751 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sat, 18 Mar 2023 19:44:40 -0500
Subject: [PATCH 0157/1524] fix (cutlist) string paths for cutlist methods
---
plugins/plugin-cutlist/src/index.mjs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index dbf97bbca9a..2ac39995683 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -4,10 +4,10 @@ export const plugin = {
name,
version,
store: [
- [['cutlist.addCut'], addCut],
- [['cutlist.removeCut'], removeCut],
- [['cutlist.setGrain'], setGrain],
- [['cutlist.setCutOnFold'], setCutOnFold],
+ ['cutlist.addCut', addCut],
+ ['cutlist.removeCut', removeCut],
+ ['cutlist.setGrain', setGrain],
+ ['cutlist.setCutOnFold', setCutOnFold],
],
}
From 27d3c85e829aa6323448a9c2e4ce3d534d252e69 Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 05:32:09 -0700
Subject: [PATCH 0158/1524] fix(plugin-cutlist): Correct updated method names
---
plugins/plugin-cutlist/src/index.mjs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index dbf97bbca9a..2ac39995683 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -4,10 +4,10 @@ export const plugin = {
name,
version,
store: [
- [['cutlist.addCut'], addCut],
- [['cutlist.removeCut'], removeCut],
- [['cutlist.setGrain'], setGrain],
- [['cutlist.setCutOnFold'], setCutOnFold],
+ ['cutlist.addCut', addCut],
+ ['cutlist.removeCut', removeCut],
+ ['cutlist.setGrain', setGrain],
+ ['cutlist.setCutOnFold', setCutOnFold],
],
}
From 9012fe26b48d0326e96c2190caba8d8ee66c970d Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 05:44:57 -0700
Subject: [PATCH 0159/1524] fix(plugin-cutlist): Prevent store.get() warning
messages
---
plugins/plugin-cutlist/src/index.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/plugin-cutlist/src/index.mjs b/plugins/plugin-cutlist/src/index.mjs
index 2ac39995683..7400a3862cd 100644
--- a/plugins/plugin-cutlist/src/index.mjs
+++ b/plugins/plugin-cutlist/src/index.mjs
@@ -42,7 +42,7 @@ function addCut(store, so = {}) {
return store
}
const path = ['cutlist', partName, 'materials', material]
- const existing = store.get(path) || []
+ const existing = store.get(path, [])
store.set(path, existing.concat({ cut, identical, bias, ignoreOnFold }))
return store
From 2efc3d7f205f4c0553e705bd91394e2888d32a16 Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 05:45:13 -0700
Subject: [PATCH 0160/1524] fix(plugin-title): Prevent store.get() warning
messages
---
plugins/plugin-title/src/index.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/plugin-title/src/index.mjs b/plugins/plugin-title/src/index.mjs
index 9f8d1d840eb..73c138e2ba2 100644
--- a/plugins/plugin-title/src/index.mjs
+++ b/plugins/plugin-title/src/index.mjs
@@ -79,7 +79,7 @@ export const plugin = {
}
// Cut List instructions
- const partCutlist = store.get(['cutlist', part.name])
+ const partCutlist = store.get(['cutlist', part.name], [])
// if there's a cutlist and it should be included
if (so.cutlist && partCutlist?.materials) {
// get the default cutonfold
From ae0a311328d0cf4cbe78751db3942d9b8a86131b Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 05:51:41 -0700
Subject: [PATCH 0161/1524] fix(workbench): Rotate parts in both directions to
align grainline in cutting layout
---
.../components/workbench/layout/cut/plugin-cut-layout.mjs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
index 686f56dacc7..e70e1ae5371 100644
--- a/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
+++ b/sites/shared/components/workbench/layout/cut/plugin-cut-layout.mjs
@@ -167,9 +167,10 @@ export const cutLayoutPlugin = function (material, grainAngle) {
if (partGrain === undefined) return
// the amount to rotate is the difference between this part's grain angle (as drafted) and the fabric's grain angle
- let toRotate = Math.abs(grainAngle - partGrain)
+ let toRotate = grainAngle - partGrain
// don't over rotate
if (toRotate >= 180) toRotate -= 180
+ else if (toRotate <= -180) toRotate += 180
// if there's no difference, don't rotate
if (toRotate === 0) return
From 2cae09789ea9781594d153e0e9cfb3f45ec87e7d Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 12:58:59 -0700
Subject: [PATCH 0162/1524] fix(plugin-title): Add space between name and
version
---
plugins/plugin-title/src/index.mjs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/plugin-title/src/index.mjs b/plugins/plugin-title/src/index.mjs
index 9f8d1d840eb..c29fb62107c 100644
--- a/plugins/plugin-title/src/index.mjs
+++ b/plugins/plugin-title/src/index.mjs
@@ -112,7 +112,7 @@ export const plugin = {
let name = store.data?.name || 'No Name'
name = name.replace('@freesewing/', '')
- name += 'v' + (store.data?.version || 'No Version')
+ name += ' v' + (store.data?.version || 'No Version')
points[`_${prefix}_titlePattern`] = nextPoint(name, 'fill-note')
if (store.data.for) {
From a6a8a828a6b3255edb4c63f479da07cf3985153d Mon Sep 17 00:00:00 2001
From: Benjamin F
Date: Sun, 19 Mar 2023 13:11:36 -0700
Subject: [PATCH 0163/1524] fix(plugin-cutonfold): Update tests to use prefix
in variable name
---
plugins/plugin-cutonfold/tests/plugin.test.mjs | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/plugins/plugin-cutonfold/tests/plugin.test.mjs b/plugins/plugin-cutonfold/tests/plugin.test.mjs
index d39ae8b045e..b500c3ce7ae 100644
--- a/plugins/plugin-cutonfold/tests/plugin.test.mjs
+++ b/plugins/plugin-cutonfold/tests/plugin.test.mjs
@@ -23,7 +23,7 @@ describe('Cutonfold Plugin Tests', () => {
const Test = new Design({ plugins: [plugin], parts: [part] })
const pattern = new Test()
pattern.draft()
- const c = pattern.parts[0].test.paths.cutonfold
+ const c = pattern.parts[0].test.paths.cutonfoldCutonfold
expect(c.attributes.get('class')).to.equal('note')
expect(c.attributes.get('marker-start')).to.equal('url(#cutonfoldFrom)')
expect(c.attributes.get('marker-end')).to.equal('url(#cutonfoldTo)')
@@ -62,7 +62,7 @@ describe('Cutonfold Plugin Tests', () => {
const Test = new Design({ plugins: [plugin], parts: [part] })
const pattern = new Test()
pattern.draft()
- const c = pattern.parts[0].test.paths.cutonfold
+ const c = pattern.parts[0].test.paths.cutonfoldCutonfold
expect(c.attributes.get('data-text')).to.equal('cutOnFoldAndGrainline')
})
@@ -85,7 +85,7 @@ describe('Cutonfold Plugin Tests', () => {
const Test = new Design({ plugins: [plugin], parts: [part] })
const pattern = new Test()
pattern.draft()
- let c = pattern.parts[0].test.paths.cutonfold
+ let c = pattern.parts[0].test.paths.cutonfoldCutonfold
expect(c.attributes.get('class')).to.equal('note')
expect(c.attributes.get('marker-start')).to.equal('url(#cutonfoldFrom)')
expect(c.attributes.get('marker-end')).to.equal('url(#cutonfoldTo)')
@@ -124,7 +124,7 @@ describe('Cutonfold Plugin Tests', () => {
const Test = new Design({ plugins: [plugin], parts: [part] })
const pattern = new Test()
pattern.draft()
- let c = pattern.parts[0].test.paths.cutonfold
+ let c = pattern.parts[0].test.paths.cutonfoldCutonfold
expect(c.attributes.get('class')).to.equal('note')
expect(c.attributes.get('marker-start')).to.equal('url(#cutonfoldFrom)')
expect(c.attributes.get('marker-end')).to.equal('url(#cutonfoldTo)')
From 1200bea79c66fb896a170c69e4cf4ef9a9c64d6a Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 19 Mar 2023 19:35:11 -0500
Subject: [PATCH 0164/1524] fix terser reporter
---
tests/reporters/terse.js | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/tests/reporters/terse.js b/tests/reporters/terse.js
index e7cf9b85dfa..75f07d6ccaf 100644
--- a/tests/reporters/terse.js
+++ b/tests/reporters/terse.js
@@ -2,7 +2,7 @@ const Mocha = require('mocha')
const { EVENT_TEST_FAIL, EVENT_RUN_END } = Mocha.Runner.constants
const path = require('path')
-const projectRoot = path.normalize(path.join(__dirname, '..'))
+const projectRoot = path.normalize(path.join(__dirname, '../..'))
const outputLog = path.join(projectRoot, '.test-failures.log')
const red = function (string) {
@@ -26,11 +26,12 @@ class TerseReporter {
runner.on(EVENT_TEST_FAIL, (test, err) => {
// output to the console
console.log(`FAIL: ${test.fullTitle()}`)
- console.log(err)
+ console.error(err)
// save for adding to an output file
- failuresPerFile[this.currentTest.file] = failuresPerFile[this.currentTest.file] || []
- failuresPerFile[this.currentTest.file].push(this.currentTest)
+ test.err = err
+ failuresPerFile[test.file] = failuresPerFile[test.file] || []
+ failuresPerFile[test.file].push(test)
})
runner.on(EVENT_RUN_END, () => {
From ab1f404eab83a7a0bc55fef83f3692dc8002f3d8 Mon Sep 17 00:00:00 2001
From: Enoch Riese
Date: Sun, 19 Mar 2023 20:12:17 -0500
Subject: [PATCH 0165/1524] fix failing plugin tests
---
plugins/plugin-bust/tests/plugin.test.mjs | 4 +-
plugins/plugin-cutlist/tests/plugin.test.mjs | 74 ++++++++++----------
plugins/plugin-cutonfold/src/index.mjs | 4 +-
plugins/plugin-grainline/src/index.mjs | 3 +-
4 files changed, 43 insertions(+), 42 deletions(-)
diff --git a/plugins/plugin-bust/tests/plugin.test.mjs b/plugins/plugin-bust/tests/plugin.test.mjs
index 3e27c478563..06a1e436b44 100644
--- a/plugins/plugin-bust/tests/plugin.test.mjs
+++ b/plugins/plugin-bust/tests/plugin.test.mjs
@@ -21,7 +21,7 @@ describe('Bust plugin Tests', () => {
it('Should copy measurement from chest to bust and from highBust to chest', function () {
const testPattern = new Design({
- measurements: {},
+ measurements: [],
})
const pattern = new testPattern().use(plugin)
const userMeasurements = { chest: 50, highBust: 60 }
@@ -32,7 +32,7 @@ describe('Bust plugin Tests', () => {
})
it('Should not overwrite existing bust measurements', function () {
- let config = { measurements: {} }
+ let config = { measurements: [] }
const testPattern = new Design(config, plugin)
let pattern = new testPattern()
let userMeasurements = { chest: 50, highBust: 60, bust: 55 }
diff --git a/plugins/plugin-cutlist/tests/plugin.test.mjs b/plugins/plugin-cutlist/tests/plugin.test.mjs
index 458d26bd6ec..03bcca6b599 100644
--- a/plugins/plugin-cutlist/tests/plugin.test.mjs
+++ b/plugins/plugin-cutlist/tests/plugin.test.mjs
@@ -9,8 +9,8 @@ describe('Cutlist Plugin Tests', () => {
let methods
const part = {
name: 'example_part',
- draft: ({ addCut, removeCut, setGrain, setCutOnFold, part }) => {
- methods = { addCut, removeCut, setGrain, setCutOnFold }
+ draft: ({ store, part }) => {
+ methods = { ...store.cutlist }
return part
},
@@ -19,17 +19,17 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof methods.addCut).to.equal('function')
- expect(typeof methods.removeCut).to.equal('function')
- expect(typeof methods.setGrain).to.equal('function')
- expect(typeof methods.setCutOnFold).to.equal('function')
+ expect(methods.addCut).to.be.a('function')
+ expect(methods.removeCut).to.be.a('function')
+ expect(methods.setGrain).to.be.a('function')
+ expect(methods.setCutOnFold).to.be.a('function')
})
it('Should handle addCut() with defaults', () => {
const part = {
name: 'example_part',
- draft: ({ addCut, part }) => {
- addCut()
+ draft: ({ store, part }) => {
+ store.cutlist.addCut()
return part
},
@@ -50,8 +50,8 @@ describe('Cutlist Plugin Tests', () => {
it('Should handle addCut() with non-defaults', () => {
const part = {
name: 'example_part',
- draft: ({ addCut, part }) => {
- addCut({ cut: 3, material: 'lining', identical: true })
+ draft: ({ store, part }) => {
+ store.cutlist.addCut({ cut: 3, material: 'lining', identical: true })
return part
},
@@ -72,10 +72,10 @@ describe('Cutlist Plugin Tests', () => {
it('Should remove cut info via addCut(false)', () => {
const part = {
name: 'example_part',
- draft: ({ addCut, part }) => {
- addCut(2, 'fabric')
- addCut(4, 'lining', true)
- addCut(false, 'lining')
+ draft: ({ store, part }) => {
+ store.cutlist.addCut(2, 'fabric')
+ store.cutlist.addCut(4, 'lining', true)
+ store.cutlist.addCut(false, 'lining')
return part
},
@@ -84,16 +84,16 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof pattern.setStores[0].cutlist.example_part.materials.lining).to.equal('undefined')
+ expect(pattern.setStores[0].cutlist.example_part.materials.lining).to.be.undefined
})
it('Should remove cut info for a material via removeCut()', () => {
const part = {
name: 'example_part',
- draft: ({ addCut, removeCut, part }) => {
- addCut(2, 'fabric')
- addCut(4, 'lining', true)
- removeCut('lining')
+ draft: ({ store, part }) => {
+ store.cutlist.addCut(2, 'fabric')
+ store.cutlist.addCut(4, 'lining', true)
+ store.cutlist.removeCut('lining')
return part
},
@@ -102,17 +102,17 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof pattern.setStores[0].cutlist.example_part.materials.lining).to.equal('undefined')
+ expect(pattern.setStores[0].cutlist.example_part.materials.lining).to.be.undefined
expect(pattern.setStores[0].cutlist.example_part.materials.fabric[0].cut).to.equal(2)
})
it('Should remove cut info for all materials via removeCut(true)', () => {
const part = {
name: 'example_part',
- draft: ({ addCut, removeCut, part }) => {
- addCut(2, 'fabric')
- addCut(4, 'lining', true)
- removeCut()
+ draft: ({ store, part }) => {
+ store.cutlist.addCut(2, 'fabric')
+ store.cutlist.addCut(4, 'lining', true)
+ store.cutlist.removeCut()
return part
},
@@ -121,14 +121,14 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof pattern.setStores[0].cutlist.example_part.materials).to.equal('undefined')
+ expect(pattern.setStores[0].cutlist.example_part.materials).to.be.undefined
})
it('Should set the grain via setGrain()', () => {
const part = {
name: 'example_part',
- draft: ({ setGrain, part }) => {
- setGrain(45)
+ draft: ({ store, part }) => {
+ store.cutlist.setGrain(45)
return part
},
@@ -143,9 +143,9 @@ describe('Cutlist Plugin Tests', () => {
it('Should remove the grain via setGrain(false)', () => {
const part = {
name: 'example_part',
- draft: ({ setGrain, part }) => {
- setGrain(45)
- setGrain(false)
+ draft: ({ store, part }) => {
+ store.cutlist.setGrain(45)
+ store.cutlist.setGrain(false)
return part
},
@@ -154,15 +154,15 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof pattern.setStores[0].cutlist.example_part.grain).to.equal('undefined')
+ expect(pattern.setStores[0].cutlist.example_part.grain).to.be.undefined
})
it('Should set the cutOnFold via setCutOnFold(p1, p2)', () => {
const part = {
name: 'example_part',
- draft: ({ Point, setCutOnFold, part }) => {
+ draft: ({ Point, store, part }) => {
try {
- setCutOnFold(new Point(2, 2), new Point(200, 200))
+ store.cutlist.setCutOnFold(new Point(2, 2), new Point(200, 200))
} catch (err) {
console.log(err)
}
@@ -183,10 +183,10 @@ describe('Cutlist Plugin Tests', () => {
it('Should removet the cutOnFold via setCutOnFold(false)', () => {
const part = {
name: 'example_part',
- draft: ({ Point, setCutOnFold, part }) => {
+ draft: ({ Point, store, part }) => {
try {
- setCutOnFold(new Point(2, 2), new Point(200, 200))
- setCutOnFold(false)
+ store.cutlist.setCutOnFold(new Point(2, 2), new Point(200, 200))
+ store.cutlist.setCutOnFold(false)
} catch (err) {
console.log(err)
}
@@ -198,6 +198,6 @@ describe('Cutlist Plugin Tests', () => {
const Test = new Design({ parts: [part] })
const pattern = new Test()
pattern.draft()
- expect(typeof pattern.setStores[0].cutlist.example_part.cutOnFold).to.equal('undefined')
+ expect(pattern.setStores[0].cutlist.example_part.cutOnFold).to.be.undefined
})
})
diff --git a/plugins/plugin-cutonfold/src/index.mjs b/plugins/plugin-cutonfold/src/index.mjs
index 7e01c130ec6..961babe1ed7 100644
--- a/plugins/plugin-cutonfold/src/index.mjs
+++ b/plugins/plugin-cutonfold/src/index.mjs
@@ -26,8 +26,8 @@ export const plugin = {
delete points.cutonfoldVia2
delete paths.cutonfoldCutonfold
// setCutOnFold relies on plugin-cutlist
- if (typeof store.setCutOnFold === 'function') {
- store.setCutOnFold(false) // Restore default
+ if (typeof store.get('cutlist.setCutOnFold') === 'function') {
+ store.cutlist.setCutOnFold(false) // Restore default
}
return true
}
diff --git a/plugins/plugin-grainline/src/index.mjs b/plugins/plugin-grainline/src/index.mjs
index 235a0430dd0..3f15015319d 100644
--- a/plugins/plugin-grainline/src/index.mjs
+++ b/plugins/plugin-grainline/src/index.mjs
@@ -34,9 +34,10 @@ export const plugin = {
...so,
}
// setGrain relies on plugin-cutlist
- if (typeof store.cutlist.setGrain === 'function') {
+ if (typeof store.get('cutlist.setGrain') === 'function') {
store.cutlist.setGrain(so.from.angle(so.to))
}
+
if (complete) {
points.grainlineFrom = so.from.shiftFractionTowards(so.to, 0.05)
points.grainlineTo = so.to.shiftFractionTowards(so.from, 0.05)
From 66a54dc5d240b43c0900070843319f74c4aca5ed Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 20 Mar 2023 05:03:01 +0000
Subject: [PATCH 0166/1524] chore(deps-dev): bump esbuild from 0.17.11 to
0.17.12
Bumps [esbuild](https://github.com/evanw/esbuild) from 0.17.11 to 0.17.12.
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/evanw/esbuild/compare/v0.17.11...v0.17.12)
---
updated-dependencies:
- dependency-name: esbuild
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]
---
sites/backend/package.json | 2 +-
yarn.lock | 228 ++++++++++++++++++-------------------
2 files changed, 115 insertions(+), 115 deletions(-)
diff --git a/sites/backend/package.json b/sites/backend/package.json
index f8b70e09849..c7fa9fcbf20 100644
--- a/sites/backend/package.json
+++ b/sites/backend/package.json
@@ -49,7 +49,7 @@
"devDependencies": {
"chai": "4.2.0",
"chai-http": "4.3.0",
- "esbuild": "0.17.11",
+ "esbuild": "0.17.12",
"mocha": "10.0.0",
"mocha-steps": "1.3.0",
"nodemon": "2.0.21",
diff --git a/yarn.lock b/yarn.lock
index 076f89c6a71..5211b19a6aa 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2459,220 +2459,220 @@
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz#cf91e86df127aa3d141744edafcba0abdc577d23"
integrity sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==
-"@esbuild/android-arm64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.11.tgz#52c3e6cabc19c5e4c1c0c01cb58f0442338e1c14"
- integrity sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg==
+"@esbuild/android-arm64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.12.tgz#15a8e2b407d03989b899e325151dc2e96d19c620"
+ integrity sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==
"@esbuild/android-arm@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.16.17.tgz#025b6246d3f68b7bbaa97069144fb5fb70f2fff2"
integrity sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==
-"@esbuild/android-arm@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f"
- integrity sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw==
+"@esbuild/android-arm@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.12.tgz#677a09297e1f4f37aba7b4fc4f31088b00484985"
+ integrity sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==
"@esbuild/android-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.16.17.tgz#c820e0fef982f99a85c4b8bfdd582835f04cd96e"
integrity sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==
-"@esbuild/android-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c"
- integrity sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ==
+"@esbuild/android-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.12.tgz#b292729eef4e0060ae1941f6a021c4d2542a3521"
+ integrity sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==
"@esbuild/darwin-arm64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz#edef4487af6b21afabba7be5132c26d22379b220"
integrity sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==
-"@esbuild/darwin-arm64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16"
- integrity sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw==
+"@esbuild/darwin-arm64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.12.tgz#efa35318df931da05825894e1787b976d55adbe3"
+ integrity sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==
"@esbuild/darwin-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz#42829168730071c41ef0d028d8319eea0e2904b4"
integrity sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==
-"@esbuild/darwin-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88"
- integrity sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw==
+"@esbuild/darwin-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.12.tgz#e7b54bb3f6dc81aadfd0485cd1623c648157e64d"
+ integrity sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==
"@esbuild/freebsd-arm64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz#1f4af488bfc7e9ced04207034d398e793b570a27"
integrity sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==
-"@esbuild/freebsd-arm64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd"
- integrity sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q==
+"@esbuild/freebsd-arm64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.12.tgz#99a18a8579d6299c449566fe91d9b6a54cf2a591"
+ integrity sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==
"@esbuild/freebsd-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz#636306f19e9bc981e06aa1d777302dad8fddaf72"
integrity sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==
-"@esbuild/freebsd-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38"
- integrity sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g==
+"@esbuild/freebsd-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.12.tgz#0e090190fede307fb4022f671791a50dd5121abd"
+ integrity sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==
"@esbuild/linux-arm64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz#a003f7ff237c501e095d4f3a09e58fc7b25a4aca"
integrity sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==
-"@esbuild/linux-arm64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5"
- integrity sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg==
+"@esbuild/linux-arm64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.12.tgz#7fe2a69f8a1a7153fa2b0f44aabcadb59475c7e0"
+ integrity sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==
"@esbuild/linux-arm@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz#b591e6a59d9c4fe0eeadd4874b157ab78cf5f196"
integrity sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==
-"@esbuild/linux-arm@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7"
- integrity sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg==
+"@esbuild/linux-arm@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.12.tgz#b87c76ebf1fe03e01fd6bb5cfc2f3c5becd5ee93"
+ integrity sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==
"@esbuild/linux-ia32@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz#24333a11027ef46a18f57019450a5188918e2a54"
integrity sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==
-"@esbuild/linux-ia32@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab"
- integrity sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA==
+"@esbuild/linux-ia32@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.12.tgz#9e9357090254524d32e6708883a47328f3037858"
+ integrity sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==
"@esbuild/linux-loong64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz#d5ad459d41ed42bbd4d005256b31882ec52227d8"
integrity sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==
-"@esbuild/linux-loong64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502"
- integrity sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g==
+"@esbuild/linux-loong64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.12.tgz#9deb605f9e2c82f59412ddfefb4b6b96d54b5b5b"
+ integrity sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==
"@esbuild/linux-mips64el@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz#4e5967a665c38360b0a8205594377d4dcf9c3726"
integrity sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==
-"@esbuild/linux-mips64el@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b"
- integrity sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw==
+"@esbuild/linux-mips64el@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.12.tgz#6ef170b974ddf5e6acdfa5b05f22b6e9dfd2b003"
+ integrity sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==
"@esbuild/linux-ppc64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz#206443a02eb568f9fdf0b438fbd47d26e735afc8"
integrity sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==
-"@esbuild/linux-ppc64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11"
- integrity sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA==
+"@esbuild/linux-ppc64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.12.tgz#1638d3d4acf1d34aaf37cf8908c2e1cefed16204"
+ integrity sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==
"@esbuild/linux-riscv64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz#c351e433d009bf256e798ad048152c8d76da2fc9"
integrity sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==
-"@esbuild/linux-riscv64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c"
- integrity sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA==
+"@esbuild/linux-riscv64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.12.tgz#135b6e9270a8e2de2b9094bb21a287517df520ef"
+ integrity sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==
"@esbuild/linux-s390x@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz#661f271e5d59615b84b6801d1c2123ad13d9bd87"
integrity sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==
-"@esbuild/linux-s390x@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad"
- integrity sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ==
+"@esbuild/linux-s390x@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.12.tgz#21e40830770c5d08368e300842bde382ce97d615"
+ integrity sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==
"@esbuild/linux-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz#e4ba18e8b149a89c982351443a377c723762b85f"
integrity sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==
-"@esbuild/linux-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7"
- integrity sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw==
+"@esbuild/linux-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.12.tgz#76c1c199871d48e1aaa47a762fb9e0dca52e1f7a"
+ integrity sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==
"@esbuild/netbsd-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz#7d4f4041e30c5c07dd24ffa295c73f06038ec775"
integrity sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==
-"@esbuild/netbsd-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1"
- integrity sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag==
+"@esbuild/netbsd-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.12.tgz#c7c3b3017a4b938c76c35f66af529baf62eac527"
+ integrity sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==
"@esbuild/openbsd-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz#970fa7f8470681f3e6b1db0cc421a4af8060ec35"
integrity sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==
-"@esbuild/openbsd-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b"
- integrity sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w==
+"@esbuild/openbsd-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.12.tgz#05d04217d980e049001afdbeacbb58d31bb5cefb"
+ integrity sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==
"@esbuild/sunos-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz#abc60e7c4abf8b89fb7a4fe69a1484132238022c"
integrity sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==
-"@esbuild/sunos-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc"
- integrity sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg==
+"@esbuild/sunos-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.12.tgz#cf3862521600e4eb6c440ec3bad31ed40fb87ef3"
+ integrity sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==
"@esbuild/win32-arm64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz#7b0ff9e8c3265537a7a7b1fd9a24e7bd39fcd87a"
integrity sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==
-"@esbuild/win32-arm64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325"
- integrity sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ==
+"@esbuild/win32-arm64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.12.tgz#43dd7fb5be77bf12a1550355ab2b123efd60868e"
+ integrity sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==
"@esbuild/win32-ia32@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz#e90fe5267d71a7b7567afdc403dfd198c292eb09"
integrity sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==
-"@esbuild/win32-ia32@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3"
- integrity sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw==
+"@esbuild/win32-ia32@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.12.tgz#9940963d0bff4ea3035a84e2b4c6e41c5e6296eb"
+ integrity sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==
"@esbuild/win32-x64@0.16.17":
version "0.16.17"
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz#c5a1a4bfe1b57f0c3e61b29883525c6da3e5c091"
integrity sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==
-"@esbuild/win32-x64@0.17.11":
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1"
- integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ==
+"@esbuild/win32-x64@0.17.12":
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.12.tgz#3a11d13e9a5b0c05db88991b234d8baba1f96487"
+ integrity sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==
"@eslint-community/eslint-utils@^4.2.0":
version "4.3.0"
@@ -8108,33 +8108,33 @@ esbuild-register@^3.4.1:
dependencies:
debug "^4.3.4"
-esbuild@0.17.11, esbuild@^0.17.2:
- version "0.17.11"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.11.tgz#9f3122643b21d7e7731e42f18576c10bfa28152b"
- integrity sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg==
+esbuild@0.17.12, esbuild@^0.17.2:
+ version "0.17.12"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.12.tgz#2ad7523bf1bc01881e9d904bc04e693bd3bdcf2f"
+ integrity sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==
optionalDependencies:
- "@esbuild/android-arm" "0.17.11"
- "@esbuild/android-arm64" "0.17.11"
- "@esbuild/android-x64" "0.17.11"
- "@esbuild/darwin-arm64" "0.17.11"
- "@esbuild/darwin-x64" "0.17.11"
- "@esbuild/freebsd-arm64" "0.17.11"
- "@esbuild/freebsd-x64" "0.17.11"
- "@esbuild/linux-arm" "0.17.11"
- "@esbuild/linux-arm64" "0.17.11"
- "@esbuild/linux-ia32" "0.17.11"
- "@esbuild/linux-loong64" "0.17.11"
- "@esbuild/linux-mips64el" "0.17.11"
- "@esbuild/linux-ppc64" "0.17.11"
- "@esbuild/linux-riscv64" "0.17.11"
- "@esbuild/linux-s390x" "0.17.11"
- "@esbuild/linux-x64" "0.17.11"
- "@esbuild/netbsd-x64" "0.17.11"
- "@esbuild/openbsd-x64" "0.17.11"
- "@esbuild/sunos-x64" "0.17.11"
- "@esbuild/win32-arm64" "0.17.11"
- "@esbuild/win32-ia32" "0.17.11"
- "@esbuild/win32-x64" "0.17.11"
+ "@esbuild/android-arm" "0.17.12"
+ "@esbuild/android-arm64" "0.17.12"
+ "@esbuild/android-x64" "0.17.12"
+ "@esbuild/darwin-arm64" "0.17.12"
+ "@esbuild/darwin-x64" "0.17.12"
+ "@esbuild/freebsd-arm64" "0.17.12"
+ "@esbuild/freebsd-x64" "0.17.12"
+ "@esbuild/linux-arm" "0.17.12"
+ "@esbuild/linux-arm64" "0.17.12"
+ "@esbuild/linux-ia32" "0.17.12"
+ "@esbuild/linux-loong64" "0.17.12"
+ "@esbuild/linux-mips64el" "0.17.12"
+ "@esbuild/linux-ppc64" "0.17.12"
+ "@esbuild/linux-riscv64" "0.17.12"
+ "@esbuild/linux-s390x" "0.17.12"
+ "@esbuild/linux-x64" "0.17.12"
+ "@esbuild/netbsd-x64" "0.17.12"
+ "@esbuild/openbsd-x64" "0.17.12"
+ "@esbuild/sunos-x64" "0.17.12"
+ "@esbuild/win32-arm64" "0.17.12"
+ "@esbuild/win32-ia32" "0.17.12"
+ "@esbuild/win32-x64" "0.17.12"
esbuild@^0.16.3, esbuild@^0.16.5:
version "0.16.17"
From cbff21ef1ced06f401de34f0993a199545bad924 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 20 Mar 2023 05:05:09 +0000
Subject: [PATCH 0167/1524] chore(deps): bump styled-components from 5.3.8 to
5.3.9
Bumps [styled-components](https://github.com/styled-components/styled-components) from 5.3.8 to 5.3.9.
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](https://github.com/styled-components/styled-components/compare/v5.3.8...v5.3.9)
---
updated-dependencies:
- dependency-name: styled-components
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot]