Skip to content

Commit

Permalink
ci(types): 🏷️ include d.ts files on publish
Browse files Browse the repository at this point in the history
  • Loading branch information
TBroz15 committed Sep 20, 2024
1 parent c09a56d commit 298a9c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ arr.forEach((path) => {
if (ext === ".ts") {
const splitPath = path.split(".");

// if file is a suspected .d.ts, ignore.
if (splitPath[1] === "d") return;
// if file is a suspected .d.ts, copy.
if (splitPath[1] === "d") etc.push(path);

return TSFiles.push(srcPath);
} else {
Expand Down

0 comments on commit 298a9c6

Please sign in to comment.