Skip to content

Commit c46767d

Browse files
authored
Merge pull request #1154 from microsoftgraph/bugfix/ts-request-adapter
- fixes a bug where the typescript request adapter would be removed
2 parents 60f4ba1 + 6dcb68d commit c46767d

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", "version.ts"
8+
Get-ChildItem -Directory -Exclude "models" | ForEach-Object {Remove-Item -r $_.FullName}
99
Pop-Location

0 commit comments

Comments
 (0)