Skip to content

Commit 5981488

Browse files
authored
TINY-13085: Switch from msw to agar-sw (#159)
* TINY-13085: switched to agar-sw * TINY-13085: Updated changelog * TINY-13085: Use the correct package name * TINY-13085: Bumped changelog date
1 parent b92c673 commit 5981488

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## 15.0.4 - 2025-10-22
10+
11+
## Changed
12+
- Swapped out `msw` for `agar-sw`. #TINY-13085
13+
914
## 15.0.3 - 2025-10-15
1015

1116
## Fixed

modules/server/src/main/ts/bedrock/server/RunnerRoutes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const generate = async (mode: string, projectdir: string, basedir: string
101101
Routes.routing('GET', '/lib/jquery', path.dirname(require.resolve('jquery'))),
102102
Routes.routing('GET', '/lib/core-js-bundle', path.dirname(require.resolve('core-js-bundle'))),
103103
Routes.routing('GET', '/css', path.join(basedir, 'src/resources/css')),
104-
Routes.nodeResolveFile('GET', '/mockServiceWorker.js', projectdir, 'msw', 'lib/mockServiceWorker.js'),
104+
Routes.nodeResolveFile('GET', '/agar-sw.js', projectdir, '@ephox/agar-sw', 'dist/agar-sw.js'),
105105

106106
// test code
107107
Routes.asyncJs('GET', '/compiled/tests.js', (done) => {

0 commit comments

Comments
 (0)