Skip to content

Commit

Permalink
release v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dworthen committed Feb 12, 2024
1 parent 642b5c0 commit 58c2e4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gov4git/js-client",
"version": "2.0.3",
"version": "2.1.2",
"description": "JavaScript client for gov4git",
"type": "module",
"main": "./dist/index.cjs",
Expand Down Expand Up @@ -42,7 +42,7 @@
"x64": "x86_64"
},
"variables": {
"version": "2.0.3"
"version": "2.1.2"
}
},
"keywords": [
Expand All @@ -60,4 +60,4 @@
"dependencies": {
"@d-dev/archive-downloader": "^0.1.0"
}
}
}
2 changes: 1 addition & 1 deletion src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { runGov4Git } from './index.js'
async function run() {
const { stdout, stderr } = await runGov4Git(...process.argv.slice(2))
console.log(stdout)
if (stderr! + null && stderr !== '') {
if (stderr != null && stderr !== '') {
console.error(stderr)
}
}
Expand Down

0 comments on commit 58c2e4d

Please sign in to comment.