Skip to content

Commit c236db3

Browse files
authored
chore(build): Fix incorrect versions after merge (#18154)
Whenever we add a new module to the monorepo, the version does not keep up with new releases before it is merged...
1 parent 02625ef commit c236db3

File tree

3 files changed

+4
-14
lines changed

3 files changed

+4
-14
lines changed

dev-packages/bundler-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sentry-internal/bundler-tests",
3-
"version": "10.23.0",
3+
"version": "10.24.0",
44
"description": "Bundler tests for Sentry Browser SDK",
55
"repository": "git://github.com/getsentry/sentry-javascript.git",
66
"homepage": "https://github.com/getsentry/sentry-javascript/tree/master/packages/bundler-tests",
@@ -12,7 +12,7 @@
1212
"test": "vitest run"
1313
},
1414
"dependencies": {
15-
"@sentry/browser": "10.23.0",
15+
"@sentry/browser": "10.24.0",
1616
"webpack": "^5.0.0",
1717
"rollup": "^4.0.0",
1818
"vite": "^5.0.0",

dev-packages/bundler-tests/tests/bundling.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ describe('spotlight', () => {
133133
for (const [name, bundler] of cases) {
134134
test(`${name} development bundle contains spotlight`, async () => {
135135
const code = await bundler('development');
136-
expect(code).includes(SPOTLIGHT_URL);
136+
expect(code).toContain(SPOTLIGHT_URL);
137137
});
138138

139139
test(`${name} production bundle does not contain spotlight`, async () => {
140140
const code = await bundler('production');
141-
expect(code).not.includes(SPOTLIGHT_URL);
141+
expect(code).not.toContain(SPOTLIGHT_URL);
142142
});
143143
}
144144
});

dev-packages/bundler-tests/webpack.config.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)