Skip to content

Commit 68b2bde

Browse files
Merge pull request #296 from swiftwasm/pr-629b4059a13ca961b952b1a7e3a2f95373a7299d
PackageToJS: Fix the missing dependency on the stripWasm task
2 parents dd01077 + 218022e commit 68b2bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/PackageToJS/Sources/PackageToJS.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ struct PackagingPlanner {
200200
}
201201
// Then, run wasm-opt with all optimizations
202202
wasm = make.addTask(
203-
inputFiles: [selfPath], inputTasks: [outputDirTask, stripWasm],
203+
inputFiles: [selfPath, stripWasmPath], inputTasks: [outputDirTask, stripWasm],
204204
output: finalWasmPath
205205
) {
206206
print("Optimizing the wasm file...")

0 commit comments

Comments
 (0)