From 786a5d06cbba8586e9fdd05814c5a9de8fba9c1f Mon Sep 17 00:00:00 2001 From: joostdecock Date: Sat, 17 Feb 2024 16:06:32 +0100 Subject: [PATCH] chore(brian): Always load plugin-bust The plugin changed how it handles conditionality, so we are always loading it. --- config/changelog.yaml | 2 ++ designs/brian/src/base.mjs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/changelog.yaml b/config/changelog.yaml index 02622ff36b3..bfd8d51b2b2 100644 --- a/config/changelog.yaml +++ b/config/changelog.yaml @@ -1,5 +1,7 @@ Unreleased: Changed: + brian: + - Always load plugin-bust due to its changes in how it handle conditionality. plugin-bust: - This plugin now uses the `preSetDraft` rather than `preDraft` lifecycle hook - Conditionality has been moved to the `preSetDraft` lifecycle hook, rather than exposing a `withCondition` named export diff --git a/designs/brian/src/base.mjs b/designs/brian/src/base.mjs index 3e64ad3f6be..3883fb07b42 100644 --- a/designs/brian/src/base.mjs +++ b/designs/brian/src/base.mjs @@ -1,4 +1,4 @@ -import { withCondition as bustPlugin } from '@freesewing/plugin-bust' +import { bustPlugin } from '@freesewing/plugin-bust' export const base = { name: 'brian.base',