Skip to content

Commit

Permalink
chore: update dependencies and lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Feb 5, 2024
1 parent 47f4070 commit 21e644e
Show file tree
Hide file tree
Showing 4 changed files with 1,040 additions and 468 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/autofix.yml
@@ -1,9 +1,9 @@
name: autofix.ci # needed to securely identify the workflow
name: autofix.ci # needed to securely identify the workflow

on:
pull_request:
push:
branches: [ "main" ]
branches: ["main"]

permissions:
contents: read
Expand All @@ -16,11 +16,11 @@ jobs:
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Fix lint issues
run: npm run lint:fix
- uses: autofix-ci/action@ea32e3a12414e6d3183163c3424a7d7a8631ad84
with:
commit-message: 'chore: apply automated lint fixes'
commit-message: "chore: apply automated lint fixes"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: "pnpm"
- run: pnpm install
- run: pnpm lint
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -26,18 +26,18 @@
"lint:fix": "eslint --fix --ext .ts . && prettier -w src test",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && vitest --run typecheck && vitest run"
"test": "pnpm lint && vitest run --typecheck"
},
"devDependencies": {
"@types/node": "^20.11.14",
"@types/node": "^20.11.16",
"@vitest/coverage-v8": "^1.2.2",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"eslint-config-unjs": "^0.2.1",
"prettier": "^3.2.4",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.2.2"
},
"packageManager": "pnpm@8.15.1"
}
}

0 comments on commit 21e644e

Please sign in to comment.