From 242052dbee159d1e912d0017be6f180c5d02e445 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 20 Aug 2023 07:32:50 +0200 Subject: [PATCH 1/3] fix(dev): Typo fix that breaks the webpack loader Fixing a typo introduced in a89867e4c67f that breaks the webpack loader. Kinda makes me wonder of people even test the changes they submit. --- .../dev/tutorials/pattern-design/completing-our-pattern/en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown/dev/tutorials/pattern-design/completing-our-pattern/en.md b/markdown/dev/tutorials/pattern-design/completing-our-pattern/en.md index 6e2eb5f0ffd..215ecb6cecf 100644 --- a/markdown/dev/tutorials/pattern-design/completing-our-pattern/en.md +++ b/markdown/dev/tutorials/pattern-design/completing-our-pattern/en.md @@ -62,7 +62,7 @@ our snippets: function draftBib({ Path, Point, - //hightlight-start + //highlight-start Snippet, //highlight-end paths, From 89832db22e00a0325777f6eb7d59d9f38f71cc50 Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 20 Aug 2023 07:34:28 +0200 Subject: [PATCH 2/3] fix(dev): Broken link on homepage --- sites/dev/pages/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/dev/pages/index.mjs b/sites/dev/pages/index.mjs index a067e08d7dd..5337ecd7f30 100644 --- a/sites/dev/pages/index.mjs +++ b/sites/dev/pages/index.mjs @@ -138,7 +138,7 @@ const HomePage = ({ page }) => (
From 910b79191d24db82181240ba107164129a4d9bfa Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sun, 20 Aug 2023 07:41:08 +0200 Subject: [PATCH 3/3] fix(markdown): Add missing import and plugins to desing tutorial --- markdown/dev/tutorials/pattern-design/our-first-part/en.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/markdown/dev/tutorials/pattern-design/our-first-part/en.md b/markdown/dev/tutorials/pattern-design/our-first-part/en.md index 07b34b28689..5fe41f5ba9a 100644 --- a/markdown/dev/tutorials/pattern-design/our-first-part/en.md +++ b/markdown/dev/tutorials/pattern-design/our-first-part/en.md @@ -20,6 +20,8 @@ lives in `design/src/index.mjs`, and our part lives in `design/src/bib.mjs`. This `bib.mjs` is where we'll do all our work. The file includes a comments to guide you on how to use it. We removed those for clarity in our example. It currently looks like this: ```design/src/bib.mjs +import { pluginBundle } from "@freesewing/plugin-bundle" + function draftBib ({ part, // Your draft method must return this }) @@ -40,7 +42,7 @@ export const bib = { options: {}, measurements: [], optionalMeasurements: [], - plugins: [] + plugins: [ pluginBundle ] } ```