Skip to content

Commit

Permalink
Fix rollup.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
snanovskyi committed Sep 9, 2019
1 parent 176bec6 commit cde0168
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rollup.config.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const createBrowserEntry = (target, cryptoType, format) => {
replace: foundationEntryPoint replace: foundationEntryPoint
}, },
{ {
match: /EThree\.ts$/, match: /(EThree|prepareBaseConstructorParams)\.ts$/,
test: pythiaModuleName, test: pythiaModuleName,
replace: pythiaEntryPoint replace: pythiaEntryPoint
} }
Expand Down Expand Up @@ -143,12 +143,12 @@ const createNodeJsEntry = (cryptoType, format) => {
replace({ replace({
patterns: [ patterns: [
{ {
match: /EThree\.ts$/, match: /EThreeNode\.ts$/,
test: foundationModuleName, test: foundationModuleName,
replace: foundationEntryPoint replace: foundationEntryPoint
}, },
{ {
match: /EThree\.ts$/, match: /(EThreeNode|prepareBaseConstructorParams)\.ts$/,
test: pythiaModuleName, test: pythiaModuleName,
replace: pythiaEntryPoint replace: pythiaEntryPoint
} }
Expand Down

0 comments on commit cde0168

Please sign in to comment.