Remove yearly presets from repo, inline in standalone (#8274)

These were already deprecated in v6, just didn't remove the folders?
This commit is contained in:
Henry Zhu
2018-07-09 14:23:25 -04:00
committed by GitHub
parent dd6da3b3af
commit 10910a10f5
603 changed files with 165 additions and 12313 deletions

View File

@@ -1,4 +1,4 @@
{
"plugins": ["external-helpers"],
"presets": ["es2015"]
"presets": ["env"]
}

View File

@@ -1,3 +1,7 @@
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
var Example =
/*#__PURE__*/
function () {
@@ -7,23 +11,45 @@ function () {
var _proto = Example.prototype;
_proto.test1 = async function test1() {
await Promise.resolve(2);
};
_proto.test1 =
/*#__PURE__*/
function () {
var _test = _asyncToGenerator(
/*#__PURE__*/
regeneratorRuntime.mark(function _callee() {
return regeneratorRuntime.wrap(function _callee$(_context) {
while (1) {
switch (_context.prev = _context.next) {
case 0:
_context.next = 2;
return Promise.resolve(2);
case 2:
case "end":
return _context.stop();
}
}
}, _callee, this);
}));
return function test1() {
return _test.apply(this, arguments);
};
}();
_proto.test2 =
/*#__PURE__*/
regeneratorRuntime.mark(function test2() {
return regeneratorRuntime.wrap(function test2$(_context) {
return regeneratorRuntime.wrap(function test2$(_context2) {
while (1) {
switch (_context.prev = _context.next) {
switch (_context2.prev = _context2.next) {
case 0:
_context.next = 2;
_context2.next = 2;
return 3;
case 2:
case "end":
return _context.stop();
return _context2.stop();
}
}
}, test2, this);

View File

@@ -1,4 +1,4 @@
{
"plugins": ["transform-exponentiation-operator"],
"presets": ["es2015"]
"presets": ["env"]
}

View File

@@ -10,9 +10,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _instanceof(left, right) { if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { return right[Symbol.hasInstance](left); } else { return left instanceof right; } }
function _classCallCheck(instance, Constructor) { if (!_instanceof(instance, Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var B = function B() {
"use strict";

View File

@@ -1,4 +1,4 @@
{
"plugins": ["external-helpers", "proposal-class-properties"],
"presets": ["es2015", "react"]
"presets": ["env", "react"]
}