Skip to content

Commit

Permalink
chore(deps): update dependency @pob/root to v13.4.1 (#1055)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 29, 2024
1 parent 65cd5db commit 76fc6bc
Show file tree
Hide file tree
Showing 9 changed files with 332 additions and 232 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-renovate-pob_root.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Check for added or modified files
id: git-check-modified
run: echo ::set-output name=modified::$(if [[ -z $(git status -s) ]]; then echo "false"; else echo "true"; fi)
run: if [[ -z $(git status -s) ]]; then echo "modified=false" >> $GITHUB_OUTPUT ; else echo "modified=true"; fi

- name: Commit report
if: steps.git-check-modified.outputs.modified == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-renovate-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Check for added or modified files
id: git-check-modified
run: echo ::set-output name=modified::$(if [[ -z $(git status -s) ]]; then echo "false"; else echo "true"; fi)
run: if [[ -z $(git status -s) ]]; then echo "modified=false" >> $GITHUB_OUTPUT ; else echo "modified=true"; fi

- name: Commit report
if: steps.git-check-modified.outputs.modified == 'true'
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
CHANGELOG.md
/.yarnrc.yml
/docs
/.yarn/**/*
/packages/*/dist
Expand Down
5 changes: 2 additions & 3 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
defaultSemverRangePrefix: ^

enableGlobalCache: true
# logFilters:
# - code: YN0060
# level: error

nodeLinker: node-modules
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@pob/commitlint-config": "7.0.0",
"@pob/eslint-config": "58.1.0",
"@pob/eslint-config-typescript": "58.1.0",
"@pob/root": "13.2.0",
"@pob/root": "13.4.1",
"@types/jest": "29.5.13",
"@types/node": "20.16.10",
"check-package-dependencies": "7.2.0",
Expand Down
Empty file.
Empty file.
Empty file.
Loading

0 comments on commit 76fc6bc

Please sign in to comment.