Skip to content

Commit

Permalink
Merge pull request #1508 from paritytech/dependabot/npm_and_yarn/java…
Browse files Browse the repository at this point in the history
…script/prettier-3.1.0

chore(deps-dev): bump prettier from 3.0.3 to 3.1.0 in /javascript
  • Loading branch information
mergify[bot] authored Nov 17, 2023
2 parents 2991add + 2c441c2 commit 6518119
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions javascript/package-lock.json

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

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4"
},
"workspaces": [
Expand Down
4 changes: 2 additions & 2 deletions javascript/packages/orchestrator/src/configGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ async function getCollatorNodeFromConfig(
collatorConfig.validator !== undefined
? collatorConfig.validator
: cumulusBased
? true
: false;
? true
: false;

if (collatorConfig.args)
args = args.concat(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ export class NativeClient extends Client {
result.stdout !== ""
? result.stdout
: result.stderr !== ""
? result.stderr
: "";
? result.stderr
: "";

return {
exitCode: result.exitCode,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ export class PodmanClient extends Client {
result.stdout !== ""
? result.stdout
: result.stderr !== ""
? result.stderr
: "";
? result.stderr
: "";

return {
exitCode: result.exitCode,
Expand Down

0 comments on commit 6518119

Please sign in to comment.