Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
anushkafka committed Sep 4, 2024
1 parent 4c895f3 commit 7fb536d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/zcli-apps/src/utils/createApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@ import { CliUx } from '@oclif/core'
import * as chalk from 'chalk'
import * as path from 'path'


export const getManifestAppName = (appPath: string): string | undefined => {
return getManifestFile(appPath).name
}

export const uploadAppPkg = async (pkgPath: string): Promise<any> => {

const pkgBuffer = await fs.readFile(pkgPath)

const formData = new FormData()
Expand All @@ -22,7 +20,6 @@ export const uploadAppPkg = async (pkgPath: string): Promise<any> => {
contentType: 'application/zip'
})


const response = await request.requestAPI('api/v2/apps/uploads.json', {
method: 'POST',
data: formData.getBuffer(),
Expand Down

0 comments on commit 7fb536d

Please sign in to comment.