Skip to content

Commit

Permalink
Update to Prettier 3.2.5 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlansley committed Feb 5, 2024
1 parent 4a0e547 commit 24a163b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand All @@ -42,7 +42,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Publish to NPM
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "@checkdigit/prettier-config",
"version": "5.2.0",
"version": "5.3.0",
"description": "Check Digit code formatting configuration",
"private": false,
"main": "index.json",
"type": "module",
"engines": {
"node": ">=20.10"
"node": ">=20.11"
},
"author": "Check Digit, LLC",
"license": "MIT",
"scripts": {
"prettier": "prettier --ignore-path .gitignore --list-different .",
"prettier:fix": "prettier --ignore-path .gitignore --write .",
"test": "npm run ci:test",
"ci:test": "npm run ci:style && prettier --version | grep -q '3.2.4'",
"ci:test": "npm run ci:style && prettier --version | grep -q '3.2.5'",
"ci:style": "npm run prettier"
},
"peerDependencies": {
"prettier": "3.2.4"
"prettier": "3.2.5"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 24a163b

Please sign in to comment.