Skip to content

Commit

Permalink
Fix distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed Oct 4, 2024
1 parent d2e4952 commit c62c27e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./lib/config/parseParams": "./dist/*.js"
"./lib/config/parseParams": "./dist/lib/config/parseParams.js"
},
"repository": {
"type": "git",
Expand Down
4 changes: 4 additions & 0 deletions scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ transformCodebase({
return { "modifiedSourceCode": sourceCode };
}

if (filePath.endsWith("parseParams.js")) {
return { "modifiedSourceCode": sourceCode };
}

return undefined;
}
});
Expand Down

0 comments on commit c62c27e

Please sign in to comment.