From 36d193f8ec642e1c954273f4eccc3da2640667fd Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Sun, 22 Feb 2026 00:18:45 +0100 Subject: [PATCH] fix(ci): provide explicit config file for backstopjs scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 707a15c8..ab975fc7 100644 --- a/package.json +++ b/package.json @@ -100,10 +100,10 @@ "check:mdx": "node scripts/validate-mdx.mjs", "check:a11y": "pa11y-ci", "check:wcag": "tsx ./scripts/wcag-sitemap.ts", - "backstop:reference": "backstop reference --docker", - "backstop:test": "backstop test --docker", - "backstop:approve": "backstop approve --docker", - "backstop:ci": "backstop test", + "backstop:reference": "backstop reference --config=backstop.config.js --docker", + "backstop:test": "backstop test --config=backstop.config.js --docker", + "backstop:approve": "backstop approve --config=backstop.config.js --docker", + "backstop:ci": "backstop test --config=backstop.config.js", "cms:branding:local": "DIRECTUS_URL=${DIRECTUS_URL:-http://cms.klz.localhost} npx tsx --env-file=.env scripts/setup-directus-branding.ts", "cms:branding:testing": "DIRECTUS_URL=https://cms.testing.klz-cables.com npx tsx --env-file=.env scripts/setup-directus-branding.ts", "cms:branding:staging": "DIRECTUS_URL=https://cms.staging.klz-cables.com npx tsx --env-file=.env scripts/setup-directus-branding.ts",