Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
fix: submodulesを入れ直した
Browse files Browse the repository at this point in the history
  • Loading branch information
taga3s committed Aug 25, 2024
1 parent 124d14c commit 015e6f9
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "src/Rhythmate-Service"]
path = src/Rhythmate-Service
url = https://github.com/ayanami77/Rhythmate-Service.git
[submodule "submodules/service"]
path = submodules/service
url = https://github.com/taga3s/Rhythmate-Service.git
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"preview": "vite preview",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"submodule-install": "cd src/Rhythmate-Service && npm install"
"submodule-install": "cd submodules/service && npm i"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
Expand Down
1 change: 0 additions & 1 deletion src/Rhythmate-Service
Submodule Rhythmate-Service deleted from 111245
2 changes: 1 addition & 1 deletion src/api/badge/type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../../submodules/service/src/pkg/schemaHelper";

export type ImageType = "bow" | "cat" | "crown" | "gem" | "horse" | "shield" | "sword";

Expand Down
2 changes: 1 addition & 1 deletion src/api/quest/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../../submodules/service/src/pkg/schemaHelper";

export type Difficulty = "EASY" | "NORMAL" | "HARD";
export type QuestState = "INACTIVE" | "ACTIVE";
Expand Down
2 changes: 1 addition & 1 deletion src/api/tag/type.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../../submodules/service/src/pkg/schemaHelper";

export type CreateTagParams = schemaHelper.RequestData<"/tags", "post">;

Expand Down
2 changes: 1 addition & 1 deletion src/api/user/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../../submodules/service/src/pkg/schemaHelper";

export type AuthParams = schemaHelper.RequestData<"/users/auth", "post">;

Expand Down
2 changes: 1 addition & 1 deletion src/api/weeklyReport/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type * as schemaHelper from "../../Rhythmate-Service/src/pkg/schemaHelper";
import type * as schemaHelper from "../../../submodules/service/src/pkg/schemaHelper";

export type ListWeeklyReportsResponse = schemaHelper.ResponseData<"/weekly-reports", "get">;

Expand Down
1 change: 1 addition & 0 deletions submodules/service
Submodule service added at 5a3e8b

0 comments on commit 015e6f9

Please sign in to comment.