Explain the ecmascript-runtime => promise dependency

This commit is contained in:
Avital Oliver
2015-12-09 16:02:38 -08:00
parent 2f43fff0c9
commit fed7096a5a

View File

@@ -13,6 +13,9 @@ Npm.depends({
Package.onUse(function(api) {
api.use("modules");
// Regenerator, which we use to transpile ES2016 async/await, needs
// a promise implementation
api.use("promise");
api.mainModule("runtime.js");