v1.0 with SW PWA enabled

This commit is contained in:
Blomios
2026-01-01 17:40:53 +01:00
parent 1c0e22aac1
commit 3c8bebb2ad
29775 changed files with 2197201 additions and 119080 deletions

View File

@ -0,0 +1,36 @@
"use strict";
exports.__esModule = true;
exports.default = void 0;
/**
* Converts destructured parameters with default values to non-shorthand syntax.
* This fixes the only arguments-related bug in ES Modules-supporting browsers (Edge 16 & 17).
* Use this plugin instead of @babel/plugin-transform-parameters when targeting ES Modules.
*/
var _default = ({
types: t
}) => {
const isArrowParent = p => p.parentKey === "params" && p.parentPath && t.isArrowFunctionExpression(p.parentPath);
return {
name: "transform-edge-default-parameters",
visitor: {
AssignmentPattern(path) {
const arrowArgParent = path.find(isArrowParent);
if (arrowArgParent && path.parent.shorthand) {
// In Babel 7+, there is no way to force non-shorthand properties.
path.parent.shorthand = false;
(path.parent.extra || {}).shorthand = false; // So, to ensure non-shorthand, rename the local identifier so it no longer matches:
path.scope.rename(path.parent.key.name);
}
}
}
};
};
exports.default = _default;
module.exports = exports.default;