Skip to content

Commit 8fc22f0

Browse files
committed
chore(config): added bank, token factory, and hello contracts to build config
1 parent d4c48e4 commit 8fc22f0

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

templates/hyperweb/scripts/configs.ts

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,26 @@ export interface BuildConfig {
55
}
66

77
export const configs: BuildConfig[] = [
8+
{
9+
entryFile: "src/hello/index.ts",
10+
outFile: "dist/contracts/hello.js",
11+
externalPackages: ["otherpackage", "~somepackage"],
12+
},
813
{
914
entryFile: "src/simple-state/index.ts",
10-
outFile: "dist/contracts/simpleState.js",
15+
outFile: "dist/contracts/simple-state.js",
1116
externalPackages: ["otherpackage", "~somepackage"],
1217
},
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+
1330
];

0 commit comments

Comments
 (0)