Skip to content

Commit 4960c9f

Browse files
committed
style: lint
1 parent f27072c commit 4960c9f

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/commands/build/build.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,7 @@ async function getBuildInfo(target: Target, streamWeb: boolean) {
167167
)
168168

169169
dependencyFilePaths = [
170-
...new Set([
171-
...dependencyFilePaths,
172-
...dependencyFilePathsForCreateFile
173-
])
170+
...new Set([...dependencyFilePaths, ...dependencyFilePathsForCreateFile])
174171
]
175172
}
176173

@@ -273,7 +270,7 @@ export function getWebServiceScriptInvocation(
273270
serverType: ServerType,
274271
isSASFile: boolean = true,
275272
encoded: boolean = false,
276-
fileName?: string,
273+
fileName?: string
277274
) {
278275
const encodedParam = encoded ? ', intype=BASE64' : ''
279276

@@ -283,7 +280,7 @@ export function getWebServiceScriptInvocation(
283280

284281
if (fileName) {
285282
const extension = fileName?.split('.').pop()?.toLowerCase() || ''
286-
283+
287284
if (['html', 'css', 'js'].includes(extension)) {
288285
swapString = `,swap=compiled_apploc apploc`
289286
}

0 commit comments

Comments
 (0)