@cara/porter
Advanced tools
Comparing version 4.0.0-beta.17 to 4.0.0-beta.18
{ | ||
"name": "@cara/porter", | ||
"description": "A middleware for web modules", | ||
"version": "4.0.0-beta.17", | ||
"version": "4.0.0-beta.18", | ||
"main": "src/porter.js", | ||
@@ -43,3 +43,3 @@ "repository": { | ||
"license": "BSD-3-Clause", | ||
"gitHead": "a2acb5a36e5b879905ee568d1d6b6bd5f3a5b085" | ||
"gitHead": "38773a6381730f653c762bd35967c8c42f5ffacb" | ||
} |
@@ -568,3 +568,5 @@ 'use strict'; | ||
for (const mod of Object.values(this.files)) { | ||
if (mod.isRootEntry || mod.file.endsWith('.wasm')) entries.push(mod.file); | ||
if (mod.isRootEntry) entries.push(mod.file); | ||
// .wasm needs to be bundled before other entries to generate correct manifest | ||
if (mod.file.endsWith('.wasm')) entries.unshift(mod.file); | ||
} | ||
@@ -571,0 +573,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
117994
3094