Skip to content

Commit ef98cb0

Browse files
thibaultleouayrunreal-warman
authored andcommitted
chore: fix deno fmt
1 parent 48b6718 commit ef98cb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/uasset/parse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function parseBlueprint(fileContent: string) {
100100
let complexValue = value
101101
while (!complexValue.endsWith(')') && i < lines.length - 1) {
102102
i++
103-
complexValue += ' ' + lines[i].trim()
103+
complexValue += ` ${lines[i].trim()}`
104104
}
105105
currentObject.properties[key] = parseComplexProperty(complexValue)
106106
} else if (value.startsWith('(')) {

src/lib/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { Command } from '@cliffy/command'
1+
import type { Command } from '@cliffy/command'
22
import type * as path from '@std/path'
33
import type { $ } from '@david/dax'
44
import type { z } from 'zod'

0 commit comments

Comments
 (0)