We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c48e4 commit 8fc22f0Copy full SHA for 8fc22f0
1 file changed
templates/hyperweb/scripts/configs.ts
@@ -5,9 +5,26 @@ export interface BuildConfig {
5
}
6
7
export const configs: BuildConfig[] = [
8
+ {
9
+ entryFile: "src/hello/index.ts",
10
+ outFile: "dist/contracts/hello.js",
11
+ externalPackages: ["otherpackage", "~somepackage"],
12
+ },
13
{
14
entryFile: "src/simple-state/index.ts",
- outFile: "dist/contracts/simpleState.js",
15
+ outFile: "dist/contracts/simple-state.js",
16
externalPackages: ["otherpackage", "~somepackage"],
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
30
];
0 commit comments