Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
Signed-off-by: prisis <d.bannert@anolilab.de>
  • Loading branch information
prisis committed Dec 22, 2023
1 parent 933e269 commit a7c1f3b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 45 deletions.

This file was deleted.

7 changes: 4 additions & 3 deletions packages/eslint-config/__tests__/old-config-loading.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { rm } from "node:fs/promises";
import { join } from "node:path";
import { promisify } from "node:util";

import { afterEach, beforeEach, describe, expect,it} from "vitest";
import { afterEach, beforeEach, describe, expect, it } from "vitest";

const ONE_SECOND_IN_MS = 1000;

Expand All @@ -24,15 +24,16 @@ describe("integration - old config", () => {
it(
"installs & works",
async () => {
expect.assertions(2);
await execAsync("pnpm --ignore-workspace i", { cwd: TEST_DIR });

const { stderr, stdout } = await execAsync("pnpm exec eslint -c ./.eslintrc.js . || true", {
cwd: TEST_DIR,
env: { ...process.env, FORCE_COLOR: "0" },
});

expect(stderr.replace(TEST_DIR, "mocked-root-dir")).toMatchSnapshot("stderr", "stderr should be empty");
expect(stdout.replace(TEST_DIR, "mocked-root-dir")).toMatchSnapshot("stdout", "stdout should show 4 errors");
expect(stderr.replace(TEST_DIR, "mocked-root-dir")).toContain("");
expect(stdout.replace(TEST_DIR, "mocked-root-dir")).toContain("4 problems (3 errors, 1 warning)");
},
240 * ONE_SECOND_IN_MS,
);
Expand Down
30 changes: 15 additions & 15 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@
},
"devDependencies": {
"@anolilab/semantic-release-preset": "8.0.2",
"@arthurgeron/eslint-plugin-react-usememo": "^2.1.2",
"@arthurgeron/eslint-plugin-react-usememo": "^2.2.1",
"@testing-library/dom": "^9.3.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/confusing-browser-globals": "^1.0.2",
"@types/eslint": "^8.44.6",
"@types/semver": "^7.5.4",
"eslint": "^8.52.0",
"@types/confusing-browser-globals": "^1.0.3",
"@types/eslint": "^8.56.0",
"@types/semver": "^7.5.6",
"eslint": "^8.56.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-cypress": "^2.15.1",
Expand All @@ -193,30 +193,30 @@
"eslint-plugin-jest-async": "^1.0.3",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-jsdoc": "^46.9.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-redux": "^4.0.0",
"eslint-plugin-ssr-friendly": "^1.2.0",
"eslint-plugin-react-redux": "^4.1.0",
"eslint-plugin-ssr-friendly": "^1.3.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-testing-library": "^6.1.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
"eslint-plugin-vitest": "^0.3.8",
"eslint-plugin-vitest": "^0.3.18",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.13.0",
"eslint-plugin-you-dont-need-momentjs": "^1.6.0",
"eslint-plugin-zod": "^1.4.0",
"jest": "^29.7.0",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.6",
"tsup": "^7.2.0",
"type-fest": "^4.6.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
"semantic-release": "^22.0.12",
"tsup": "^8.0.1",
"type-fest": "^4.8.3",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"peerDependencies": {
"@arthurgeron/eslint-plugin-react-usememo": "^2.0.1",
Expand Down

0 comments on commit a7c1f3b

Please sign in to comment.