Skip to content

Commit 0236a84

Browse files
committed
FIX: develop CI/CD 빌드 오류를 위한 Goal api named export 추가
1 parent 0ed5b02 commit 0236a84

File tree

3 files changed

+1983
-1811
lines changed

3 files changed

+1983
-1811
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"autoprefixer": "^10.4.21",
5252
"eslint": "^9",
5353
"eslint-config-next": "15.3.3",
54+
"eslint-plugin-storybook": "^0.11.2",
5455
"knip": "^5.73.4",
5556
"msw": "^2.10.2",
5657
"msw-storybook-addon": "^2.0.5",

src/model/goal/api.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,13 @@ const GoalApi = {
5454
},
5555
};
5656

57+
// Named exports for backward compatibility
58+
export const getAllGoals = GoalApi.getAllGoals;
59+
export const getProgressGoals = GoalApi.getProgressGoals;
60+
export const getEndedGoals = GoalApi.getEndedGoals;
61+
export const getGoalList = GoalApi.getGoalList;
62+
export const getGoalItem = GoalApi.getGoalItem;
63+
export const deleteGoal = GoalApi.deleteGoal;
64+
export const putEditGoal = GoalApi.putEditGoal;
65+
5766
export default GoalApi;

0 commit comments

Comments
 (0)