Skip to content

Commit

Permalink
chore: updates (#54)
Browse files Browse the repository at this point in the history
* chore: updates

* chore: fix lockfile
  • Loading branch information
dominikg committed Sep 14, 2023
1 parent 71c11de commit b9afa3e
Show file tree
Hide file tree
Showing 5 changed files with 823 additions and 732 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16
Expand All @@ -38,6 +38,6 @@ jobs:
run: pnpm run lint
- name: audit
if: (${{ success() }} || ${{ failure() }})
run: pnpm audit
run: pnpm audit --prod
- name: test
run: pnpm test
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
os: [ubuntu-latest]
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
Expand Down
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@
"prepare": "husky install"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^18.16.16",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tsm": "^2.3.0",
"tsup": "^6.7.0",
"typescript": "^5.1.3"
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "pnpm@8.6.1",
"packageManager": "pnpm@8.7.5",
"engines": {
"node": "^14.13.1 || ^16.0.0 || >=18"
"node": "^18 || >=20"
},
"pnpm": {
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/changesets-changelog-github-compact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"devDependencies": {
"@changesets/parse": "^0.3.16",
"@changesets/types": "^5.2.1",
"vitest": "^0.32.0"
"vitest": "^0.34.4"
}
}

0 comments on commit b9afa3e

Please sign in to comment.