Skip to content

Commit

Permalink
chore: don't add package.json for types dir
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasgriffintn committed Apr 29, 2024
1 parent c2ac256 commit 6084f28
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/addPackageJsons.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ function buildPackageJson() {
throw err;
}
dirs.forEach((dir) => {
if (dir === "types") {
return;
}

const packageJsonFile = join(buildDir, dir, "/package.json");

if (!existsSync(packageJsonFile)) {
Expand Down

0 comments on commit 6084f28

Please sign in to comment.