Skip to content

Commit

Permalink
Merge pull request #11 from bertdeblock/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
bertdeblock authored Oct 21, 2024
2 parents 23e7072 + e2701ee commit 6f75467
Show file tree
Hide file tree
Showing 5 changed files with 1,357 additions and 2,164 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

14 changes: 0 additions & 14 deletions .eslintrc.cjs

This file was deleted.

40 changes: 40 additions & 0 deletions eslint.config.js
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",
},
},
];
37 changes: 20 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
Loading

0 comments on commit 6f75467

Please sign in to comment.