Skip to content

Commit

Permalink
Merge pull request #357 from rolling-scopes/dependabot/npm_and_yarn/d…
Browse files Browse the repository at this point in the history
…evelopment-dependencies-f7eccfda0a

chore: bump the development-dependencies group with 14 updates
  • Loading branch information
Quiddlee authored Jul 2, 2024
2 parents 23ed2a6 + 52b2781 commit 0e9152e
Show file tree
Hide file tree
Showing 7 changed files with 281 additions and 262 deletions.
478 changes: 241 additions & 237 deletions package-lock.json

Large diffs are not rendered by default.

29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,19 @@
"react-router-dom": "^6.24.0"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@stylistic/eslint-plugin": "^2.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.7",
"@playwright/test": "^1.45.0",
"@stylistic/eslint-plugin": "^2.3.0",
"@testing-library/dom": "^10.2.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.13.0",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^1.5.3",
"chalk": "^5.3.0",
"concurrently": "^8.2.2",
Expand All @@ -50,25 +51,25 @@
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-sort-exports": "^0.9.1",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.4.0",
"globals": "^15.7.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.5",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"sass": "^1.77.4",
"sass": "^1.77.6",
"sharp": "^0.33.4",
"stylelint": "^16.6.1",
"stylelint-config-clean-order": "^6.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"svgo": "^3.3.2",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"typescript": "^5.5.3",
"vite": "^5.3.2",
"vitest": "^1.5.0"
}
}
5 changes: 4 additions & 1 deletion src/app/types/course.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ export type Course = {
mode: 'online' | 'offline';
detailsUrl: string;
enroll: string;
backgroundStyle: { backgroundColor: string; accentColor: string };
backgroundStyle: {
backgroundColor: string;
accentColor: string;
};
};
5 changes: 4 additions & 1 deletion src/shared/hooks/use-window-size/use-window-size.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { afterEach, beforeEach, describe, expect, it } from 'vitest';
import { useWindowSize } from '.';

describe('useWindowSize', () => {
let windowDimensions: { width: number; height: number };
let windowDimensions: {
width: number;
height: number;
};

beforeEach(() => {
windowDimensions = {
Expand Down
14 changes: 7 additions & 7 deletions src/widgets/breadcrumbs/ui/breadcrumbs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ export const Breadcrumbs = () => {
<li key={i}>
{!isLast
? (
<>
<Link to={to} className="link">
{crumb}
</Link>
<span className="separator">/</span>
</>
<>
<Link to={to} className="link">
{crumb}
</Link>
<span className="separator">/</span>
</>
)
: (
<span className="link disabled">{crumb}</span>
<span className="link disabled">{crumb}</span>
)}
</li>
);
Expand Down
6 changes: 5 additions & 1 deletion src/widgets/study-path/ui/stage-card/links/links.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import './links.scss';

interface LinksProps {
links: { href: string; linkTitle: string; isActive?: boolean }[];
links: {
href: string;
linkTitle: string;
isActive?: boolean;
}[];
}

export const Links = ({ links }: LinksProps) => {
Expand Down
6 changes: 5 additions & 1 deletion src/widgets/study-path/ui/stage-card/stage-card.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ export interface Stage {
title: string;
description?: string;
logoIcon?: string;
links?: { href: string; linkTitle: string; isActive?: boolean }[];
links?: {
href: string;
linkTitle: string;
isActive?: boolean;
}[];
topics?: string[];
actions?: string[];
imageSrc?: string;
Expand Down

0 comments on commit 0e9152e

Please sign in to comment.