We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29aab06 commit 8a4157aCopy full SHA for 8a4157a
scripts/build-binaries.ts
@@ -64,6 +64,10 @@ class BuildConfig {
64
return this.path("background-charm-service", "src", "main.ts");
65
}
66
67
+ bgCharmServiceWorkerPath() {
68
+ return this.path("background-charm-service", "src", "worker.ts");
69
+ }
70
+
71
toolshedEnvPath() {
72
return this.path("toolshed", "COMPILED");
73
@@ -164,6 +168,8 @@ async function buildBgCharmService(config: BuildConfig): Promise<void> {
164
168
"compile",
165
169
"--output",
166
170
config.distPath("bg-charm-service"),
171
+ "--include",
172
+ config.bgCharmServiceWorkerPath(),
167
173
"-A", // All permissions
174
"--unstable-worker-options", // Required by bg-charm-service
175
config.bgCharmServiceEntryPath(),
0 commit comments