Skip to content

Commit 7e331b0

Browse files
authored
Merge pull request #2 from SoraY677/feature/fix-2025-08
Feature/fix 2025 08
2 parents 555761a + fb1a67e commit 7e331b0

35 files changed

Lines changed: 3848 additions & 162 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: v22.17.0
2323

2424
- name: Init
25-
run: yarn install && yarn setup
25+
run: yarn install
2626

2727
- name: Lint
2828
run: yarn lint

.husky/pre-push

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker compose exec -T root yarn lint:fix && yarn build && yarn test && yarn test-local

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:alpine
1+
FROM node:24-alpine
22

33
COPY . /app
44
WORKDIR /app

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,14 @@ docker compose down # 停止
3636
docker compose exec root sh
3737
```
3838

39-
#### セットアップ
39+
#### ローカルセットアップ
4040

4141
```sh
42-
docker compose exec root yarn setup
42+
# インストール
43+
yarn install
44+
45+
# セットアップ
46+
yarn setup-local
4347
```
4448

4549
#### ビルド

client/src/components/00-commons/CImage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
</template>
66

77
<script setup lang="ts">
8-
import type { ImageType } from '@/types/element/ImageType';
8+
import type { ImageType } from '@type/element/ImageType'
99
10-
const props = defineProps<ImageType>()
10+
const props = defineProps<ImageType>()
1111
</script>
1212

1313
<style scoped>

client/src/components/01-atoms/image/Icon.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<CImage
3+
<CImage
44
:src="props.src"
55
:width="props.width"
66
:height="props.height"
@@ -10,8 +10,8 @@
1010
</template>
1111

1212
<script setup lang="ts">
13-
import type { ImageType } from '@/types/element/ImageType';
14-
import CImage from '@components/00-commons/CImage.vue';
13+
import CImage from '@components/00-commons/CImage.vue'
14+
import type { ImageType } from '@type/element/ImageType'
1515
1616
const props = defineProps<ImageType>()
1717

client/src/components/02-molecules/AppIcon.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<Icon
2+
<Icon
33
:width="128"
44
:height="128"
55
:src="iconImage"
@@ -8,7 +8,8 @@
88

99
<script setup lang="ts">
1010
import iconImage from '@assets/images/app-icon-white.svg'
11-
import Icon from '@components/01-atoms/image/Icon.vue';
11+
12+
import Icon from '@components/01-atoms/image/Icon.vue'
1213
</script>
1314

1415
<style scoped lang="scss">

client/src/components/03-orgnisms/AppSample.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
</template>
1111

1212
<script setup lang="ts">
13-
import { useCounterStore } from '@/composables/state/CounterState';
14-
import AppIcon from '../02-molecules/AppIcon.vue';
13+
import AppIcon from '@components/02-molecules/AppIcon.vue'
14+
import { useCounterStore } from '@composables/state/CounterState'
1515
1616
const counterState = useCounterStore()
1717

client/src/components/04-templates/CommonTemplate.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ main {
2525
width: 100%;
2626
}
2727
</style>
28-

client/src/components/05-pages/IndexPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
</template>
1010

1111
<script setup lang="ts">
12-
import CommonTemplate from '@components/04-templates/CommonTemplate.vue';
13-
import AppSample from '@components/03-orgnisms/AppSample.vue';
12+
import AppSample from '@components/03-orgnisms/AppSample.vue'
13+
import CommonTemplate from '@components/04-templates/CommonTemplate.vue'
1414
1515
</script>
1616

0 commit comments

Comments
 (0)