Skip to content

Commit

Permalink
chore(npm): bump dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
favna authored and orhun committed Sep 21, 2024
1 parent 2eae2f1 commit 61b86f1
Show file tree
Hide file tree
Showing 3 changed files with 589 additions and 517 deletions.
16 changes: 16 additions & 0 deletions npm/git-cliff/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// @ts-check

import eslint from "@eslint/js";
import tseslint from "typescript-eslint";

export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
parserOptions: {
project: "./tsconfig.eslint.json",
},
},
}
);
33 changes: 11 additions & 22 deletions npm/git-cliff/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
],
"scripts": {
"typecheck": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"build": "tsup",
"dev": "yarn build && node lib/cli/cli.js"
},
Expand Down Expand Up @@ -80,12 +80,15 @@
"execa": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.11.22",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^9.10.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
},
"optionalDependencies": {
"git-cliff-darwin-arm64": "2.5.0",
Expand All @@ -95,20 +98,6 @@
"git-cliff-windows-arm64": "2.5.0",
"git-cliff-windows-x64": "2.5.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"ignorePatterns": [
"lib/*"
],
"root": true
},
"packageManager": "yarn@4.1.0",
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 61b86f1

Please sign in to comment.