Skip to content

Commit 05043cb

Browse files
committed
chore(build): update build config
1 parent 09c0c2a commit 05043cb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

templates/hyperweb/scripts/build.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ interface BuildConfig {
88
}
99

1010
const configs: BuildConfig[] = [
11+
{
12+
entryFile: 'src/hello/index.ts',
13+
outFile: 'dist/contracts/hello.js',
14+
externalPackages: ['otherpackage', '~somepackage']
15+
},
1116
{
1217
entryFile: 'src/simple-state/index.ts',
1318
outFile: 'dist/contracts/simpleState.js',
1419
externalPackages: ['otherpackage', '~somepackage']
1520
},
16-
{
17-
entryFile: 'src/amm-contract/index.ts',
18-
outFile: 'dist/contracts/ammContract.js',
19-
externalPackages: ['~bank'],
20-
}
2121
];
2222

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

0 commit comments

Comments
 (0)