Skip to content

Commit

Permalink
Merge branch 'main' into 1000-D-add-node-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyDallas authored Jan 13, 2025
2 parents c665fe0 + 2b48f4e commit 00689af
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 71 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/zxc-update-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
- name: Commit docs/content/User/StepByStepGuide.md Changes
id: commit-readme
if : ${{ github.event.inputs.dry-run-enabled != 'true' && !cancelled() && !failure() && inputs.commit-changes }}
uses: stefanzweifel/git-auto-commit-action@8621497c8c39c72f3e2a999a26b4ca1b5058a842 # v5.0.1
uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0
with:
commit_message: "chore: auto update docs/content/User/StepByStepGuide.md"
commit_options: '--no-verify --signoff'
Expand Down
143 changes: 76 additions & 67 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"figlet": "^1.8.0",
"got": "^14.4.5",
"http-status-codes": "^2.3.0",
"inquirer": "^12.3.0",
"inquirer": "^12.3.1",
"ip": "^2.0.1",
"js-base64": "^3.7.7",
"listr2": "^8.2.5",
Expand All @@ -79,7 +79,7 @@
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@eslint/js": "^9.18.0",
"@types/adm-zip": "^0.5.7",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/core/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ export function resolveValidJsonFilePath(filePath: string, defaultPath?: string)
const throttleInfo = fs.statSync(resolvedFilePath);
if (throttleInfo.size === 0 && defaultPath) {
return resolveValidJsonFilePath(defaultPath, null);
} else if (!defaultPath) {
} else if (throttleInfo.size === 0) {
throw new SoloError(`File is empty: ${filePath}`);
}

Expand Down

0 comments on commit 00689af

Please sign in to comment.