-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from bertdeblock/update-deps
Update dependencies
- Loading branch information
Showing
5 changed files
with
1,357 additions
and
2,164 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import typescriptEslint from "@typescript-eslint/eslint-plugin"; | ||
import globals from "globals"; | ||
import tsParser from "@typescript-eslint/parser"; | ||
import path from "node:path"; | ||
import { fileURLToPath } from "node:url"; | ||
import js from "@eslint/js"; | ||
import { FlatCompat } from "@eslint/eslintrc"; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
export default [ | ||
{ | ||
ignores: ["dist/", "test/output/"], | ||
}, | ||
...compat.extends( | ||
"eslint:recommended", | ||
"plugin:n/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
), | ||
{ | ||
plugins: { | ||
"@typescript-eslint": typescriptEslint, | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
}, | ||
|
||
parser: tsParser, | ||
ecmaVersion: "latest", | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,31 +30,34 @@ | |
}, | ||
"dependencies": { | ||
"chalk": "^5.3.0", | ||
"change-case": "^5.4.3", | ||
"execa": "^8.0.1", | ||
"change-case": "^5.4.4", | ||
"execa": "^9.4.1", | ||
"fast-glob": "^3.3.2", | ||
"fs-extra": "^11.2.0", | ||
"yargs": "^17.7.2" | ||
}, | ||
"devDependencies": { | ||
"@release-it-plugins/lerna-changelog": "^6.1.0", | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.13.0", | ||
"@release-it-plugins/lerna-changelog": "^7.0.0", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/node": "^20.11.20", | ||
"@types/node": "^22.7.7", | ||
"@types/recursive-readdir": "^2.2.4", | ||
"@types/yargs": "^17.0.32", | ||
"@typescript-eslint/eslint-plugin": "^7.1.0", | ||
"@typescript-eslint/parser": "^7.1.0", | ||
"@vitest/coverage-v8": "^1.2.2", | ||
"concurrently": "^8.2.2", | ||
"eslint": "^8.56.0", | ||
"eslint-plugin-n": "^16.6.2", | ||
"prettier": "^3.2.5", | ||
"@types/yargs": "^17.0.33", | ||
"@typescript-eslint/eslint-plugin": "^8.10.0", | ||
"@typescript-eslint/parser": "^8.10.0", | ||
"@vitest/coverage-v8": "^2.1.3", | ||
"concurrently": "^9.0.1", | ||
"eslint": "^9.13.0", | ||
"eslint-plugin-n": "^17.11.1", | ||
"globals": "^15.11.0", | ||
"prettier": "^3.3.3", | ||
"recursive-copy": "^2.0.14", | ||
"release-it": "^17.0.3", | ||
"type-fest": "^4.10.3", | ||
"typescript": "^5.3.3", | ||
"uuid": "^9.0.1", | ||
"vitest": "^1.2.2" | ||
"release-it": "^17.10.0", | ||
"type-fest": "^4.26.1", | ||
"typescript": "^5.6.3", | ||
"uuid": "^10.0.0", | ||
"vitest": "^2.1.3" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
|
Oops, something went wrong.