File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ export async function publishInCI(
68
68
try {
69
69
const { stdout : npmVersion } = await exec ( `npm info ${ pkg } version` ) ;
70
70
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
+ ) ;
72
74
continue ;
73
75
}
74
76
} catch ( e ) {
@@ -119,7 +121,8 @@ async function publishPackageInCI(
119
121
120
122
// Write proxy registry token for this package to .npmrc.
121
123
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 ) ]
123
126
} " >> ~/.npmrc`
124
127
) ;
125
128
You can’t perform that action at this time.
0 commit comments