From f5a44df99a2ba313d469f1b6240df0dcfca2d442 Mon Sep 17 00:00:00 2001 From: jamiecobbett Date: Tue, 3 Mar 2026 18:25:49 +0000 Subject: [PATCH] Fix broken packages The 7.2.0 and 8.0.0 packages are missing the dist folder, ie all of the code. The ESM changes released in 7.2.0 required a more complex build process, which `tsc -p` was no longer equivalent to. I'm making changes to package.json via client-library-templates to add the missing changes to the `build` "scripts". We need to merge this change first. --- .github/workflows/test-and-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index d09bd05f..0c536862 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v3.3.0 - run: npm install - run: npm install -g typescript - - run: tsc -p . + - run: npm run build - uses: actions/upload-artifact@v4 with: path: "dist"