Files
meteor/packages/ecmascript-runtime/package.js
Ben Newman 330a6cfe3d Update ecmascript-runtime-{client,server} to use core-js@3.1.4. (#10588)
* Update ecmascript-runtime-{client,server} to core-js@3.1.4.

Also added a polyfill for Symbol.asyncIterator to server, modern, and
legacy, which should fix #9897.

* Add a test of for-await-of async iteration.

This should verify that #9897 is fixed.
2019-06-19 20:24:23 -04:00

21 lines
519 B
JavaScript

Package.describe({
name: "ecmascript-runtime",
version: "0.7.0",
summary: "Polyfills for new ECMAScript 2015 APIs like Map and Set",
git: "https://github.com/meteor/ecmascript-runtime",
documentation: "README.md"
});
Package.onUse(function(api) {
api.imply("ecmascript-runtime-client");
api.imply("ecmascript-runtime-server", "server");
});
Package.onTest(function(api) {
api.use("tinytest");
api.use("check");
api.use("ecmascript");
api.use("es5-shim");
api.addFiles("runtime-tests.js");
});