File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
packages/app/src/cli/services/build/steps Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments