diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fbb6471eec..511f6bb4d47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,6 +119,10 @@ jobs: await writeFile(pjsonPath, JSON.stringify(pjson)) } } + const pjsonPath = `./packages/uppy/package.json` + const pjson = JSON.parse(await readFile(pjsonPath)); + delete pjson.types + await writeFile(pjsonPath, JSON.stringify(pjson)) EOF - name: Attempt building TS packages run: corepack yarn run build:ts