Skip to content

Commit

Permalink
feat: update for typescript-eslint v6
Browse files Browse the repository at this point in the history
BREAKING CHANGE: typescript-eslint v6 now required
  • Loading branch information
RebeccaStevens committed Jul 15, 2023
1 parent 60a3ad2 commit 5f0509a
Show file tree
Hide file tree
Showing 11 changed files with 499 additions and 428 deletions.
2 changes: 1 addition & 1 deletion .github/actions/prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
node-version:
required: false
description: "`node-version` passed to `actions/setup-node`."
default: latest
default: v18

runs:
using: "composite"
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,21 @@ on:
push:
branches:
- main
paths:
- .github/labels.yml
workflow_dispatch:

permissions:
pull-requests: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: micnncim/action-label-syncer@v1
with:
manifest: .github/labels.yml
env:
GITHUB_TOKEN: ${{ github.token }}
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,66 +61,66 @@
"prepare": "husky install",
"release": "semantic-release",
"test": "echo no tests",
"type-check": "tsc --noEmit"
"type-check": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"deepmerge-ts": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@cspell/dict-cryptocurrencies": "3.0.1",
"@rollup/plugin-commonjs": "25.0.1",
"@rollup/plugin-commonjs": "25.0.2",
"@rollup/plugin-node-resolve": "15.1.0",
"@rollup/plugin-typescript": "11.1.1",
"@rollup/plugin-typescript": "11.1.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "10.0.1",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "9.0.3",
"@semantic-release/npm": "10.0.4",
"@semantic-release/release-notes-generator": "11.0.3",
"@types/eslint": "8.40.2",
"@semantic-release/release-notes-generator": "11.0.4",
"@types/eslint": "8.44.0",
"@types/eslint-config-prettier": "6.11.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/node": "20.3.1",
"@types/node": "18.11.9",
"@types/rollup-plugin-auto-external": "2.0.2",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"commitizen": "4.3.0",
"cspell": "6.31.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.42.0",
"eslint": "8.45.0",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "5.0.8",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "46.2.6",
"eslint-plugin-jsdoc": "46.4.3",
"eslint-plugin-markdown": "3.0.0",
"eslint-plugin-n": "16.0.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-optimize-regex": "1.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-unicorn": "47.0.0",
"husky": "8.0.3",
"knip": "2.13.0",
"lint-staged": "13.2.2",
"markdownlint-cli": "0.34.0",
"prettier": "2.8.8",
"prettier-plugin-packagejson": "2.4.3",
"knip": "2.15.5",
"lint-staged": "13.2.3",
"markdownlint-cli": "0.35.0",
"prettier": "3.0.0",
"prettier-plugin-packagejson": "2.4.5",
"rimraf": "5.0.1",
"rollup": "3.25.1",
"rollup": "3.26.2",
"rollup-plugin-auto-external": "2.0.0",
"semantic-release": "21.0.5",
"semantic-release": "21.0.7",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tslib": "2.5.3",
"typescript": "5.1.3"
"tslib": "2.6.0",
"typescript": "5.1.6"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"@typescript-eslint/eslint-plugin": ">=6.0.0",
"@typescript-eslint/parser": ">=6.0.0",
"eslint": ">=8.24.0",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-eslint-comments": "*",
Expand Down
Loading

0 comments on commit 5f0509a

Please sign in to comment.