Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #162

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,12 @@ updates:
versioning-strategy: "increase"

- package-ecosystem: "docker"
directory: "/"
directory: "/apps/client"
schedule:
interval: "daily"

- package-ecosystem: "docker"
directory: "/apps/server"
schedule:
interval: "daily"

9 changes: 9 additions & 0 deletions apps/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @eop/client

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies
- Updated dependencies [17eecda]
- @eop/cornucopia-cards@1.1.2
- @eop/shared@1.1.2

## 1.1.1

### Patch Changes
2 changes: 1 addition & 1 deletion apps/client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS base
FROM node:22-alpine AS base

FROM base AS pruner
WORKDIR /app
5 changes: 3 additions & 2 deletions apps/client/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import config from '@eop/eslint-config/type-checked';
import react from 'eslint-plugin-react/configs/recommended.js';
import react from 'eslint-plugin-react';
import tseslint from 'typescript-eslint';

export default tseslint.config(
{ ignores: ['build/'] },
{ languageOptions: { parserOptions: { project: './tsconfig.*.json' } } },
{ settings: { react: { version: 'detect' } } },
react,
react.configs.flat.recommended,
react.configs.flat['jsx-runtime'],
...config,
);
43 changes: 21 additions & 22 deletions apps/client/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eop/client",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"main": "src/client/index.tsx",
"scripts": {
"build": "tsc -b tsconfig.app.json && vite build",
@@ -17,8 +17,8 @@
"dependencies": {
"@eop/cornucopia-cards": "*",
"@eop/shared": "*",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"bootstrap": "^5.3.3",
"jointjs": "^3.7.7",
@@ -28,33 +28,32 @@
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-map-interaction": "^2.1.0",
"react-nl2br": "^1.0.4",
"react-router-dom": "^6.26.1",
"reactstrap": "^9.2.2",
"superagent": "^10.0.2"
"react-router-dom": "^7.1.1",
"reactstrap": "^9.2.3",
"superagent": "^10.1.1"
},
"devDependencies": {
"@eop/eslint-config": "*",
"@eop/prettier-config": "*",
"@eop/typescript-config": "*",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/backbone": "^1.4.19",
"@types/react": "^18.3.4",
"@types/backbone": "^1.4.22",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/superagent": "^8.1.8",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"jsdom": "^25.0.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.2.0",
"vite": "^6.0.3",
"vitest": "^2.0.5"
"@types/superagent": "^8.1.9",
"@vitejs/plugin-react-swc": "^3.7.2",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"jsdom": "^26.0.0",
"nock": "^13.5.6",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"private": true
}
1 change: 0 additions & 1 deletion apps/client/src/components/banner/banner.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { render, screen } from '@testing-library/react';
import React from 'react';
import { vi, describe, it, afterEach, expect } from 'vitest';

import Banner from './banner';
1 change: 0 additions & 1 deletion apps/client/src/components/banner/banner.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import type { FC } from 'react';
import './banner.css';

1 change: 0 additions & 1 deletion apps/client/src/components/board/board.test.tsx
Original file line number Diff line number Diff line change
@@ -5,7 +5,6 @@ import {
} from '@eop/shared';
import { render, screen } from '@testing-library/react';
import nock from 'nock';
import React from 'react';
import { describe, it, expect, beforeAll, vi, afterEach } from 'vitest';

import Board from './board';
2 changes: 1 addition & 1 deletion apps/client/src/components/board/board.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { getDealtCard, ModelType, SPECTATOR } from '@eop/shared';
import type { BoardProps as BoardgameIOBoardProps } from 'boardgame.io/react';
import React, { FC, useCallback, useEffect, useState } from 'react';
import { FC, useCallback, useEffect, useState } from 'react';
import request from 'superagent';

import Banner from '../banner/banner';
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { describe, it, expect, vi } from 'vitest';

import ConfirmModal from './confirmmodal';
2 changes: 1 addition & 1 deletion apps/client/src/components/confirmmodal/confirmmodal.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC } from 'react';
import { FC } from 'react';
import { Button, Modal, ModalBody, ModalFooter, ModalHeader } from 'reactstrap';

export type ConfirmModalProps = {
1 change: 0 additions & 1 deletion apps/client/src/components/copybutton/copybutton.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen, waitFor, within } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { describe, it, expect, afterEach, vi } from 'vitest';
2 changes: 1 addition & 1 deletion apps/client/src/components/copybutton/copybutton.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC, PropsWithChildren, useState } from 'react';
import { FC, PropsWithChildren, useState } from 'react';
import { Button, ButtonProps } from 'reactstrap';
import { copyToClipboard } from '../../utils/utils';
import { faCopy, faCheck, faTimes } from '@fortawesome/free-solid-svg-icons';
1 change: 0 additions & 1 deletion apps/client/src/components/dealtcard/dealtcard.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DEFAULT_GAME_MODE } from '@eop/shared';
import { render } from '@testing-library/react';
import React from 'react';
import { describe, it } from 'vitest';

import DealtCard from './dealtcard';
1 change: 0 additions & 1 deletion apps/client/src/components/deck/deck.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DEFAULT_START_SUIT, GameMode } from '@eop/shared';
import { render } from '@testing-library/react';
import React from 'react';
import { describe, it } from 'vitest';

import Deck from './deck';
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { faDownload, faTimes } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import React, { FC, ReactNode, useState } from 'react';
import { FC, ReactNode, useState } from 'react';
import { Button } from 'reactstrap';
import type { PlayerID } from 'boardgame.io';

1 change: 0 additions & 1 deletion apps/client/src/components/footer/footer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';

1 change: 0 additions & 1 deletion apps/client/src/components/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import type { FC } from 'react';
import packageJson from '../../../package.json';
import { faHeart } from '@fortawesome/free-solid-svg-icons';
1 change: 0 additions & 1 deletion apps/client/src/components/footer/imprint.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect, vi, afterEach } from 'vitest';

1 change: 0 additions & 1 deletion apps/client/src/components/footer/imprint.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import type { FC } from 'react';

const Imprint: FC = () => {
1 change: 0 additions & 1 deletion apps/client/src/components/footer/privacy.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect, vi, afterEach } from 'vitest';

1 change: 0 additions & 1 deletion apps/client/src/components/footer/privacy.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import type { FC } from 'react';

const Privacy: FC = () => {
2 changes: 1 addition & 1 deletion apps/client/src/components/imagemodel/imagemodel.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC, useCallback, useEffect, useState } from 'react';
import { FC, useCallback, useEffect, useState } from 'react';
import './imagemodel.css';
import { MapInteractionCSS } from 'react-map-interaction';
import { asyncSetTimeout } from '@eop/shared';
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DEFAULT_GAME_MODE } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import Leaderboard from './leaderboard';
1 change: 0 additions & 1 deletion apps/client/src/components/leaderboard/leaderboard.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { getCardDisplayName, Card as EOPCard } from '@eop/shared';
import type { PlayerID } from 'boardgame.io';
import React from 'react';
import type { FC } from 'react';
import { Badge, Card, CardHeader, Table } from 'reactstrap';

Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GameMode } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import LicenseAttribution from './licenseAttribution';
1 change: 0 additions & 1 deletion apps/client/src/components/logo/logo.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { BrowserRouter as Router } from 'react-router-dom';
import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';
2 changes: 1 addition & 1 deletion apps/client/src/components/model/model.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import classnames from 'classnames';
import * as joint from 'jointjs';
import React, { FC, useCallback, useEffect, useState } from 'react';
import { FC, useCallback, useEffect, useState } from 'react';
import { Nav, NavItem, NavLink } from 'reactstrap';
import Helmet from 'react-helmet';

Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import PrivacyEnhancedModel from './privacyEnhancedModel';
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { CARD_DECKS, GameMode, SUITS } from '@eop/shared';
import { FC, useState } from 'react';
import DealtCard from '../dealtcard/dealtcard';
1 change: 0 additions & 1 deletion apps/client/src/components/sidebar/sidebar.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DEFAULT_GAME_MODE, GameState, ModelType } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import Sidebar from './sidebar';
1 change: 0 additions & 1 deletion apps/client/src/components/sidebar/sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { getDealtCard, ModelType, SPECTATOR } from '@eop/shared';
import React from 'react';
import { Button } from 'reactstrap';

import DealtCard from '../dealtcard/dealtcard';
1 change: 0 additions & 1 deletion apps/client/src/components/status/status.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DEFAULT_GAME_MODE, ModelType } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import Status from './status';
1 change: 0 additions & 1 deletion apps/client/src/components/status/status.tsx
Original file line number Diff line number Diff line change
@@ -5,7 +5,6 @@ import {
resolvePlayerName,
resolvePlayerNames,
} from '@eop/shared';
import React from 'react';

import './status.css';

1 change: 0 additions & 1 deletion apps/client/src/components/threatbar/threatbar.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GameMode, ModelType } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import React from 'react';
import { describe, it, expect } from 'vitest';

import Threatbar from './threatbar';
4 changes: 2 additions & 2 deletions apps/client/src/components/threatbar/threatbar.tsx
Original file line number Diff line number Diff line change
@@ -6,8 +6,7 @@ import {
faTrash,
} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import React, { useState } from 'react';
import nl2br from 'react-nl2br';
import { useState } from 'react';
import {
Button,
Card,
@@ -33,6 +32,7 @@ import type {
import type { BoardProps } from 'boardgame.io/react';
import type { FC } from 'react';
import { Threat } from '../../../../../packages/shared/dist/types/game/threat';
import { nl2br } from '../../utils/nl2br';

type ThreatbarProps = {
model?: ThreatDragonModel;
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { DEFAULT_GAME_MODE, ModelType } from '@eop/shared';
import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import React from 'react';
import { describe, it, expect, vi } from 'vitest';

import ThreatModal from './threatmodal';
2 changes: 1 addition & 1 deletion apps/client/src/components/threatmodal/threatmodal.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { BoardProps } from 'boardgame.io/react';
import _ from 'lodash';
import React, { FC, useCallback, useEffect, useState } from 'react';
import { FC, useCallback, useEffect, useState } from 'react';
import {
Button,
Form,
1 change: 0 additions & 1 deletion apps/client/src/components/timer/timer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect } from 'vitest';

2 changes: 1 addition & 1 deletion apps/client/src/components/timer/timer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC, useEffect, useState } from 'react';
import { FC, useEffect, useState } from 'react';
import { CountdownCircleTimer } from 'react-countdown-circle-timer';

import './timer.css';
1 change: 0 additions & 1 deletion apps/client/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import About from './pages/about';
1 change: 0 additions & 1 deletion apps/client/src/pages/__tests__/about.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { render } from '@testing-library/react';
import React from 'react';
import { BrowserRouter as Router } from 'react-router-dom';
import { describe, it } from 'vitest';

3 changes: 1 addition & 2 deletions apps/client/src/pages/__tests__/app.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* import React from 'react';
import ReactDOM from 'react-dom';
/* import ReactDOM from 'react-dom';
import App from '../app'; */

import { it } from 'vitest';
1 change: 0 additions & 1 deletion apps/client/src/pages/__tests__/create.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import { describe, it, expect, vi, afterEach } from 'vitest';

1 change: 0 additions & 1 deletion apps/client/src/pages/about.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import type React from 'react';
import type { FC } from 'react';
import { Card, CardBody, CardHeader, Col, Container, Row } from 'reactstrap';

1 change: 0 additions & 1 deletion apps/client/src/pages/app.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ElevationOfPrivilege, SPECTATOR } from '@eop/shared';
import { SocketIO } from 'boardgame.io/multiplayer';
import { Client } from 'boardgame.io/react';
import React from 'react';
import { useParams } from 'react-router-dom';

import '@eop/cornucopia-cards/style.css';
4 changes: 2 additions & 2 deletions apps/client/src/pages/create.tsx
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ import {
} from '@eop/shared';
import type { PlayerID } from 'boardgame.io';
import _ from 'lodash';
import React, { ChangeEvent } from 'react';
import { ChangeEvent, Component, JSX } from 'react';
import {
Button,
Card,
@@ -60,7 +60,7 @@ interface CreateState {
modelReference?: string;
}

class Create extends React.Component<CreateProps, CreateState> {
class Create extends Component<CreateProps, CreateState> {
fileReader: FileReader;
apiBase: string;

2 changes: 1 addition & 1 deletion apps/client/src/pages/random-card.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { FC } from 'react';
import { FC } from 'react';
import { Card, CardBody, CardHeader, Col, Container, Row } from 'reactstrap';
import Banner from '../components/banner/banner';

9 changes: 9 additions & 0 deletions apps/client/src/utils/nl2br.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const newlineRegex = /(\r\n|\r|\n)/g;

export function nl2br(text: string | undefined) {
return text
?.split(newlineRegex)
.map((line, index) =>
line.match(newlineRegex) ? <br key={index} /> : line,
);
}
8 changes: 8 additions & 0 deletions apps/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @eop/server

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies
- Updated dependencies [17eecda]
- @eop/shared@1.1.2

## 1.1.1

### Patch Changes
2 changes: 1 addition & 1 deletion apps/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS base
FROM node:22-alpine AS base

FROM base AS pruner
WORKDIR /app
24 changes: 12 additions & 12 deletions apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eop/server",
"type": "commonjs",
"version": "1.1.1",
"version": "1.1.2",
"scripts": {
"build": "rimraf dist *.tsbuildinfo && tsc --build tsconfig.app.json",
"dev": "cross-env TS_NODE_PROJECT=./tsconfig.app.json node --inspect --watch --unhandled-rejections=warn -r ts-node/register src/main.ts",
@@ -18,35 +18,35 @@
"@koa/cors": "^5.0.0",
"basic-auth": "^2.0.1",
"boardgame.io": "^0.50.2",
"koa": "^2.14.2",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-router": "^12.0.1",
"koa-send": "^5.0.1",
"node-persist": "^4.0.3",
"uuid": "^10.0.0"
"uuid": "^11.0.5"
},
"devDependencies": {
"@eop/eslint-config": "*",
"@eop/prettier-config": "*",
"@eop/typescript-config": "*",
"@types/basic-auth": "^1.1.3",
"@types/koa-router": "^7.4.4",
"@types/basic-auth": "^1.1.8",
"@types/koa-router": "^7.4.8",
"@types/koa-send": "^4.1.6",
"@types/koa__cors": "^5.0.0",
"@types/lodash": "^4.17.13",
"@types/node": "^18.19.45",
"@types/lodash": "^4.17.14",
"@types/node": "^18.19.70",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.2.0",
"vitest": "^2.0.5"
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
},
"private": true
}
2,962 changes: 1,622 additions & 1,340 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@eop/root",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"sherif": "^1.0.0",
"@changesets/cli": "^2.27.11",
"sherif": "^1.1.1",
"turbo": "^2.3.3"
},
"workspaces": [
6 changes: 6 additions & 0 deletions packages/cornucopia-cards/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @eop/cornucopia-cards

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies

## 1.1.1

## 1.1.0
6 changes: 3 additions & 3 deletions packages/cornucopia-cards/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eop/cornucopia-cards",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"description": "a version of the playing cards OWASP Cornucopia adapted for this game",
"author": "TNG Technology Consulting",
"license": "CC-BY-SA-3.0",
@@ -14,8 +14,8 @@
"devDependencies": {
"@eop/eslint-config": "*",
"@eop/prettier-config": "*",
"eslint": "^9.9.0",
"prettier": "^3.3.3"
"eslint": "^9.17.0",
"prettier": "^3.4.2"
},
"private": true
}
6 changes: 6 additions & 0 deletions packages/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @eop/eslint-config

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies

## 1.1.1

## 1.1.0
10 changes: 5 additions & 5 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eop/eslint-config",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"exports": {
"./base": {
"default": "./base.js"
@@ -16,11 +16,11 @@
},
"devDependencies": {
"@eop/prettier-config": "*",
"@eslint/js": "^9.9.0",
"eslint": "^9.9.0",
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.2.0"
"prettier": "^3.4.2",
"typescript-eslint": "^8.19.1"
},
"peerDependencies": {
"@eslint/js": "^9.9.0",
6 changes: 6 additions & 0 deletions packages/prettier-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @eop/prettier-config

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies

## 1.1.1

## 1.1.0
6 changes: 3 additions & 3 deletions packages/prettier-config/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@eop/prettier-config",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"main": "prettier.config.mjs",
"scripts": {
"checkformat": "prettier . --check",
"format": "prettier . --write"
},
"devDependencies": {
"eslint": "^9.9.0",
"prettier": "^3.3.3"
"eslint": "^9.17.0",
"prettier": "^3.4.2"
},
"private": true
}
6 changes: 6 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @eop/shared

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies

## 1.1.1

## 1.1.0
16 changes: 8 additions & 8 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eop/shared",
"type": "commonjs",
"version": "1.1.1",
"version": "1.1.2",
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
@@ -23,22 +23,22 @@
"dependencies": {
"boardgame.io": "^0.50.2",
"lodash": "^4.17.21",
"uuid": "^10.0.0"
"uuid": "^11.0.5"
},
"devDependencies": {
"@eop/eslint-config": "*",
"@eop/prettier-config": "*",
"@eop/typescript-config": "*",
"@types/lodash": "^4.17.13",
"@types/lodash": "^4.17.14",
"@types/seedrandom": "^3.0.8",
"@types/uuid": "^10.0.0",
"eslint": "^9.9.0",
"prettier": "^3.3.3",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"seedrandom": "^3.0.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.2.0",
"vitest": "^2.0.5"
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8"
},
"private": true
}
6 changes: 6 additions & 0 deletions packages/typescript-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @eop/typescript-config

## 1.1.2

### Patch Changes

- 17eecda: Update dependencies

## 1.1.1

## 1.1.0
4 changes: 2 additions & 2 deletions packages/typescript-config/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@eop/typescript-config",
"type": "module",
"version": "1.1.1",
"version": "1.1.2",
"scripts": {
"checkformat": "prettier . --check",
"format": "prettier . --write"
},
"devDependencies": {
"@eop/prettier-config": "*",
"prettier": "^3.3.3"
"prettier": "^3.4.2"
},
"private": true
}