From 70acbc6d8660eaf77ae79be7dd99709813d6fdad Mon Sep 17 00:00:00 2001 From: codehag Date: Thu, 25 Jun 2020 23:34:43 +0200 Subject: [PATCH] Add Import Attributes (worth prototyping) closes #373 --- activities.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/activities.json b/activities.json index e8cf9ace..a97b98ec 100644 --- a/activities.json +++ b/activities.json @@ -83,6 +83,18 @@ "title": "BigInt", "url": "https://tc39.github.io/proposal-bigint/" }, + { + "ciuName": null, + "description": "The ES Import Attributes and JSON modules proposal adds an inline syntax for module import statements to pass on more information alongside the module specifier, and an initial application for such attributes in supporting JSON modules in a common way across JavaScript environments.", + "id": "import-attributes", + "mozBugUrl": "https://bugzilla.mozilla.org/show_bug.cgi?id=1648614", + "mozPosition": "worth implementing", + "mozPositionDetail": "This proposal enables importing non-js files into a JS module, specifically in this case JSON. Without this mechanism, it wouldn't be possible to do this in a way that isn't open to midflight changing of the file type, which could then be inteereepreetteed as JS. The proposal is necessary to move forward on HTML/CSS/JSON modules. We consider it important that this is defined inbound rather than out of bound.", + "mozPositionIssue": 373, + "org": "Ecma", + "title": "Import Attributes", + "url": "https://github.com/tc39/proposal-import-attributes" + }, { "ciuName": null, "description": "Bundled exchanges provide a way to bundle up groups of HTTP request+response pairs to transmit or store them together. They can include multiple top-level resources with one identified as the default by a manifest, provide random access to their component exchanges, and efficiently store 8-bit resources.",