Skip to content

Commit

Permalink
Merge pull request #2 from algorandfoundation/fix/transformer-export
Browse files Browse the repository at this point in the history
build: Fix test transformer export
  • Loading branch information
tristanmenzel authored Oct 3, 2024
2 parents 308ed90 + 00c5924 commit 1fd4adc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .tstoolkitrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config: TsToolkitConfig = {
exports: {
'.': 'index.ts',
'./runtime-helpers': 'runtime-helpers.ts',
'./test-transformer': 'test-transformer.ts',
'./test-transformer/index': 'test-transformer.ts',
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const config: RollupOptions = {
input: {
index: 'src/index.ts',
'runtime-helpers': 'src/runtime-helpers.ts',
'test-transformer': 'src/test-transformer/index.ts',
'test-transformer/index': 'src/test-transformer/index.ts',
},
output: [
{
Expand Down

0 comments on commit 1fd4adc

Please sign in to comment.