Skip to content

Commit

Permalink
fix(msw): inconsistent package version in generated file (#3095)
Browse files Browse the repository at this point in the history
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 <moritz.fleck@konghq.com>
  • Loading branch information
schogges authored Oct 25, 2024
1 parent bf39440 commit b86204d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b86204d

Please sign in to comment.