Skip to content

Commit c77806b

Browse files
committed
chore(build): add bank and factory to build config
1 parent e68ed11 commit c77806b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

templates/hyperweb/scripts/build.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,19 @@ const configs: BuildConfig[] = [
1515
},
1616
{
1717
entryFile: 'src/simple-state/index.ts',
18-
outFile: 'dist/contracts/simpleState.js',
18+
outFile: 'dist/contracts/simple-state.js',
1919
externalPackages: ['otherpackage', '~somepackage']
2020
},
21+
{
22+
entryFile: 'src/bank/index.ts',
23+
outFile: 'dist/contracts/bank.js',
24+
externalPackages: ['@hyperweb/bank']
25+
},
26+
{
27+
entryFile: 'src/token-factory/index.ts',
28+
outFile: 'dist/contracts/token-factory.js',
29+
externalPackages: ['@hyperweb/bank', '@hyperweb/token']
30+
},
2131
];
2232

2333
const rootDir = join(__dirname, '/../');

0 commit comments

Comments
 (0)