Skip to content

Commit 29a6463

Browse files
committed
Formatting pass
1 parent 550f5b8 commit 29a6463

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

scripts/release/utils/publish.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ export async function publishInCI(
6868
try {
6969
const { stdout: npmVersion } = await exec(`npm info ${pkg} version`);
7070
if (version === npmVersion.trim()) {
71-
console.log(`Skipping publish of ${pkg} - version ${version} is already published`);
71+
console.log(
72+
`Skipping publish of ${pkg} - version ${version} is already published`
73+
);
7274
continue;
7375
}
7476
} catch (e) {
@@ -119,7 +121,8 @@ async function publishPackageInCI(
119121

120122
// Write proxy registry token for this package to .npmrc.
121123
await exec(
122-
`echo "//wombat-dressing-room.appspot.com/:_authToken=${process.env[getEnvTokenKey(pkg)]
124+
`echo "//wombat-dressing-room.appspot.com/:_authToken=${
125+
process.env[getEnvTokenKey(pkg)]
123126
}" >> ~/.npmrc`
124127
);
125128

0 commit comments

Comments
 (0)