From b86204d4c80861efb31f78472932fbdd998eb253 Mon Sep 17 00:00:00 2001 From: Mo <24444046+schogges@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:36:57 +0100 Subject: [PATCH] fix(msw): inconsistent package version in generated file (#3095) When running `make install` from outdated or cleaned `node_modules` the `PACKAGE_VERSION` in `public/mockedServiceWorker.js` gets aligned with the version specified in `package.json`, which causes a diff. Signed-off-by: schogges --- public/mockServiceWorker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/mockServiceWorker.js b/public/mockServiceWorker.js index 24fe3a25f..53a590cfb 100644 --- a/public/mockServiceWorker.js +++ b/public/mockServiceWorker.js @@ -8,7 +8,7 @@ * - Please do NOT serve this file on production. */ -const PACKAGE_VERSION = '2.3.1' +const PACKAGE_VERSION = '2.4.12' const INTEGRITY_CHECKSUM = '26357c79639bfa20d64c0efca2a87423' const IS_MOCKED_RESPONSE = Symbol('isMockedResponse') const activeClientIds = new Set()