Skip to content

Commit

Permalink
fixup! meta: fix TS integration
Browse files Browse the repository at this point in the history
  • Loading branch information
aduh95 committed Oct 18, 2023
1 parent 0bb6e11 commit be84341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
import { existsSync } from 'node:fs';
import { opendir, readFile, writeFile } from 'node:fs/promises';
for await (const dirent of await opendir('./packages/@uppy')) {
if (exists(`./packages/@uppy/${dirent.name}/tsconfig.build.json`)) {
if (existsSync(`./packages/@uppy/${dirent.name}/tsconfig.build.json`)) {
const pjsonPath = `./packages/@uppy/${dirent.name}/package.json`
const pjson = JSON.parse(await readFile(pjsonPath));
delete pjson.types
Expand Down

0 comments on commit be84341

Please sign in to comment.