Skip to content

Commit e6b2013

Browse files
committed
fix: prettier formatting in upload-files.ts
1 parent bbf3f89 commit e6b2013

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/b2c-tooling-sdk/src/operations/code/upload-files.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ export interface UploadFilesOptions {
4141
* @param cartridges - The list of discovered cartridge mappings
4242
* @returns The file change with src and dest, or undefined if the path is not inside any cartridge
4343
*/
44-
export function fileToCartridgePath(
45-
absolutePath: string,
46-
cartridges: CartridgeMapping[],
47-
): FileChange | undefined {
44+
export function fileToCartridgePath(absolutePath: string, cartridges: CartridgeMapping[]): FileChange | undefined {
4845
const cartridge = cartridges.find((c) => absolutePath.startsWith(c.src));
4946

5047
if (!cartridge) {

0 commit comments

Comments
 (0)