File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments