Skip to content

Commit 1eba356

Browse files
author
Alvaro Jose
committed
fix: linting error
1 parent 743410b commit 1eba356

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/merge-release-run.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ const srcPackageDir = path.join(process.cwd(), process.env.SRC_PACKAGE_DIR || '.
2929
console.log(' using deploy directory : ' + deployDir)
3030
console.log('using src directory (package.json) : ' + srcPackageDir)
3131

32-
const access = process.env.NPM_PRIVATE==='true' ? 'restricted' : 'public'
32+
const access = process.env.NPM_PRIVATE === 'true' ? 'restricted' : 'public'
3333

3434
console.log('deploy to NPM with access : ' + access)
35-
35+
3636
let pkg = require(path.join(deployDir, 'package.json'))
3737

3838
const run = async () => {
@@ -97,7 +97,7 @@ const run = async () => {
9797
exec(`git checkout package.json`) // cleanup
9898
exec(`git tag ${newVersion}`)
9999
exec(`echo "version=${newVersion}" >> $GITHUB_OUTPUT`)
100-
100+
101101
const remote = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`
102102
exec(`git push ${remote} --tags`)
103103
}

src/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)