Skip to content

Commit 8f9230f

Browse files
committed
- fixes a bug where the typescript request adapter would be removed
Signed-off-by: Vincent Biret <[email protected]>
1 parent 60f4ba1 commit 8f9230f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/remove-typescript-fluent-api-from-main-package.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ param (
44
$targetDirectory
55
)
66
Push-Location $targetDirectory
7-
Remove-Item *.ts -Verbose -Exclude "index.ts", "graphServiceClient.ts", "graphBetaServiceClient.ts"
8-
Get-ChildItem -Directory -Exclude models | ForEach-Object {Remove-Item -r $_.FullName}
7+
Remove-Item *.ts -Verbose -Exclude "index.ts", "graphServiceClient.ts", "graphBetaServiceClient.ts", "graphRequestAdapter.ts", "graphBetaRequestAdapter.ts"
8+
Get-ChildItem -Directory -Exclude "models" | ForEach-Object {Remove-Item -r $_.FullName}
99
Pop-Location

0 commit comments

Comments
 (0)