Skip to content

Commit 0874d8c

Browse files
Fix prettier lint errors in include_assets_step.ts
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent be957c2 commit 0874d8c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/app/src/cli/services/build/steps/include_assets_step.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ export async function executeIncludeAssetsStep(
111111
const counts = await Promise.all(
112112
config.inclusions.map(async (entry) => {
113113
const warn = (msg: string) => options.stdout.write(msg)
114-
const sanitizedDest =
115-
entry.destination !== undefined ? sanitizeDestination(entry.destination, warn) : undefined
114+
const sanitizedDest = entry.destination !== undefined ? sanitizeDestination(entry.destination, warn) : undefined
116115

117116
if (entry.type === 'pattern') {
118117
const sourceDir = entry.baseDir ? joinPath(extension.directory, entry.baseDir) : extension.directory
@@ -278,9 +277,7 @@ async function copyByPattern(
278277
const destPath = joinPath(outputDir, relPath)
279278

280279
if (relativePath(outputDir, destPath).startsWith('..')) {
281-
options.stdout.write(
282-
`Warning: skipping '${filepath}' - resolved destination is outside the output directory\n`,
283-
)
280+
options.stdout.write(`Warning: skipping '${filepath}' - resolved destination is outside the output directory\n`)
284281
return
285282
}
286283

0 commit comments

Comments
 (0)