Skip to content

Commit

Permalink
Fix/tsemach/suffix spelling mistake (#91)
Browse files Browse the repository at this point in the history
* Feat: add command for generating app feature component

* Fix: suffix spelling mistake

* Fix: suffix spelling mistake

---------

Co-authored-by: Tsemach Lifshitz <[email protected]>
  • Loading branch information
tsemachLi and Tsemach Lifshitz authored Mar 28, 2024
1 parent 3a65972 commit 5722d86
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mondaycom/apps-cli",
"version": "2.3.5",
"version": "2.4.0",
"description": "A cli tool to manage apps (and monday-code projects) in monday.com",
"author": "monday.com Apps Team",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/services/apps-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const createFeatures = async (ctx: AppCreateCommandTasksContext) => {
appFeatureType: feature.type,
build: feature.build && {
buildType: buildTypeManifestFormatMap[feature.build.source],
url: `https://${baseUrl}${feature.build.sufix}`,
url: `https://${baseUrl}${feature.build.suffix}`,
},
options: { name: feature.name },
});
Expand Down
2 changes: 1 addition & 1 deletion src/services/schemas/manifest-service-schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ManifestFeatureSchema = z.object({
build: z
.object({
source: z.nativeEnum(BUILD_TYPES_MANIFEST_FORMAT),
sufix: z.string().optional(),
suffix: z.string().optional(),
})
.optional(),
});
Expand Down

0 comments on commit 5722d86

Please sign in to comment.