We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68ed11 commit c77806bCopy full SHA for c77806b
templates/hyperweb/scripts/build.ts
@@ -15,9 +15,19 @@ const configs: BuildConfig[] = [
15
},
16
{
17
entryFile: 'src/simple-state/index.ts',
18
- outFile: 'dist/contracts/simpleState.js',
+ outFile: 'dist/contracts/simple-state.js',
19
externalPackages: ['otherpackage', '~somepackage']
20
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
31
];
32
33
const rootDir = join(__dirname, '/../');
0 commit comments