Skip to content

Commit

Permalink
fix upload bundler packages script (microsoft#4678)
Browse files Browse the repository at this point in the history
Fixes microsoft#4674

Co-authored-by: Christopher Radek <[email protected]>
  • Loading branch information
2 people authored and swatikumar committed Nov 5, 2024
1 parent c899e26 commit 3803be4
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions eng/tsp-core/scripts/upload-bundler-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,12 @@ import {
bundleAndUploadPackages,
getPackageVersion,
} from "../../../packages/bundle-uploader/dist/src/index.js";
import { TypeSpecPlaygroundConfig } from "../../../packages/playground-website/src/index.js";
import { repoRoot } from "../../common/scripts/helpers.js";

await bundleAndUploadPackages({
repoRoot: repoRoot,
indexName: "typespec",
indexVersion: await getPackageVersion(repoRoot, "@typespec/compiler"),
packages: [
"@typespec/compiler",
"@typespec/http",
"@typespec/rest",
"@typespec/openapi",
"@typespec/versioning",
"@typespec/openapi3",
"@typespec/json-schema",
"@typespec/protobuf",
],
packages: [...TypeSpecPlaygroundConfig.libraries],
});

0 comments on commit 3803be4

Please sign in to comment.