We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09c0c2a commit 05043cbCopy full SHA for 05043cb
templates/hyperweb/scripts/build.ts
@@ -8,16 +8,16 @@ interface BuildConfig {
8
}
9
10
const configs: BuildConfig[] = [
11
+ {
12
+ entryFile: 'src/hello/index.ts',
13
+ outFile: 'dist/contracts/hello.js',
14
+ externalPackages: ['otherpackage', '~somepackage']
15
+ },
16
{
17
entryFile: 'src/simple-state/index.ts',
18
outFile: 'dist/contracts/simpleState.js',
19
externalPackages: ['otherpackage', '~somepackage']
20
},
- {
- entryFile: 'src/amm-contract/index.ts',
- outFile: 'dist/contracts/ammContract.js',
- externalPackages: ['~bank'],
- }
21
];
22
23
const rootDir = join(__dirname, '/../');
0 commit comments