Skip to content

Commit

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

Co-authored-by: Christopher Radek <[email protected]>
  • Loading branch information
chrisradek and Christopher Radek authored Oct 10, 2024
1 parent d4e4179 commit 0bb82e6
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 0bb82e6

Please sign in to comment.