Skip to content

Commit 98bffbd

Browse files
committed
fix linting
1 parent a51a2aa commit 98bffbd

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

dev-packages/e2e-tests/lib/publishPackages.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ const repositoryRoot = path.resolve(__dirname, '../../..');
1010
* Publishes all built Sentry package tarballs to the local Verdaccio test registry.
1111
*/
1212
export function publishPackages(): void {
13-
const version = (
14-
JSON.parse(readFileSync(path.join(__dirname, '../package.json'), 'utf8')) as { version: string }
15-
).version;
13+
const version = (JSON.parse(readFileSync(path.join(__dirname, '../package.json'), 'utf8')) as { version: string })
14+
.version;
1615

1716
// Get absolute paths of all the packages we want to publish to the fake registry
1817
// Only include the current versions, to avoid getting old tarballs published as well

0 commit comments

Comments
 (0)