File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
templates/hyperweb/scripts Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,26 @@ export interface BuildConfig {
5
5
}
6
6
7
7
export const configs : BuildConfig [ ] = [
8
+ {
9
+ entryFile : "src/hello/index.ts" ,
10
+ outFile : "dist/contracts/hello.js" ,
11
+ externalPackages : [ "otherpackage" , "~somepackage" ] ,
12
+ } ,
8
13
{
9
14
entryFile : "src/simple-state/index.ts" ,
10
- outFile : "dist/contracts/simpleState .js" ,
15
+ outFile : "dist/contracts/simple-state .js" ,
11
16
externalPackages : [ "otherpackage" , "~somepackage" ] ,
12
17
} ,
18
+ {
19
+ entryFile : "src/bank/index.ts" ,
20
+ outFile : "dist/contracts/bank.js" ,
21
+ externalPackages : [ "@hyperweb/bank" ] ,
22
+ } ,
23
+ {
24
+ entryFile : "src/token-factory/index.ts" ,
25
+ outFile : "dist/contracts/token-factory.js" ,
26
+ externalPackages : [ "@hyperweb/token" , "@hyperweb/bank" ] ,
27
+ } ,
28
+
29
+
13
30
] ;
You can’t perform that action at this time.
0 commit comments