Skip to content

Commit

Permalink
fix: getProjectAuthors extension API
Browse files Browse the repository at this point in the history
  • Loading branch information
Joelant05 committed Sep 18, 2022
1 parent 84d474d commit ef01614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Extensions/Scripts/Modules/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ export const ENVModule = ({}: IModuleConfig) => ({
getProjectTargetVersion() {
return App.getApp().then((app) => app.projectConfig.get().targetVersion)
},
getProjectAuthor() {
return App.getApp().then((app) => app.projectConfig.get().author)
getProjectAuthors() {
return App.getApp().then((app) => app.projectConfig.get().authors)
},
resolvePackPath(packId?: TPackTypeId, filePath?: string) {
return App.getApp().then((app) =>
Expand Down

0 comments on commit ef01614

Please sign in to comment.