Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "walt-link", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Links .walt WebAssembly programs", | ||
@@ -23,3 +23,3 @@ "main": "src/index.js", | ||
"prettier": "^1.12.0", | ||
"walt-compiler": "^0.6.1" | ||
"walt-compiler": "^0.6.2" | ||
}, | ||
@@ -26,0 +26,0 @@ "peerDependencies": { |
@@ -169,3 +169,3 @@ /** | ||
const mod = tree.modules[filepath]; | ||
return Promise.all( | ||
const promise = Promise.all( | ||
Object.entries(mod.deps).map(([key, dep]) => { | ||
@@ -190,2 +190,6 @@ return instantiate(dep.filepath).then(result => [key, result]); | ||
}); | ||
modules[filepath] = promise; | ||
return promise; | ||
}; | ||
@@ -192,0 +196,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
706592
391