Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .github/workflows/version-dump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm -w install

- name: Check for changeset files
run: |
Expand All @@ -47,7 +47,9 @@ jobs:
ls -la .changeset/*.md

- name: Version bump
run: pnpm changeset version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm -w changeset version

- name: Commit and push
run: |
Expand Down
11 changes: 11 additions & 0 deletions apps/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @bofit/client

## 2.0.0

### Major Changes

- [#375](https://github.com/team-bofit/bofit-client/pull/375) [`cc2d41d`](https://github.com/team-bofit/bofit-client/commit/cc2d41de09b3e95c4c5bd015b174c940655d7c8c) Thanks [@minjeoong](https://github.com/minjeoong)! - refactoring 1th

### Patch Changes

- Updated dependencies [[`cc2d41d`](https://github.com/team-bofit/bofit-client/commit/cc2d41de09b3e95c4c5bd015b174c940655d7c8c)]:
- @bds/[email protected]

## 1.0.0

### Major Changes
Expand Down
27 changes: 14 additions & 13 deletions apps/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bofit/client",
"version": "1.0.0",
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -14,32 +14,33 @@
"@tanstack/react-query": "^5.83.0",
"@tanstack/react-query-devtools": "^5.83.0",
"@toss/ky": "^1.2.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"lottie-react": "^2.4.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react": "catalog:react-core",
"react-dom": "catalog:react-core",
"react-error-boundary": "^6.0.0",
"react-router": "^7.6.3",
"react-router-dom": "^7.6.3",
"swiper": "^11.2.10"
"swiper": "^11.2.10",
"@types/react": "catalog:react-core",
"@types/react-dom": "catalog:react-core"
},
"devDependencies": {
"@bofit/eslint": "workspace:*",
"@bofit/typescript": "workspace:*",
"@pivanov/vite-plugin-svg-sprite": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"@vanilla-extract/css": "*",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/sprinkles": "*",
"@vanilla-extract/vite-plugin": "*",
"@vitejs/plugin-react": "*",
"@vanilla-extract/css": "catalog:vanilla-extract-core",
"@vanilla-extract/recipes": "catalog:vanilla-extract-core",
"@vanilla-extract/sprinkles": "catalog:vanilla-extract-utils",
"@vanilla-extract/vite-plugin": "catalog:vanilla-extract-utils",
"vite": "catalog:vite-core",
"@vitejs/plugin-react": "catalog:vite-plugins",
"eslint": "^8.44.0",
"globals": "^16.2.0",
"openapi-typescript": "^7.8.0",
"typescript": "~5.8.3",
"vite": "*",
"typescript": "catalog:typescript-core",
"@types/node": "catalog:typescript-core",
"vite-tsconfig-paths": "^5.1.4"
}
}
33 changes: 33 additions & 0 deletions apps/client/src/pages/community/community-detail.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { useParams } from 'react-router';

import { Navigation } from '@bds/ui';
import { Icon } from '@bds/ui/icons';

import DetailSection from '@widgets/community/components/detail-section/detail-section';

import { useNavigateTo } from '@shared/hooks/use-navigate-to';
import { routePath } from '@shared/router/path';

const CommunityDetail = () => {
const { postId } = useParams<{ postId: string }>();

if (!postId) {
throw new Error('postId가 존재하지 않습니다.');
}

return (
<>
<Navigation
title="커뮤니티"
leftIcon={<Icon name="caret_left_lg" width="2.4rem" height="2.4rem" />}
onClickLeft={useNavigateTo(-1)}
rightIcon={<Icon name="home" />}
onClickRight={useNavigateTo(routePath.HOME)}
/>

<DetailSection postId={postId} />
</>
);
};

export default CommunityDetail;
Loading