File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dev-packages/e2e-tests/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ function fixPackageJson(cwd: string): void {
18
18
19
19
// 1. Fix file dependencies
20
20
if ( packageJson . devDependencies ?. [ '@sentry-internal/test-utils' ] ) {
21
- const relativePath = resolve ( relative ( cwd , join ( __dirname , '../test-utils' ) ) ) ;
21
+ const relativePath = resolve ( relative ( cwd , join ( __dirname , '../../ test-utils' ) ) ) ;
22
22
packageJson . devDependencies [ '@sentry-internal/test-utils' ] = `link:${ relativePath } ` ;
23
23
}
24
24
25
25
// 2. Fix volta extends
26
26
if ( packageJson . volta ?. extends === '../../package.json' ) {
27
- const voltaPath = resolve ( relative ( cwd , join ( __dirname , './package.json' ) ) ) ;
27
+ const voltaPath = resolve ( relative ( cwd , join ( __dirname , '.. /package.json' ) ) ) ;
28
28
packageJson . volta . extends = voltaPath ;
29
29
}
30
30
You can’t perform that action at this time.
0 commit comments