From d6efb3aa7e4f58c53c8839dac3134e962c819587 Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 3 Apr 2026 18:01:38 +0100 Subject: [PATCH 1/3] feat: add `es5-shim` and `es6-shim` to native manifest --- manifests/native.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/manifests/native.json b/manifests/native.json index b21c31a8..65267ae1 100644 --- a/manifests/native.json +++ b/manifests/native.json @@ -1419,6 +1419,16 @@ "id": "Web/JavaScript/Reference/Global_Objects/String#html_wrapper_methods" } }, + "es5-shim": { + "id": "es5-shim", + "type": "removal", + "description": "Every modern environment has support for ES5 apis." + }, + "es6-shim": { + "id": "es6-shim", + "type": "removal", + "description": "Every modern environment has support for ES6/ES2015 apis." + }, "es7-shim": { "id": "es7-shim", "type": "removal", @@ -1967,6 +1977,16 @@ "moduleName": "es6-promise", "replacements": ["Promise"] }, + "es5-shim": { + "type": "module", + "moduleName": "es5-shim", + "replacements": ["es5-shim"] + }, + "es6-shim": { + "type": "module", + "moduleName": "es6-shim", + "replacements": ["es6-shim"] + }, "es7-shim": { "type": "module", "moduleName": "es7-shim", From 3d843e6b8a555fea2564bacc906aa964549b7bab Mon Sep 17 00:00:00 2001 From: Roman Date: Fri, 3 Apr 2026 18:05:31 +0100 Subject: [PATCH 2/3] =?UTF-8?q?=D1=8B=D1=89=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifests/native.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/native.json b/manifests/native.json index 65267ae1..07d4e962 100644 --- a/manifests/native.json +++ b/manifests/native.json @@ -1972,16 +1972,16 @@ "moduleName": "es-string-html-methods", "replacements": ["es-string-html-methods"] }, - "es6-promise": { - "type": "module", - "moduleName": "es6-promise", - "replacements": ["Promise"] - }, "es5-shim": { "type": "module", "moduleName": "es5-shim", "replacements": ["es5-shim"] }, + "es6-promise": { + "type": "module", + "moduleName": "es6-promise", + "replacements": ["Promise"] + }, "es6-shim": { "type": "module", "moduleName": "es6-shim", From 16a6bb0a520cdaacc8cdb23e7233474d462c024b Mon Sep 17 00:00:00 2001 From: James Garbutt <43081j@users.noreply.github.com> Date: Sun, 5 Apr 2026 11:41:41 +0100 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: James Garbutt <43081j@users.noreply.github.com> --- manifests/native.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/native.json b/manifests/native.json index 07d4e962..bd093ad9 100644 --- a/manifests/native.json +++ b/manifests/native.json @@ -1422,12 +1422,12 @@ "es5-shim": { "id": "es5-shim", "type": "removal", - "description": "Every modern environment has support for ES5 apis." + "description": "Every modern environment has support for ES5 APIs." }, "es6-shim": { "id": "es6-shim", "type": "removal", - "description": "Every modern environment has support for ES6/ES2015 apis." + "description": "Every modern environment has support for ES6/ES2015 APIs." }, "es7-shim": { "id": "es7-shim",